:root {
  /* main */
  --bg-color: #13092A;
  --text-color: #fff;

  /* header / footer */
  --header-background: #213B61;
  --header-text: #fff;
  --footer-background: #213B61;
  --footer-text: #fff;

  /* button / faq */
  --button-background: #F5C36A;
  --button-hover: transparent;
  --button-text: #fff;
  --button-hover-text: #F5C36A;

  --button-weight: 700;

  --sbutton-background: #BF3632;
  --sbutton-hover: #BF3632;
  --sbutton-text: #fff;
  --sbutton-border: 1px solid #BF3632;

  --faq-color: #CCCCCC;
  --faq-title-color: #000;
  --faq-text: #000;
  --faq-arrow: #000;

  --button-text-hover: #fff;
  --button-border-radius: 8px;

  --border: 1px solid #F5C36A;

  /* image */
  --image-border-radius: 10px;

}

@font-face {
  font-family: MainFont;
  src: url('fonts/Montserrat-Regular.ttf');
}

* {
  scroll-behavior: smooth;
  transition: all .5s;
  box-sizing: border-box;
}

html,
body {
  font-family: "MainFont", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
  background-repeat: repeat;
  background-attachment: fixed;
}

main {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

nav ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 32px;
  margin: 0;
}

h2 {
  margin-top: 25px;
}

h3,
h4,
p {
  margin: 10px 0 0;
}


h2,
h4 {
  text-align: center;
}

p {
  text-align: justify;
  font-size: 20px;
}

li {
  font-size: 20px;
}

.blk {
  margin-bottom: 25px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;

  & a {
    margin-left: 0;
    margin-right: 0;
    min-width: 150px;
  }
}

.image-link {
  width: 100%;
}

.image-link img {
  margin-bottom: 0;
}

.halfSizeBlock {
  width: 50%;
}

.main-img {
  width: 100%;
  margin: 20px 0 10px;
  /* height: 500px; */
  object-fit: cover;
  border-radius: var(--image-border-radius);
}

.banner-blck,
.headerBlock,
.contentBlock,
.footerBlock {
  max-width: 1120px;
  margin: 0 auto;
}

.main-button {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: var(--button-weight);
  color: var(--button-text);
  text-decoration: none;
  background: var(--button-background);
  width: fit-content;
  border: var(--border);
  border-radius: var(--button-border-radius);
}

.main-button:hover {
  background: var(--button-hover);
  color: var(--button-hover-text);
}

.mainSubBtn {
  background: var(--sbutton-background);
  color: var(--sbutton-text);
  border: var(--sbutton-border);
}

.mainSubBtn:hover {
  background: var(--sbutton-hover);
  color: var(--sbutton-text);
}


/* header */
.headerBlock>div {
  display: flex;
}

.headerBlock>div:last-child {
  display: flex;
  justify-content: center;
}

.headerBlock>div>a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.headerBlock nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.headerBlock .main-button {
  min-width: 95px;
}

/* header */
header {
  width: 100%;
  z-index: 24;
  min-height: 70px;
  display: flex;
  position: fixed;
  padding-top: 15px;
  background: var(--header-background);
}

.headerBlock {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
  border-radius: var(--button-border-radius);
}

.headerBlock ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: 50px;
}

li p {
  text-align: left;
}

.headerBlock ul li a {
  font-size: 15px;
  color: var(--header-text);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 5px 15px;
  text-align: center;
}

.headerBlock ul li a:hover {
  color: var(--button-text-hover);
}

.header-toggler {
  display: none;
  color: var(--header-text);
  font-size: 35px;
}

.header-toggler::after {
  content: "\f0c9";
  font-family: "FontAwesome", sans-serif;
}

.header-toggler--open::after {
  content: "\f00d";
  font-family: "FontAwesome", sans-serif;
}

.headerBlock img {
  width: 100%;

}

.headerLogo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 200px;
  height: 50px;
}

.headerButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 10px 0;
}

.headerButton>div {
  display: flex;
  gap: 10px;
}


/* banner-sec */
.banner-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 0;
}

.banner-blck {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  border-radius: var(--button-border-radius);
}


/* sectionContent */
.sectionContent {
  padding: 10px 10px;
}

.content__double {
  display: grid;
  gap: 20px;
  grid-template-columns: var(--grid-column);
  margin: 20px 0;
}

.content__triple {
  grid-template-columns: var(--grid-column-slot);
}

.content__doubleItem {
  padding: 15px;
  border-radius: var(--grid-border-radius);
  border: 1px solid var(--grid-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: var(--grid-background);
  color: #c4ffd9;
}

.content__doubleItem .main-button {
  margin-top: auto;
}

.content__doubleItem span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--button-background);
  color: var(--button-text);
  border-radius: 50%;
  margin: 0 auto;
}

.content__tripleItem {
  cursor: pointer;
  align-items: center;
  text-align: center;
}

.content__tripleItem:hover {
  transform: scale(1.05);
}

.content__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.content__double img,
.content__list img {
  width: 100%;
  border-radius: var(--image-border-radius);
}

.content__desc>div {
  display: flex;
  width: 100%;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.content__desc>div img {
  width: 100%;
  max-width: 300px;
  box-shadow: none;
}

.contactBlock__form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.contactBlock__form input,
textarea {
  width: 100%;
  height: 48px;
  border-radius: var(--button-border-radius);
  padding: 10px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  border: 2px solid var(--input-border);
  background: var(--input-background);
  color: var(--input-text);
}

.contactBlock__form input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
  min-height: 200px;
}

.contactBlock__formLine {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.faq-section {
  & li {
    list-style-type: none;
    position: relative;
    padding: 25px 40px;
    cursor: pointer;
    background: var(--faq-color);
    margin-bottom: 10px;
    border-radius: 10px;
  }

  & h3 {
    padding-right: 25px;
    color: var(--faq-title-color)
  }
}

/* FAQ */
.faq-section {
  & ul {
    padding-left: 0;
  }

  & li {
    list-style-type: none;
    position: relative;
    padding: 15px 20px;
    cursor: pointer;
    background: var(--faq-color);
    margin-bottom: 10px;
    border-radius: 10px;
  }

  & h3 {
    padding-right: 25px;
  }
}

.faq-item::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  mask-image: url(img/arrow.svg);
  right: 40px;
  top: 30px;
  display: flex;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: var(--faq-arrow);
  transition: transform .2s ease;
}

.faq-text {
  overflow: hidden;
  height: 0;
  font-size: 18px;
  line-height: 24px;
  opacity: 0;
  color: var(--faq-text);
  transition: opacity .2s ease;
}

.faq-item.active::after {
  transform: rotateX(180deg);
}

.faq-item.active .faq-text {
  margin-top: 16px;
  height: auto;
  opacity: 1;
}

.footer-section {
  padding: 0 0 0 300px;
  background-color: #232325;
}

.footer-block {
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;

  & img {
    width: 120px;
  }
}


/* FAQ */

/* footer */
footer {
  padding: 35px 10px;
}

.footerBlock {
  background: var(--footer-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 35px 10px;
  border-radius: var(--button-border-radius);
}

.footerBlock>img {
  height: 50px;
}

.footerBlock>div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footerBlock>div:last-child img {
  height: 50px;
}

.footerBlock>div {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.footerBlock i {
  color: var(--footer-text);
  font-size: 28px;
}

.footerBlock a:hover,
.footerBlock i:hover {
  color: var(--button-background);
}


.footerNav a {
  color: var(--footer-text);
}


/* media */
@media (max-width: 1244px) {
  .header {
    padding: 0 10px;
  }

  .headerMenu {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    background-color: var(--header-background);
    transition: 0.3s ease-in-out;
    z-index: -1;
    padding: 100px 30px 30px 30px;
    align-items: baseline;
  }

  .headerBlock {
    z-index: 2;
  }

  .header-menu--open {
    opacity: 1;
    transform: translateX(0);
  }

  header nav ul {
    flex-direction: column;
  }

  .header-toggler {
    display: flex;
    padding: 20px;
    z-index: 2;
    height: 70px;
  }

  .headerBlock__logo::before {
    display: none;
  }

  .headerBlock__logo {
    justify-content: space-between;
  }

  .headerBlock ul {
    padding: 150px 0 0;
  }

  .header-menu--open+span {
    position: fixed;
  }


  .headerBlock ul {
    align-items: center;
    background: var(--header-background);
    height: 100vh;
  }

  .headerBlock {
    border-radius: 10px 0 0 10px;
    height: 75px;
  }

  .header-toggler {
    border-radius: 0 10px 10px 0;
    background-color: var(--header-background);
    height: 75px;
  }

}

@media (max-width: 768px) {
  .content__list {
    flex-direction: column;
  }

  .content__double {
    grid-template-columns: var(--grid-column-768);
  }

  .halfSizeBlock {
    width: 100%;
  }

  .sectionContent {
    padding: 0 10px;
  }

  .banner-sec {
    padding: 100px 10px 0;
  }
}

@media (max-width: 561px) {
  h2 {
    margin-bottom: 0;
  }

  p {
    text-align: justify;
  }

  .headerLogo {
    width: 150px;
    margin: 0 auto;
  }

  .headerBlock ul {
    justify-content: center;
    gap: 25px;
  }

  .headerBlock ul li a {
    font-size: 25px;
  }

  .sectionContent .main-img {
    height: auto;
  }

  .main-img {
    margin: 10px 0 10px;
  }

  .sectionContent:last-child {
    padding-bottom: 20px;
  }

  .headerBlock {
    z-index: 2;
    flex-direction: column;
    height: auto;
    border-radius: var(--button-border-radius);
  }

  .header-toggler {
    height: 65px;
  }

  .headerBlock>div:last-child {
    width: 100%;
  }

  .headerBlock .main-button {
    min-width: 145px;
  }

  .header-toggler {
    position: absolute;
    right: 0;
  }

  .banner-sec {
    padding: 150px 10px 0;
  }

  .content__list {
    gap: 7px;
  }

  .footerNav {
    display: none !important;
  }

  .footerBlock>div:last-child img {
    height: 25px;
  }

  h1,
  h2,
  h3 {
    font-size: 18px;
  }

  h4,
  p,
  label,
  a,
  ul li {
    font-size: 15px;
  }

}