
.begin_block{
  display: flex;
  justify-content: stretch;
  gap: 30px;
  margin-bottom: 90px;
}
.begin_block .info_block{
  width: 100%;
  background-color: rgb(var(--white-color), 1);
  border-radius: 5px;
  position: relative;
  padding: 65px;
}
.begin_block .info_block .title_description{
  font-size: 18px;
  max-width: 550px;
}
.begin_block .info_block .description{
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.begin_block .info_block .description,
.begin_block .info_block .title_description{
  position: relative;
  z-index: 1;
}
.begin_block .info_block .background_image{
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  max-height: 100%;
  max-width: 50%;
}

.advance_block{
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 5px;
  background-color: rgb(var(--main-color), 1);
  padding: 60px 25px;
}
.advance_block h2{
  text-align: center;

  color: rgb(var(--white-color), 1);
}
@media screen and (max-width: 999px){
  .begin_block{
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 30px;
    margin-bottom: 90px;
  }
  .advance_block{
    width: 100%;
    gap: 20px;
    align-items: center;
  }
}
@media screen and (max-width: 767px){
  .begin_block .info_block {
    padding: 20px;
  }
}
@media screen and (max-width: 650px){
  .begin_block .info_block .background_image{
    opacity: 0;
  }
}
.tabsBlock{
  padding-bottom: 90px;
}
.tabsBlock .window_tab a{
  color: rgb(var(--white-color), 1);
}
.tabsBlock .window_tab a:hover{
  text-decoration: underline;
}