* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geometria';
}

@font-face {
  font-family: 'Geometria'; 
  src: url(/Geometria.ttf); 
  font-display: swap;
}
@font-face {
  font-family: 'Geometria-Bold'; 
  src: url(/Geometria-Bold.ttf); 
  font-display: swap;
}

html body {
  overflow-x: hidden;
  position: relative;
  background: rgba(15, 62, 104, 1);
}

.contentSection {
  padding-top: 100px;
}


.wrapper,
p,
h1,
h2,
h3,
h4,
h5,
h6,
.general-table-wrapper,
figcaption,
ol,
ul,
.faq-container,
.quote p,
figure
{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

p,
a,
span,
b,
i,
figcaption,
li {
  color: rgba(255, 255, 255, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgba(255, 255, 255, 1);
  font-family: 'Geometria-Bold';
  text-align: center;
  padding-bottom: 32px;
}

p,
span,
li,
a {
  font-size: 20px;
  line-height: 32px;
}


h1 {
  font-size: 42px;
  line-height: 54px;
  padding-top: 24px;
}

h2 {
  font-size: 28px;
  line-height: 40px;
  padding-top: 24px;
}

h3 {
  font-size: 22px;
  line-height: 32px;
  padding-top: 24px;
}

h4 {
  font-size: 20px;
  line-height: 30px;
  padding-top: 24px;
}

p {
  padding-bottom: 32px;
}

a {
  text-decoration: none;
  transition: .3s;
  color: rgba(126, 172, 47, 1);
}

input,
button {
  border: none;
  box-shadow: none;
  transition: .3s;
}

button {
  cursor: pointer;
  background: transparent;
}

input {
  outline: none;
}

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

ul.general-ul li,
ol.general-ol li {
  list-style: none;
}

ul.general-ul {
  padding: 20px 20px 20px 20px;
  background: rgba(39, 106, 165, 1);
  border-radius: 20px;
  margin-bottom: 24px;
}

ul.general-ul li {
  list-style: none;
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
}

ul.general-ul li:last-child {
  margin-bottom: 0;
}

ul.general-ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 29px;
  background: url(/list.svg)no-repeat;
  background-size: cover;
}
ol.general-ol {
  counter-reset: counter-ol;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
ol.general-ol li {
  position: relative;
  counter-increment: counter-ol;
  padding: 20px 20px 20px 60px;
  background: rgba(39, 106, 165, 1);
  box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}
ol.general-ol li:before {
  position: absolute;
  content: counter(counter-ol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50%;
  top: 24px;
  left: 20px;
  background-color: rgba(126, 172, 47, 1);
}

ol.general-ol,
.general-table-wrapper,
.faq-container {
  padding-bottom: 32px;
}
figure {
  margin-bottom: 20px;
  text-align: center;
}
figcaption {
  color: #fff;
  font-size: 14px;
}

.general-image {
  display: block;
  border-radius: 15px;
  max-height: 500px;
  width: auto;
  height: auto;
  margin: 0 auto 10px auto;
}

.general-image.vertical {
  max-height: 500px;
  max-width: 70%;
}

.general-image.horizontal {
  max-width: 100%;
}


@media(max-width: 1460px) {
  .wrapper,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .general-table-wrapper,
  figcaption,
  ol,
  ul,
  .faq-container,
  .quote p,
  figure
   {
      max-width: 100%;
      padding-left: 40px;
      padding-right: 40px;
  }
  .mainbanner.wrapper,
  .altbanner.wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: 40px;
    margin-right: 40px;
    width: auto;
  }
  ul.general-ul {
    width: calc(100% - 80px);
  }
}

@media(max-width: 740px) {
  p {
      padding-bottom: 20px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding-bottom: 20px;
  }

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

  .wrapper,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .general-table-wrapper,
    figcaption,
    ol,
    ul,
    .faq-container,
    .quote p,
    figure {
      padding-left: 20px;
      padding-right: 20px;
  }
  .mainbanner.wrapper,
  .altbanner.wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }

   ul.general-ul {
    width: calc(100% - 40px);
  }
  ol.general-ol {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  ol.general-ol li::before {
    top: 18px;
  }

  h1 {
      font-size: 28px;
      line-height: 32px;
      padding-top: 12px;
  }

  h2 {
      font-size: 24px;
      line-height: 32px;
      padding-top: 6px;
  }

  h3 {
      font-size: 20px;
      line-height: 32px;
      padding-top: 6px;
  }

  ol.general-ol,
  .general-table-wrapper,
  .faq-container {
    padding-bottom: 20px;
  }

}

.buttonBlock {
  background: rgba(25, 82, 132, 1);
  padding: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.buttonBlock button {
  background: rgba(126, 172, 47, 1);
  border-radius: 30px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: bold;
}
.buttonBlock button:hover {
  opacity: 0.8;
}

.general-table-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.general-table {
  width: 100%;
  overflow: hidden;
}

.general-table tr th {
  background: rgba(10, 38, 64, 1);
}
.general-table tr td {
  background: rgba(39, 106, 165, 1);
}
.general-tr:nth-child(2n) td {
  background: rgba(25, 82, 132, 1);
}
.general-table tr th,
.general-table tr td {
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}


@media (max-width: 1250px) {
  .general-table-wrapper {
    overflow: auto;
  }
}



.header {
  height: 80px;
  background: rgba(39, 106, 165, 1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
.headerInner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerMenu {
  display: flex;
  gap: 30px;
}
.headerMenu a {
  font-size: 16px;
  color: #fff;
}
.headerMenu a.active {
  color: rgba(126, 172, 47, 1);
}
.headerMenu a:hover {
  color: rgba(126, 172, 47, 1);
}
.headerButtons {
  display: flex;
  gap: 20px;
}
.headerButtons button {
  border-radius: 30px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: bold;
}
.headerButtons .regButton {
  background: rgba(126, 172, 47, 1);
  border: 2px solid rgba(126, 172, 47, 1);
}
.headerButtons .logButton {
  border: 2px solid rgba(255, 255, 255, 1);
}
.headerButtons .regButton:hover {
  opacity: 0.8;
}
.headerButtons .logButton:hover {
  border: 2px solid rgba(126, 172, 47, 1);
  color: rgba(126, 172, 47, 1);
}
.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;
}
.burger {
    display: none;
}
.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: rgba(15, 62, 104, 1);
  width: 100%;
  min-height: 100vh;
  padding: 10px;
  transition: right 0.8s;
}

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

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

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

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

.mobileMenu .mobileMenuLinks a.active {
  color: #65a9ff;
}

.mobileMenu .mobileMenuLinks a:hover {
  text-decoration: none;
}

@media(max-width: 1250px) {
  .headerMenu {
    display: none;
  }
  .burger {
    display: block;
  }
}

@media(max-width: 740px) {
  .headerButtons {
    display: none;
  }
  .header {
    height: 60px;
  }
  .contentSection {
    padding-top: 80px;
  }
}


.footerButtons {
  display: none;
}

.footer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 40px;
    background: rgba(25, 82, 132, 1);
    padding: 20px 10px;
}

.footer .footerInner {
  display: flex;
  flex-direction: column;
  gap: 10px;
} 

.footer .footer_links {
  display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.footer .footer_links a {
  color: #fff;
}

.footer .footer_links a:hover {
  opacity: 0.8;
}

.footer .scrollTop {
  background: #7EAC2F;
  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: 50%;
  z-index: 5;
}

@media(max-width: 740px) {
  .footer {
    flex-direction: column;
    padding-bottom: 50px;
    margin-bottom: 10px;
  }

  .footer .footer_links {
    flex-direction: column;
    padding-bottom: 10px;
  }

  .footer .copyright, .footer .footer_links a {
    font-size: 14px;
  }

  .footerButtons {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(39, 106, 165, 1);
  }
  .footerButtonsInner {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
  }
  .footerButtonsInner button {
    border-radius: 30px;
    padding: 8px 24px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: bold;
  }
  .footerButtonsInner .regButton {
    background: rgba(126, 172, 47, 1);
    border: 2px solid rgba(126, 172, 47, 1);
  }
  .footerButtonsInner .logButton {
    border: 2px solid rgba(255, 255, 255, 1);
  }
}


.faq-container .faq-item {
  margin: 0 auto;
  position: relative;
  min-height: 54px;
  margin-bottom: 20px;
  z-index: 5;
  border-radius: 10px;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #276AA5 0%, #195284 100%);
}

.faq-container .faq-item:hover .icon::before,
.faq-container .faq-item:hover .icon::after {
  background: rgba(126, 172, 47, 1);
}

.faq-container .faq-item:hover .faq-question {
  color: rgba(126, 172, 47, 1);
}

.faq-container .faq-question {
  color: #fff;
  position: relative;
  padding-bottom: 0;
  top: 15px;
  width: 96%;
  line-height: 22px;
  padding-right: 25px;
  text-align: left;
  padding-top: 0;
}

.faq-container .faq-answer {
  width: 96%;
  padding: 10px 0 22px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  top: 10px;
}

.faq-container .icon {
  height: 18px;
  position: absolute;
  width: 18px;
  right: 25px;
  top: 25px;
  z-index: 2;
}

.faq-container .icon::before,
.faq-container .icon::after {
  background: #fff;
  content: no-open-quote;
  height: 4px;
  right: 0;
  position: absolute;
  top: 0;
  width: 18px;
  transition: transform 0.4s ease;
}

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

.faq-container .bg-active {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-container .toggle:checked~.bg-active {
  opacity: 1;
}

.faq-container .toggle:checked~.icon::before,
.faq-container .toggle:checked~.icon::after {
  background: #fff;
}


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

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

.faq-container .toggle:checked~.faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
}


/* Mainbanner */
.mainbanner {
  background: linear-gradient(to right, #003E74, #0075DB);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mainbanner-inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mainbanner-content {
  flex: 1 1 60%;
  padding: 40px 20px 40px 40px;
  z-index: 2;
  background: #fff;
  margin: 64px auto 94px 50px;
  border-radius: 20px;
}

.mainbanner-title {
  text-align: left;
  margin: 0;
  padding: 0 0 12px 0;
  font-size: 40px;
  font-weight: 700;
  color: #276AA5;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Verdana', sans-serif;
}

.title-green {
  color: #7EAC2F;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

.mainbanner-desc {
  font-size: 24px;
  font-family: 'Verdana', sans-serif;
  line-height: 1.5;
  color: #276AA5;
  margin: 0;
  padding: 0 0 20px 0;
}

.btn-banner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #fff;
  color: #7EAC2F;
  border: 2px solid #7EAC2F;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  height: 52px;
  font-size: 22px;
  font-family: 'Verdana', sans-serif;
  box-shadow: 0px 2px 8px 1px #0000004D;
}

.btn-banner:hover {
  background: #f5fae8;
}

.btn-banner-text {
  flex: 1;
  font-size: 22px;
  font-weight: 700;
  color: #7EAC2F;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Verdana', sans-serif;
  line-height: 1;
  text-align: center;
}

.btn-banner-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 52px;
  height: 100%;
  background: #7EAC2F;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-banner-arrow img {
  width: 26px;
  height: 26px;
  display: block;
}


.mainbanner-image {
  /* flex: 0 0 35%;
  max-width: 35%; */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  align-self: flex-end;
}

.mainbanner-image .banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

.mainbanner-image .banner-mobile {
  display: none;
} 


@media (max-width: 1250px) {
  .mainbanner-content {
      padding: 30px 15px 30px 30px;
      flex: 1 1 55%;
      margin: 44px auto; 
    }
}

@media (max-width: 1020px) {


  .mainbanner {
    border-radius: 16px;
  }

  .mainbanner-title {
    font-size: 26px;
  }


  .mainbanner-image {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .mainbanner-desc {
    font-size: 13px;
  }
}

@media (max-width: 740px) {
  .mainbanner {
    border-radius: 14px;
  }

  .mainbanner-inner {
    flex-direction: column;
  }

  .mainbanner-content {
    flex: 1 1 auto;
    padding: 24px 20px 20px 20px;
    text-align: center;
    margin: 20px;
  }

  .mainbanner-title {
    font-size: 22px;
    text-align: center;
  }

  .mainbanner-desc {
    font-size: 13px;
    text-align: center;
    max-width: 100%;
    padding-bottom: 16px;
  }

  .mainbanner-btn-wrap {
    max-width: 100%;
  }

  .btn-banner {
    padding: 12px 16px;
  }

  .btn-banner-text {
    font-size: 14px;
  }

  .mainbanner-image {
    flex: 0 0 auto;
    max-width: 60%;
    margin: 0 auto;
  }

  .mainbanner-image .banner-mobile {
    display: block;
  } 

  .mainbanner-image .banner-desktop {
    display: none;
  }

  
  .mainbanner-btn-wrap {
    max-width: 100%;
  }

  .btn-banner {
    height: 46px;
  }

  .btn-banner-text {
    font-size: 14px;
    padding-right: 46px;
  }

  .btn-banner-arrow {
    width: 46px;
  }

}

@media (max-width: 460px) {
  .mainbanner.wrapper,
  .altbanner.wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mainbanner {
    border-radius: 12px;
  }

  .mainbanner-content {
    padding: 16px 14px 14px 14px;
  }

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

  .mainbanner-desc {
    font-size: 12px;
  }

  .mainbanner-image {
    max-width: 55%;
  }
}

/*  Promo banner  */

.altbanner {
  background: #276AA5;
  border-radius: 20px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.altbanner-inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.altbanner-content {
  flex: 1 1 60%;
  z-index: 3;
  margin: 44px auto 44px 50px;
  border-radius: 20px;
}

.altbanner-title {
  text-align: left;
  margin: 0;
  padding: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Verdana', sans-serif;
}

.altbanner-desc {
  font-size: 20px;
  font-family: 'Verdana', sans-serif;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  padding: 0 0 20px 0;
}

.altbanner-btn {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 0;
  background: #7EAC2F;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  height: 52px;
  font-size: 22px;
  font-family: 'Verdana', sans-serif;
  box-shadow: 0px 2px 8px 1px #0000004D;
}

.altbanner-btn:hover {
  background: #f5fae8;
}

.altbanner-btn-text {
  flex: 1;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Verdana', sans-serif;
}

.altbanner-btn-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 52px;
  height: 100%;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.altbanner-btn-arrow img {
  width: 26px;
  height: 26px;
  display: block;
}

.altbanner-image {
  position: absolute; 
  right: -120px; 
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.altbanner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.altbanner-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}


.title-blue {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  color: #80B5FF;
  font-family: 'Verdana', sans-serif;
}

@media (max-width: 1000px) {
    .altbanner-content::before {
      content: '';
      position: absolute;
      inset: -20px -60px -20px -20px;
      background: linear-gradient(
        90deg,
        rgba(39, 106, 165, 0.95) 0%,
        rgba(39, 106, 165, 0.75) 55%,
        rgba(39, 106, 165, 0.0) 100%
      );
      z-index: -1;
      border-radius: 24px;
      pointer-events: none;
  }
}

@media (max-width: 740px) {

  .altbanner-inner {
    flex-direction: row;
  }

  .altbanner-content {
    flex: 1 1 auto;
    padding: 24px 20px 20px 20px;
    margin: 20px;
    text-align: left;
  }

  .altbanner-image {
    position: absolute;
    right: -260px;
    bottom: -20px;
    max-width: none;
    flex: none;
  }

  .altbanner-img {
    width: auto;
    height: 260px;
  }

  .altbanner-title, .title-blue {
    font-size: 22px;
  }



  .altbanner-desc {
    font-size: 13px;
  }

  .altbanner-btn {
    height: 46px;
  }

  .altbanner-btn-text {
    font-size: 14px;
    padding-right: 46px;
  }

  .altbanner-btn-arrow {
    width: 46px;
  }
}

@media (max-width: 460px) {
  .altbanner-image {
    right: -340px;
  }

  .altbanner-img {
    height: 240px;
  }
}