/*----fonts-------------------------------------------*/

@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");

/*----variables-------------------------------------------*/

:root {
  --maxWidth: 1252px;
  --montserrat: "Montserrat", sans-serif;
  --inter: "Inter", sans-serif;
  --white: #ffffff;
  --grey: #828a97;
  --darkGrey: #515063;
  --hrGrey: rgba(81, 80, 99, 0.2);
  --black: #000000;
  --blue: #0c6fc6;
  --darkBlue: #0048b4;
  --lightBlue: #1994d7;
  --lilac: #e8eefe;
}

/*----main-------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  box-sizing: border-box;
  border: none;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}
body {
  font-size: 15px;
  font-weight: 300;
  font-family: var(--montserrat);
}
.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
main {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  padding: 100px 0px 0px 0px;
}
._container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: var(--maxWidth);
}
button {
  transition: 0.5s;
  cursor: pointer;
}
button:hover {
  filter: brightness(120%);
}
button:active {
  filter: brightness(80%);
  transition: 0.2s;
}

/*----header-------------------------------------------*/

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  padding: 29px 0;
  background-color: var(--white);
}
.header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.header_body {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}
.loginSmallBtn {
  z-index: 3;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 36px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 400;
  border: 1px solid var(--blue);
  border-radius: 20px;
  display: none;
}
.header_logo {
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.header_logo img {
  max-width: 100%;
  display: block;
}
.header_burger {
  display: none;
}
.header_menu {
  display: flex;
  align-items: center;
  gap: 133px;
}
.header_list {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 49px;
}
.header_link {
  color: var(--grey);
  font-weight: 500;
  text-align: center;
}
.header_link:hover {
  text-decoration: underline;
}
.activeLink {
  display: none;
}
.header_socials {
  display: none;
}
.header_btns {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 43px;
}
.header_btn {
  border: 1px solid var(--blue);
  border-radius: 20px;
  font-weight: 300;
}
.header_btn {
  padding: 13.5px 35px;
}
.regBtn {
  background-color: var(--blue);
  color: var(--white);
}
.logBtn {
  background-color: inherit;
  color: var(--blue);
}
.logBtn:hover {
  background-color: var(--blue);
  color: var(--white);
}

/*----partnership-------------------------------------------*/

.partnership {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0 0 0;
  height: 918px;
}
.partnership_container {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 64px;
  background-color: var(--lilac);
  height: 676px;
  width: 100%;
  padding: 89px 291px 78px 96px;
  border-radius: 143px 0 188px 0;
}
.partnership_content {
  display: flex;
  flex-direction: column;
  max-width: 452px;
}
.partnership_content h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 71px;
  margin-bottom: 37px;
}
.partnership_content h1 span {
  font-weight: 700;
  color: #0c6fc6;
}
.partnership_content h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #4a5568;
  margin-bottom: 30px;
}
.smallMen {
  display: none;
}
.partnership_image {
  width: 350px;
  height: 150px;
  margin-bottom: 42px;
}
.partnership_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--blue);
  border-radius: 40px;
  color: var(--white);
  width: 349px;
  height: 54px;
  font-size: 20px;
  font-weight: 300;
}
.men {
  position: absolute;
  z-index: 3;
  right: 0;
}
.blueDown {
  position: absolute;
  z-index: 4;
  bottom: 0;
}

/*----conditions-------------------------------------------*/

.conditions {
  padding: 85px 0;
  position: relative;
  width: 100%;
  min-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blueLeft,
.blueRight {
  position: absolute;
}
.blueLeft.small,
.blueRight.small {
  display: none;
}
.blueLeft {
  bottom: 0;
  left: 0;
}
.blueRight {
  top: 0;
  right: 0;
  z-index: 7;
}
.conditions_container {
  position: relative;
  z-index: 5;
}
.conditions_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
hr {
  width: 69px;
  height: 5px;
  background-color: var(--hrGrey);
  margin-bottom: 22px;
}
.conditions_header h2,
.conditions_header h3 {
  font-size: 40px;
}
.conditions_header h2 {
  font-weight: 400;
  color: var(--darkGrey);
}
.conditions_header h3 {
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
.conditions_blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.conditions_blocks_top,
.conditions_blocks_bottom {
  display: flex;
  align-items: center;
  gap: 30px;
}
.conditions_blocks_top .block {
  position: relative;
  width: 395px;
  height: 252px;
}
.conditions_blocks_bottom .block {
  position: relative;
  width: 290px;
  height: 262px;
}
.conditions_block_icon {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 26px;
  width: 90px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #94ccfd;
  border-radius: 14px;
}
.conditions_block_main {
  padding: 86px 0 0 30px;
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  height: 205px;
  background-color: var(--lilac);
  border-radius: 0 48px 0 54px;
  font-size: 20px;
  font-weight: 600;
}

/*----about-------------------------------------------*/

.about {
  position: relative;
  min-height: 1111px;
  background-color: #eff4ff;
}
#rl,
#rls {
  position: absolute;
  right: 0;
  bottom: 62px;
  z-index: 2;
}
#rls {
  display: none;
}
#wb {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 4;
}
#woman {
  position: absolute;
  right: 0;
  bottom: 93px;
  z-index: 3;
}
.about_container {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 0 0;
}
.about_header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_header h2,
.about_header h3 {
  font-size: 40px;
}
.about_header h2 {
  font-weight: 400;
  color: var(--darkGrey);
}
.about_header h3 {
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
.about_block {
  margin: 50px auto 26px 0;
  padding: 60px 66px 60px 32px;
  background-color: var(--white);
  border-radius: 0 60px 0 60px;
}
.about_block_point {
  display: flex;
  align-items: center;
  gap: 44px;
}
.about_block_point_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 92px;
}
.block_point_img_small {
  display: none;
}
.about_block_point h4 {
  font-size: 20px;
  font-weight: 400;
  color: #4a5568;
  max-width: 590px;
}
.about_block_point h4 span {
  font-size: 24px;
  font-weight: 600;
}
.about_block_line {
  height: 1px;
  width: 100%;
  background-color: #d2d2d2;
  margin: 30px 0;
}
.about_button {
  margin: 0 auto 0 142px;
  padding: 15px 37px;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  background-color: #0c6fc6;
  border-radius: 30px;
}

/*----functional-------------------------------------------*/

.functional {
  position: relative;
  background-image: url("./../public/functional/bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.functional_container {
  position: relative;
  z-index: 5;
  max-width: 1250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 108px 0;
  gap: 50px;
}
.functional_header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.functional_header h2,
.functional_header h3 {
  font-size: 40px;
}
.functional_header h2 {
  font-weight: 400;
  color: var(--darkGrey);
}
.functional_header h3 {
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
.functional_blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px 30px;
  flex-wrap: wrap;
}
.functional_block {
  display: flex;
  align-items: center;
  width: 608px;
  border-radius: 71px;
  gap: 30px;
  padding: 22px 28px;
  background-color: var(--white);
}
.functional_block_num {
  width: 74px;
  height: 74px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lilac);
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  border-radius: 50%;
}
.functional_block_text {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
}

/*----start-------------------------------------------*/

.start {
  min-height: 583px;
  padding: 85px 0;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leftBottom,
.rightTop {
  position: absolute;
}
.leftBottom.small,
.rightTop.small {
  display: none;
}
.leftBottom {
  bottom: 0;
  left: 0;
}
.rightTop {
  top: 0;
  right: 0;
}
.start_container {
  width: 1250px;
  position: relative;
  z-index: 5;
}
.start_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
.start_header h2 {
  font-size: 40px;
  font-weight: 400;
  color: var(--darkGrey);
}
.start_header h2 span {
  font-weight: 700;
  color: var(--blue);
}
.start_content {
  width: 100%;
  position: relative;
}
.start_content_icons {
  position: absolute;
  top: 0;
  left: 26px;
  z-index: 2;
  display: flex;
  align-items: start;
  gap: 30px;
}
.start_content_icon {
  width: 90px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #94ccfd;
  border-radius: 10px;
}
.start_content_icons .arrowDown {
  display: none;
}
.start_content_blocks {
  position: absolute;
  top: 70px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 135px;
}
.start_content_block {
  padding: 67px 110px 54px 33px;
  height: 168px;
  background-color: var(--lilac);
  border-radius: 0 60px 0 60px;
  font-size: 20px;
  font-weight: 600;
}

/*----promotion-------------------------------------------*/

.promotion {
  min-height: 583px;
  padding: 85px 0 62px 0;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--lilac);
}
.promotion_container {
  max-width: 1250px;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promotion_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}
.promotion_header h2 {
  font-size: 40px;
  font-weight: 400;
  color: var(--darkGrey);
}
.promotion_header h2 span {
  font-weight: 700;
  color: var(--blue);
}
.promotion_blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px 30px;
  flex-wrap: wrap;
}
.promotion_block {
  display: flex;
  flex-direction: column;
  width: 396px;
  background-color: inherit;
}
.promotion_block_img {
  border-radius: 0 53px 0 60px;
  width: 100%;
  height: 217px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}
.promotion_block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.promotion_block h4 {
  font-size: 20px;
  font-weight: 400;
}
.pimg1 {
  background-image: url("../public/promotion/1.png");
}
.pimg2 {
  background-image: url("../public/promotion/2.png");
}
.pimg3 {
  background-image: url("../public/promotion/3.png");
}
.pimg4 {
  background-image: url("../public/promotion/4.png");
}
.pimg5 {
  background-image: url("../public/promotion/5.png");
}
.pimg6 {
  background-image: url("../public/promotion/6.png");
}
.promotion_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--blue);
  border-radius: 40px;
  color: var(--white);
  width: 349px;
  height: 54px;
  font-size: 20px;
  font-weight: 300;
  margin: 40px 0 0 0;
}

/*----questions-------------------------------------------*/

.questions {
  position: relative;
  padding: 60px 0 70px 0;
}
.questions_bottomLeft,
.questions_topRight {
  position: absolute;
  z-index: 2;
}
.questions_bottomLeft,
.questions_topRight {
  position: absolute;
  z-index: 2;
}
.questions_bottomLeft {
  left: 0;
  bottom: 0;
}
.questions_topRight {
  top: 0;
  right: 0;
}
.questions_bottomLeft.small,
.questions_topRight.small {
  display: none;
}
.questions_container {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  height: 100%;
  max-width: 652px;
  display: flex;
  gap: 46px;
}
.questions_image {
  padding: 29px 39px;
  height: 159px;
  width: 159px;
  border-radius: 0 48px 0 59px;
  background-color: var(--lilac);
  display: flex;
  align-items: center;
  justify-content: center;
}
.questions_main {
  font-size: 32px;
}
.questions_main h3 {
  font-weight: 400;
  margin-bottom: 5px;
}
.questions_main h4 {
  font-weight: 700;
  color: var(--blue);
}
.questions_hr {
  width: 69px;
  height: 5px;
  background-color: var(--hrGrey);
  margin-bottom: 22px;
}

/*----footer-------------------------------------------*/

.footer {
  width: 100%;
  background-color: #f0f0f0;
  padding: 56px 0 45px 0;
}
.footer_container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
}
.footer_logos {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
.footer_logos_fitst {
  display: flex;
  align-items: center;
  gap: 27px;
}
.footer_logo {
  width: 77px;
  height: 67px;
}
.footer_logos h3 {
  margin: 27px 0 55px 0;
  font-size: 15px;
  font-weight: 400;
  max-width: 237px;
}
.footer_logos h3 span {
  font-weight: 700;
}
.footer_laureat {
  width: 77px;
  height: 77px;
}
.footer_laureat.mini {
  display: none;
}
.footer_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto 0 0;
}
.footer_info_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_info_list h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1994d7;
}
.footer_info_list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer_info_list li {
  font-size: 16px;
  font-weight: 500;
  color: #848992;
}
.footer_contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_contacts h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1994d7;
}
.footer_contacts_content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.contacts_content_left,
.contacts_content_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts_content_block {
  display: flex;
  gap: 20px;
}
.contacts_content_image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  width: 33px;
  border-radius: 7px;
}
.contacts_content_image.blue {
  background-color: #1994d7;
}
.contacts_content_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}
.contacts_content_text h4 {
  color: #1994d7;
}
.footer_buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 0 auto;
}
.footer_button {
  width: 181px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  color: #1994d7;
  border: 1px solid #1994d7;
  border-radius: 40px;
  font-weight: 15;
  font-weight: 400;
}
.footer_button.blue {
  color: var(--white);
  background-color: #1994d7;
}

/*----media-------------------------------------------*/

@media (max-width: 1440px) {
  .about_block_point h4 {
    max-width: 390px;
  }
}

@media (max-width: 1370px) {
  .partnership_content {
    display: flex;
    flex-direction: column;
    max-width: 352px;
  }
  .partnership_content h1 {
    font-size: 44px;
  }
  .partnership_image {
    width: 320px;
    height: 140px;
    margin-bottom: 42px;
  }
  .partnership_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--blue);
    border-radius: 40px;
    color: var(--white);
    width: 349px;
    height: 54px;
    font-size: 20px;
    font-weight: 300;
  }
  .men {
    top: 150px;
    height: 611px;
    width: 631px;
  }
}

@media (max-width: 1250px) {
  .start_container {
    width: auto;
    max-width: 1250px;
  }
}

@media (max-width: 1200px) {
  .header_menu {
    gap: 30px;
  }
  .conditions_blocks_top,
  .conditions_blocks_bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .functional_blocks {
    flex-direction: column;
    gap: 35px;
  }
  .functional_blocks {
    gap: 17px;
  }
  .functional_block {
    width: 100%;
    gap: 17px;
    padding: 13px 17px;
  }
  .functional_block_text {
    font-size: 16px;
  }
}

@media (max-width: 1040px) {
  .header_logo {
    margin-right: 30px;
  }
  .partnership_content {
    display: flex;
    flex-direction: column;
    max-width: 452px;
  }
  .partnership_content h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 71px;
    margin-bottom: 37px;
  }
  .partnership_content h1 span {
    font-weight: 700;
    color: #0c6fc6;
  }
  .partnership_content h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: #4a5568;
    margin-bottom: 30px;
  }
  .smallMen {
    display: none;
  }
  .partnership_image {
    width: 350px;
    height: 150px;
    margin-bottom: 42px;
  }
  .partnership_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--blue);
    border-radius: 40px;
    color: var(--white);
    width: 349px;
    height: 54px;
    font-size: 20px;
    font-weight: 300;
  }
  .men {
    top: 150px;
    height: 611px;
    width: 431px;
  }
  .start_content {
    max-width: 1250px;
    position: static;
    display: flex;
    align-items: start;
    gap: 15px;
  }
  .start_content_icons {
    position: static;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .start_content_icon {
    width: 90px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #94ccfd;
    border-radius: 10px;
  }
  .start_content_icons .arrow {
    display: none;
  }
  .start_content_icons .arrowDown {
    display: block;
  }
  .start_content_blocks {
    position: static;
    top: 0;
    left: 0;
    flex-direction: column;
    gap: 55px;
  }
  .start_content_block {
    padding: 25px;
    height: auto;
    min-height: 96px;
    width: 250px;
  }
}

@media (max-width: 768px) {
  .header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .header.active::before {
    background-color: var(--lilac);
  }
  .header_container {
    width: 95%;
  }
  .header_body {
    height: 50px;
  }
  .loginSmallBtn {
    display: block;
  }
  .loginSmallBtn.hidden {
    display: none;
  }
  .header_burger {
    display: block;
    position: relative;
    width: 50px;
    height: 20px;
    z-index: 3;
  }
  .header_burger span {
    position: absolute;
    background-color: var(--blue);
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    transition: 0.5s;
  }
  .header_burger:before,
  .header_burger:after {
    content: "";
    background-color: var(--blue);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: 0.5s;
  }
  .header_burger:before {
    top: -5px;
  }
  .header_burger:after {
    bottom: -5px;
  }
  .header_burger.active:before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header_burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header_burger.active span {
    transform: scale(0);
  }
  .standartLink {
    display: none;
  }
  .activeLink {
    display: block;
  }
  .header_menu {
    position: fixed;
    flex-direction: column;
    align-items: center;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--lilac);
    padding: 90px 10px 20px 10px;
    overflow: auto;
    gap: 0;
  }
  .header_menu.active {
    top: 0;
    transition: 0.5s ease 0s;
  }
  .header_list {
    display: block;
    width: 90%;
  }
  .header_list li {
    padding: 16px 0px;
    border-bottom: 1px solid var(--blue);
  }
  .header_link {
    font-size: 14px;
    color: var(--darkGrey);
  }
  .header_socials {
    display: block;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 25px 0 17px 0;
  }
  .header_btns {
    flex-direction: column;
    width: 90%;
    gap: 10px;
  }
  .header_btn {
    width: 100%;
  }
  main {
    padding: 60px 0px 0px 0px;
  }
  body.lock {
    overflow: hidden;
  }
  .men {
    display: none;
  }
  .partnership_container {
    padding: 39px 91px 28px 46px;
    height: 600px;
  }
  .partnership_content h1 {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 17px;
  }
  .partnership_content h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .conditions_header,
  .about_header,
  .start_header,
  .promotion_header {
    margin-bottom: 33px;
  }
  .conditions_header h2,
  .conditions_header h3 {
    font-size: 30px;
  }
  #woman {
    top: 280px;
    height: auto;
    width: 100%;
    border-radius: 0 150px 0 150px;
  }
  .about_block {
    margin: 320px 0 0 0;
    width: 90%;
    padding: 26px;
  }
  .about_button {
    margin: 25px 0;
  }
  .functional_container {
    padding: 61px 0 50px 0;
  }
  .functional_header h2,
  .functional_header h3 {
    font-size: 30px;
  }
  .leftBottom.small,
  .rightTop.small,
  .questions_bottomLeft.small,
  .questions_topRight.small,
  .blueLeft.small,
  .blueRight.small {
    display: block;
  }
  .leftBottom.big,
  .rightTop.big,
  .questions_bottomLeft.big,
  .questions_topRight.big,
  .blueLeft.big,
  .blueRight.big {
    display: none;
  }
  .questions_container {
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
  }
  .footer_container {
    width: 90%;
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer_buttons {
    order: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 0 0;
    gap: 7px;
  }
  .footer_button {
    width: 160px;
    height: 47px;
  }
}

@media (max-width: 420px) {
  .partnership {
    height: 648px;
  }
  .partnership_container {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 64px;
    background-color: var(--lilac);
    height: 676px;
    width: 100%;
    padding: 89px 291px 78px 96px;
    border-radius: 143px 0 188px 0;
  }
  .partnership_content {
    display: flex;
    flex-direction: column;
    max-width: 452px;
  }
  .partnership_content h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 71px;
    margin-bottom: 37px;
  }
  .partnership_content h1 span {
    font-weight: 700;
    color: #0c6fc6;
  }
  .partnership_content h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: #4a5568;
    margin-bottom: 30px;
  }
  .partnership_container {
    position: absolute;
    left: 20px;
    height: 392px;
    width: 356px;
    border-radius: 0 90px 0 111px;
    padding: 17px 52px 17px 25px;
  }
  .partnership_content h1 {
    font-size: 35px;
    line-height: 41px;
    margin-bottom: 15px;
  }
  .partnership_content h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .partnership_image {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 345px;
  }
  .partnership_button {
    position: absolute;
    z-index: 2;
    top: 500px;
    width: 80%;
    font-size: 16px;
    font-weight: 500;
  }
  .smallMen {
    display: block;
    position: absolute;
    left: -15px;
    top: 207px;
    background-image: url("../public/partnership/menSmall.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 374px;
    height: 250px;
  }
  .blueDown {
    z-index: -1;
  }
  .conditions_blocks {
    gap: 20px;
  }
  .conditions_blocks_top,
  .conditions_blocks_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .conditions_blocks_top .block,
  .conditions_blocks_bottom .block {
    width: 326px;
    max-height: 96px;
  }
  .conditions_block_icon {
    top: 8px;
    left: 0;
    width: 64px;
    height: 66px;
  }
  .conditions_block_icon img {
    width: 44px;
    height: 46px;
  }
  .conditions_block_main {
    position: absolute;
    top: 0;
    left: 26px;
    padding: 0 0 0 60px;
    width: 300px;
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .conditions_block_main h4 {
    max-width: 220px;
  }
  hr {
    width: 28px;
  }
  #woman {
    border-radius: 0 100px 0 100px;
  }
  #rl {
    display: none;
  }
  #rls {
    display: block;
  }
  .about_block {
    margin: 280px 0 0 0;
    width: 80%;
  }
  .about_block_point {
    gap: 20px;
  }
  .about_block_point_img {
    width: 44px;
    height: 58px;
  }
  .about_block_point h4 {
    font-size: 16px;
    font-weight: 400;
    max-width: none;
  }
  .about_block_point h4 span {
    font-size: 16px;
  }
  .about_block_line {
    width: 100%;
    margin: 25px 0;
  }
  .block_point_img {
    display: none;
  }
  .block_point_img_small {
    display: block;
  }
  .functional_blocks {
    gap: 6px;
  }
  .functional_block_text {
    width: 217px;
  }
  .start_header h2 {
    font-size: 30px;
    text-align: center;
    max-width: 130px;
    margin-bottom: 34px;
  }
  .start_header h2 span {
    font-weight: 600;
  }
  .start_content_block {
    font-size: 16px;
  }
  .promotion_header h2 {
    max-width: 295px;
    text-align: center;
  }
  .promotion_block {
    width: 327px;
  }
  .promotion_block_img {
    border-radius: 0 53px 0 60px;
    height: 147px;
    margin-bottom: 20px;
  }
  .promotion_block h3,
  .promotion_block h4 {
    font-size: 16px;
  }
  .promotion_button {
    width: 271px;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
  }
  .promotion_svg {
    display: none;
  }
  .footer_container {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .footer_logos {
    order: 4;
    margin: 0;
  }
  .footer_logos h3 {
    max-width: none;
    margin-bottom: 0;
  }
  .footer_laureat {
    display: none;
  }
  .footer_laureat.mini {
    display: block;
  }
  .footer_info {
    order: 2;
    margin: 0 0 0 0;
    gap: 40px;
  }
  .footer_contacts {
    order: 1;
  }
  .footer_contacts_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
