/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: #373737;
}
.mobile-only {
	display:none;
}
*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}
.hero-title p {
	margin-top: 20px;
	font-size: 18px;
    color: #ffff;
	font-weight: 600;
}
a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #282828;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #282828;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1400px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.main-content-white {
  background-image: url(../images/bg-main.jpg);
  background-size: cover;
  clip-path: inset(0 0 0 0 round 0 0 40px 40px); /* Обрезка только снизу */
  padding-bottom: 60px;
}
section {
  margin-top: 120px;
}
h2.title {
  color: #282828;
  font-size: 40px;
  font-weight: 800;
}
.career h2.title,
.composition h2.title{
	color: #39081C;
}
.subtitle {
	 font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
}
.advantages-items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantages-item {
  /* height: 380px; */
  background: #f4f4f4;
  border-radius: 40px;
  padding: 10px 30px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.advantages-img {
  /* max-height: 210px; */
  max-width: 250px;
}
/* .advantages-img img {
  width: auto;
  height: 100%;
} */
.advantages-title {
  font-size: 20px;
  font-weight: 600;
}
.advantages-text {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 500;
}
.for-whom-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
}
.for-whom-item {
  width: 50%;
  position: relative;
  border-radius: 30px;
  background: #39081C;
  padding: 50px 36px 43px 43px;
  display: flex;
  flex-direction: column;
}
.for-whom-orange {
  border-radius: 35px;
  background: #FFBC00;
  width: max-content;
  padding: 14px 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  top: -14px;
}
.for-whom-title {
  color: #FFBC00;
  font-size: 32px;
  font-weight: 700;
}
.for-whom-descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 25px 0 30px;
}
.for-whom-descr-element {
  display: flex;
  align-items: center;
  gap: 15px;
}
.for-whom-descr-img {
  width: 30px;
  height: 30px;
}
.for-whom-descr-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  width: 90%;
}
.for-whom-title-w {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.for-whom-descr2 {
  margin-top: 27px;
  border-radius: 20px;
  background: #373737;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}
.for-whom-descr-element2 {
  display: flex;
  gap: 10px;
  align-items: center;
}
.for-whom-descr-element2 img {
  width: 20px;
  height: 20px;
}
.for-whom-descr-element2 p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  width: 90%;
}
.composition-bottom {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  z-index: 0;
  top: 0;
  transition: 0.5s all;
}
.composition-item-bottom_text {
  display: flex;
  gap: 8px;
}
.composition-item-bottom_text-descr {
  color: #fff;
  width: 90%;
  font-size: 18px;
  font-weight: 400;
}
.composition-img {
  width: 20px;
  height: 20px;
}
.composition-item {
  position: relative;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 20px;
  background: #39081C;
  /* padding: 0px 0px 40px; */
  /* margin-top: 10px; */
}
.active .composition-item-top {
  background: #FFBC00;
}
.composition-item-top {
  padding: 40px 40px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: #39081C;
  transition: 0.3s all;
}
.composition-item-top .num {
  font-size: 28px;
  font-weight: 600;
}
.composition-close-text {
  position: relative;
  min-width: 213px;
  height: 25px;
}
.composition-close-text p {
  position: absolute;
  transition: 0.3s;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.composition-close-text p:nth-child(2) {
  opacity: 0;
  color: #282828;
}
.composition-item-top .num,
.composition-item-top h3 {
  color: #FFBC00;
  transition: 0.3s all;
}
.active .composition-item-top .num,
.active .composition-item-top h3 {
  color: #39081C;
}
.composition-item-top h3 {
  font-size: 32px;
  font-weight: 700;
}
.active .composition-close-text p:nth-child(2) {
  opacity: 1;
  color: #39081C;
}
.active .composition-close-text p:nth-child(1) {
  opacity: 0;
}
.composition-close {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.composition-close svg,
.composition-close svg path {
  transition: 0.3s all;
}
.active .composition-close svg {
  transform: rotate(-90deg);
}
.active .composition-close svg path {
  fill: #39081C;
}
.active .composition-item-bottom {
  height: auto;
}
.composition-item-bottom {
  height: 0;
  overflow: hidden;
  padding: 0 40px;
  margin-left: 20%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.composition-item-bottom .composition-item-bottom_text:last-child {
  padding-bottom: 40px;
}
.composition-item-top .num {
  flex: 20%;
}
.composition-item-top_flex {
  flex: 80%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  word-break: break-word;
}
.composition_tabs {
  display: flex;
  gap: 20px;
  margin: 40px 0 60px;
}
.composition-tab {
  cursor: pointer;
  border-radius: 56px;
  background: #f4f4f4;
  padding: 25px 10px;
  width: 100%;
  text-align: center;
  color: #39081C;
  font-size: 20px;
  font-weight: 800;
  transition: 0.3s all;
}

.composition-tab_content {
  position: relative;
}
.composition-tab.active_btn {
  background: #39081C;
  color: #fff;
}
.composition-bottom.active_btn {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.training-content {
  display: flex;
  gap: 5px;
}
.training-title {
  color: #373737;
  font-size: 32px;
  font-weight: 800;
}
.training-descr {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0;
}
.form-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.form-social a {
  width: 50px;
  height: 50px;
}
.training .form {
  margin-top: 40px;
}
.form-input {
  width: 100%;
  display: flex;
  gap: 10px;
}
.input {
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background: #f4f4f4;
  border: none;
  padding: 17px 20px;
  width: 100%;
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.blue-btn:hover {
  opacity: 0.7;
}
.blue-btn {
  border-radius: 56px;
  background: #0b4aeb;
  padding: 14px 19px 14px 70px;
  transition: 0.3s all;
  cursor: pointer;
  max-width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
}
.btn {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-weight: 800;
  min-width: max-content;
}
.orange-btn {
	background: #FFBC00;
}
.white-btn {
	background: #FFF;
	color: #39081C;
}
.training .blue-btn {
  margin-top: 30px;
  background: #FFBC00;
}
.training-left {
  padding-top: 50px;
}
.training-left,
.training-right {
  flex: 50%;
}

.company {
  overflow: hidden;
  position: relative;
}
.company_marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  padding: 50px 0 0;
}

.company_content {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
  max-width: max-content;
  animation: scroll 35s linear infinite;
  justify-content: space-between;
}

.company_item {
  flex: 0 0 auto;
  width: 300px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #f4f4f4;
  padding: 27px 38px;
}
.company_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

/* Стилизация элементов */

.teacher-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}
.teacher-descr {
  color: #000;
  font-size: 20px;
  font-weight: 400;
}
.navigation_btn-img {
  display: flex;
  gap: 20px;
}
.next-img {
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: 0.3s all;
}
.next-img:hover {
  opacity: 0.7;
}
.teacher-img {
  text-align: center;
  /* padding: 20px 30px 0; */
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f4;
  height: 520px;
  position: relative;
}
.teacher-phrase {
	position: absolute;
	bottom: 0;
	color: #fff;
    font-size: 20px;
	min-height: 116px;
    font-weight: 400;
	padding: 10px;
	background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.teacher-img img {
  width: 100%;
  height: 100%;
}
.teacher-slide-title {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 15px;
}
.teacher-slide-interests {
	margin-top: 10px;
}
.teacher-slide-descr {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.teacher h2.title {
  min-width: max-content;
}
.faq {
/*   background-image: url(../images/faq-bg.jpg); */
/*   background-repeat: no-repeat;
  background-size: cover; */
  background: #39081C;
  margin-top: -35px;
  padding-top: 40px;
  padding-bottom: 120px;
}
.faq h2.title {
  color: #fff;
}
.faq-left {
  flex: 40%;
}
.faq-left p {
  margin-top: 20px;
  margin-bottom: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.faq-content {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-top: 120px;
}
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 60%;
}
.faq-item {
  position: relative;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 16px;
  background: #4B0B25;
  padding: 20px;
}
.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-close {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}
.f-close span {
  height: 3px;
  background: #fff;
  width: 12px;
  position: absolute;
}
.f-close span:nth-child(2) {
  transform: rotate(90deg);
  transition: 0.3s;
}
.active .f-close span:nth-child(2) {
  transform: rotate(0) translateX(0) translateY(0);
}
.active .f-bottom {
  height: auto;
}
.f-bottom {
  height: 0;
  overflow: hidden;
  width: 90%;
  font-size: 16px;
}
.faq-top_title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.f-bottom *,
.f-bottom {
  color: #fff;
  font-size: 18px;
  /* font-weight: 400; */
}
.f-bottom p+p{
	margin-top: 10px;
}
.footer {
  background: #39081C;
  padding: 32px 0;
  margin-top: -5px;
}
.footer-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer-top-r {
  border-radius: 20px;
  background: #FFBC00;
  padding: 40px 50px 45px;
}
.footer-top-r_descr {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-top-r_descr .img {
  min-width: 156px;
  width: 156px;
  height: 156px;
}
.footer-top-r_descr p {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  width: 68%;
  margin-bottom: 10px;
}
.footer .form {
  margin: 25px 0 34px;
}

.footer input.input {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.footer input.input::placeholder,
.footer input.input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.footer .blue-btn {
  margin-top: 50px;
}
.footer-top-l-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 35px;
}
.footer-top-l-name {
  color: #FFBC00;
  font-size: 18px;
  font-weight: 600;
}
.footer-top-l-descr {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.footer-social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 100px;
}
.footer a {
  cursor: pointer;
  transition: 0.3s all;
}
.footer a:hover {
  opacity: 0.7;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.map {
  margin-top: 60px;
  width: 100%;
  height: 350px;
}
.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-bottom p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.footer-bottom a {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d2d2d2;
  font-size: 14px;
  font-weight: 400;
}
.mkey {
  width: 39px;
  height: 16px;
}
.footer-top-r,
.footer-top-l {
  flex: 50%;
}

.prospects {
  background: #FFBC00;
  margin: 120px 36px 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  border-radius: 40px;
}
.prospects-content-r {
  position: relative;
  z-index: 1;
  width: 55%;
  padding: 90px 0 85px;
  margin: 0 16px;
}
.prospects-content-item {
  margin: 40px 0 60px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: start;
}
.prospects-content-item .img {
  width: 106px;
  height: 106px;
}
.dots {
  width: 32px;
  height: 8px;
}
.prospects-content-text {
  padding-left: 30px;
  padding-top: 5px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
.prospects-content-text span {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
.prospects-content-item_bottom,
.hero-l-btn {
  display: flex;
  gap: 15px;
  align-items: center;
}
.prospects-content {
  display: flex;
}
.line img {
  height: 100%;
  width: auto;
}
.line {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
.prospects-content-item_bottom .img {
  width: 73px;
  height: 73px;
}
.prospects h2.title {
  width: 475px;
}
.yellow {
  position: absolute;
  top: -30px;
  left: 45px;
  width: 290px;
}
.line_mobail {
  display: none;
}
.flex {
  display: flex;
}
.reviews {
  border-radius: 20px;
  background: #39081C;

  margin-left: 40px;
  margin-right: 40px;
}
.reviews-left {
  padding: 90px 10px;
}
.reviews h2.title {
  color: #fff;
}
.review-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.review-about {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.review-img {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.review-img img {
  width: 25px;
  height: 25px;
}
.review-img p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.review-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.reviews-content {
  display: flex;
  justify-content: space-between;
}
.reviews-left {
  width: 55%;
}
.reviews-right {
  height: 730px;
}
.reviews-right img {
  height: 100%;
  width: auto;
}
.reviews .navigation_btn-img,
.reviews-swiper {
  margin-top: 90px;
}
section.career {
  position: relative;
/*   background: #fffe12; */
  background: #FFBC00;
  margin: 120px 36px 0;
  background-size: 100%;
  border-radius: 40px;
  margin-top: 50px;
  padding-bottom: 140px;
  padding-top: 80px;
}
.main-content-black {
  background-color:	#39081C;
/*   background-color: #282828; */
  padding-bottom: 80px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  position: relative;
  z-index: 1;
}
.career-l_descr {
  display: flex;
  gap: 20px;
  align-items: center;
}
.career-l_descr p {
/*   color: #282828; */
  color: #39081C;
  font-size: 20px;
  font-weight: 700;
  width: 276px;
}
.career-l_descr .img {
  width: 156px;
  height: 156px;
}
.career .form-social {
  margin: 20px 0 56px;
}
.career-l,
.career-r {
  flex: 50%;
}
.career-r {
  padding-top: 50px;
}
.form-social a {
  transition: 0.3s all;
}
.form-social a:hover {
  opacity: 0.7;
}
.career-r_title {
  margin-bottom: 35px;
  color: #39081C;
  font-size: 20px;
  font-weight: 700;
}
.career .blue-btn {
  margin-top: 80px;
}
.career input.input {
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.1);
  color: #39081C;
}
.career input.input::placeholder,
.career input.input::-webkit-input-placeholder {
  color: #39081C;
  opacity: 1;
}

.people-mob {
  display: none;
}
section.advantages {
  margin-top: -34px;
  padding-top: 140px;
}

.burger {
  display: none;
  width: 30px;
  height: 26px;
  position: relative;
}
.burger span {
  border-radius: 30px;
  display: block;
  top: 50%;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: 0.5s all;
  margin-bottom: 5px;
}

.burger span:nth-child(2) {
  width: 15px;
}

.burger.active span:nth-child(2) {
  width: 100%;
  position: absolute;
  transform: rotate(-45deg);
}
.burger.active span:nth-child(1) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  position: absolute;
  width: 100%;
  transform: rotate(45deg);
}
.header {
  position: absolute;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  z-index: 2;
}
.logo {
  width: 226px;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0 13px 15px;
  border-left: 1px solid #fff;
}
.header-menu ul {
  display: flex;
  gap: 25px;
}
.header-menu ul .slash {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.header-menu ul li {
  position: relative;
}
.header-menu ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s all;
  cursor: pointer;
}
.header-menu ul li a:hover {
  opacity: 0.7;
}
.header-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45px;
  width: 0;
  height: 5px;
  border-radius: 13px;
  background: #FFBC00;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.header-menu li:hover a::after {
  width: 100%;
  left: 0;
}
.header .box {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 3px;
  background: #FFBC00;
  z-index: 2;
}
.header .box:nth-child(1) {
  bottom: 0.5px;
  left: -31px;
}
.header .box:nth-child(2) {
  bottom: -31px;
  left: 0.5px;
}
.hero {
  margin-top: 0;
  min-height: 100vh;
  background-image: url(../images/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
}
.hero-l {
  display: flex;
  flex-direction: column;
  max-width: 650px;
}
.hero-title,
.hero-title span {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}
.hero-title span {
  color: #FFBC00;
}
.hero-l-descr {
  display: flex;
  align-items: center;
/*   justify-content: flex-end; */
  gap: 10px;
  margin: 20px 0 23px;
}
.hero-l-descr img {
  width: 62px;
  height: 46px;
}
.hero-l-descr p {
  color: #fff;
  text-align: right;
  font-size: 24px;
  font-weight: 800;
/*   width: 205px; */
	width: 525px;
}
.consultation-btn {
	height: 74px;
	padding-left: 19px;
}
.hero-l-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-l-text-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-num {
  color: #FFBC00;
  font-size: 18px;
  font-weight: 600;
}
.hero-l-text-item p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-left: 45px;
}
.hero-content_element {
  position: relative;
  padding-bottom: 50px;
  display: flex;
  padding-top: 140px;
  z-index: 2;
  height: 100%;
  gap: 15px;
}
.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #fff 0%, #282828 100%);
  z-index: 3;
}
.hero-l-btn {
  padding-top: 40px;
  flex-grow: 1;
  align-items: flex-end;
}
.hero-l-btn .img {
  width: 73px;
  height: 73px;
}
.hero-r {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-r-item {
  display: flex;
  justify-content: end;
}
.hero-r-item_block {
/*   width: 249px; */
}
.hero-r-item_block .hero-r-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: max-content;
}
.hero-button-box {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-top: 10px;
}
.hero-button-box .btn {
	padding-left: 19px; 
}
.hero-r-item-tiltle {
  color: #FFBC00;
  font-size: 20px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 5px;
}
.hero-r-item-text {
  color: #FFBC00;
  font-size: 16px;
  font-weight: 400;
}
.hero-r-item_block:nth-child(2) .hero-r-item-tiltle,
.hero-r-item_block:nth-child(2) .hero-r-item-text,
.hero-r-item_block:nth-child(2) div {
  text-align: end;
}
.hero-r-item_block:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  right: -270px;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: end;
  z-index: 1;
}
.hero-img img {
  height: 93%;
  width: auto;
}
section.hero {
  overflow: hidden;
}
.hero-l,
.hero-r {
  position: relative;
  z-index: 2;
}
.form-input p {
  width: 100%;
  display: flex;
  gap: 10px;
}
.wpcf7 .btn {
  padding: 20px 70px;
}
.form-orange-bg .wpcf7-response-output {
  color: #000;
}
.wpcf7-form-control-wrap {
  width: 100%;
}
.disabled {
  pointer-events: none;
  opacity: 0.8;
}
.for-whom_button {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.for-whom_button a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  padding: 13px 15px;
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}
.for-whom_button a .img {
  width: 24.667px;
  height: 37px;
}
.for-whom_button a:nth-child(1) {
  border-radius: 56px;
  background: #FFBC00;
}
.for-whom_button a:nth-child(2) {
  border-radius: 56px;
  background: transparent;
  border: 2px solid #fff;
}

.edu-card {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 15px 27px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 5px 21px rgba(0,0,0,.25);
}
.edu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(50% - 28px);
}
.edu-item--main { flex: 1 1 auto; }
.edu-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  color: #F2B01E;
}
.edu-icon svg { display: block; width: auto; min-height: 40px; }
.edu-divider {
  flex: none;
  align-self: stretch;
  width: 1px;
  min-height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.45) 50%, rgba(255,255,255,0) 100%);
}
.edu-text { min-width: 0; }
.edu-label {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
}
.edu-title {
  margin: 1px 0 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: #F2B01E;
  word-break: break-word;
}
.edu-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
}

.edu-quote {
  position: absolute;
  top: 121px;
  left: 638px;
  display: inline-block;
  width: 200px;
  padding: 22px 26px 26px;
  border: 1px solid rgba(255,188,0,.30);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
  backdrop-filter: blur(2px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 5px 21px rgba(0,0,0,.30);
}
.edu-quote__icon {
  display: block;
  width: 34px;
  margin-bottom: 15px;
  color: #FFBC00;
}
.edu-quote__icon svg { display: block; width: 100%; height: auto; }
.edu-quote__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #FFBC00;
}
.edu-quote__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
}