@import url(reset.css);
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  background-color: #fff;
  font-style: normal;
}
html,
body {
  overflow-x: hidden;
}
.page {
  flex-grow: 1;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
h1 {
  color: #fff;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 76px;
}
.section_title {
  font-weight: 700;
  font-size: 52px;
  line-height: 123%;
  margin-bottom: 24px;
  color: #171921;
}
@media (max-width: 991.98px) {
  .section_title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .section_title {
    font-size: 24px;
  }
}
.main_btn {
  border-radius: 60px;
  padding: 8px;
  background-color: #15b2f5;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  justify-content: space-between;
}
.main_btn:hover .main_btn_img img {
  animation: btn-rotate 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes btn-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.main_btn p {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  padding-left: 12px;
}
.main_btn div {
  background-color: #fff;
  border-radius: 50%;
  padding: 14px;
  display: flex;
}

.header {
  background: #142257;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 15px;
  max-width: 1630px;
}
.header_menu_list {
  display: flex;
  align-items: center;
  column-gap: 24px;
  flex-wrap: wrap;
}

.header_menu_link {
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  transition: color 0.5s ease;
}
.header_menu_link:hover {
  color: #15b2f5;
}
.header_schedule {
  color: #fff;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
.header_schedule::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #ff5e5e;
  display: inline-block;
}
.header_menu_icon {
  display: none;
}
.header_burger_menu {
  display: none;
}
@media (max-width: 767.98px) {
  .header .container {
    padding: 12px 15px;
  }
  .header_logo {
    z-index: 5;
  }
  .header_schedule {
    display: none;
  }
  .header_menu {
    display: none;
  }
  .header_burger_menu {
    display: block;
  }
  .header_burger_schedule {
    display: block;
    margin-top: auto;
  }
  .header_content,
  .header_menu_list {
    column-gap: 12px;
  }
  .header_menu_icon {
    display: block;
    flex: 0 0 30px;
    height: 18px;
    position: relative;
    z-index: 55;
  }
  .header_menu_icon span,
  .header_menu_icon::after,
  .header_menu_icon::before {
    content: "";
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease 0s;
  }
  .header_menu_icon::after {
    bottom: 0;
  }
  .header_menu_icon::before {
    top: 0;
  }
  .header_menu_icon span {
    top: calc(50% - 1px);
  }
  .menu-open .header_menu_icon span {
    transform: rotate(45deg);
  }
  .menu-open .header_menu_icon::before {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }
  .menu-open .header_menu_icon::after {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
  }
  .header_burger_menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #1f3584;
    left: -100%;
    top: 0;
    padding: 100px 15px 30px 15px;
    overflow: auto;
    transition: left 0.3s ease 0s;
  }
  .header_burger_menu::before {
    content: "";
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 56px;
    /* z-index: 56; */
    background-color: #142257;
    transition: left 0.3s ease 0s;
  }
  .menu-open .header_burger_menu,
  .menu-open .header_burger_menu::before {
    left: 0;
  }
  .header_burger_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header_burger_menu .header_menu_list {
    flex-direction: column;
    gap: 35px;
    font-size: 24px;
  }
}

.main {
  padding: 80px 15px 160px;
  background-color: #142257;
  display: grid;
  grid-template-columns: 21.8% 1fr 21.8%;
  position: relative;
  min-height: calc(100vh - 80px);
}
.main_img {
  border-radius: 24px;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 412px) {
  .main_img {
    width: 200px; /* Значення для ширини при ширині екрану від 0 до 412px */
  }
}
@media (min-width: 413px) and (max-width: 991.98px) {
  .main_img {
    width: 100%; /* Значення для ширини при ширині екрану від 0 до 412px */
  }
}
.main_img img {
  /* max-width: 100%; */
  object-position: top;
}
.main_body {
  padding: 0 20px;
}
.main_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.main_body_tagline {
  display: flex;
  gap: 16px 54px;
}
.main_body_tagline_text {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #9ea3b5;
  position: relative;
}
.main_body_tagline_text:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #9ea3b5;
}
.main_body_feature {
  display: flex;
  gap: 41px;
}
.main_body_feature_text {
  font-size: 20px;
  line-height: 160%;
  color: #15b2f5;
}
.main_body_feature_text::before {
  content: "✓";
  padding-right: 10px;
}
.main_advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 64px;
}
.main_advantages_card {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main_advantages_card_img {
  border-radius: 50%;
  background-color: #1f3584;
  /* padding: 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
}
.main_advantages_card_title {
  font-weight: 600;
  line-height: 133%;
  color: #fff;
}
.left,
.right {
  position: absolute;
  width: 435px;
  height: 45px;
  background-color: #fff;
  bottom: 0px;
}
.left {
  left: 0px;
}
.left::after,
.right::after {
  content: "";
  position: absolute;
  height: 100%;
  border-bottom: 45px solid #fff;
}
.left::after {
  right: -53px;
  border-right: 54px solid transparent;
}
.right {
  right: 0;
}
.right::after {
  left: -53px;
  border-left: 54px solid transparent;
}
@media (max-width: 1700px) {
  .main {
    padding-bottom: 220px;
  }
  .main_advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1440px) {
  .title {
    font-size: 54px;
  }
  .main {
    display: flex;
  }
  .main_img {
    width: 70%;
  }
}
@media (max-width: 991.98px) {
  .main {
    padding-bottom: 160px;
  }
  .title {
    font-size: 46px;
  }
  .main_img {
    display: none;
  }
  .left,
  .right {
    display: none;
  }
}
@media (max-width: 670px) {
  .title {
    font-size: 36px;
    line-height: 56px;
  }
  .main {
    padding-bottom: 60px;
  }
  .main_body {
    padding: 0;
  }
  .main_content {
    height: auto;
  }
  .main_body_tagline_text,
  .main_body_feature_text {
    font-size: 16px;
  }
  .main_advantages {
    grid-template-columns: auto;
    margin-top: 60px;
    /* display: flex; */
    /* flex-wrap: wrap; */
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .title {
    font-size: 32px;
    line-height: 48px;
  }
  .main_body_tagline {
    flex-direction: column;
    align-items: center;
  }
  .main_body_tagline_text:not(:last-child)::after {
    display: none;
  }
  .main_body_feature {
    flex-direction: column;
    gap: 18px;
  }
  .main_body_btn {
    width: 100%;
  }
  .main_advantages {
    margin-top: 40px;
  }
}
/* ----------------------------------------------------- */
.about {
  padding: 120px 0 60px;
}
.about .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.about_content {
  padding-top: 100px;
}
.about_text {
  line-height: 156%;
}
.about_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 56px 0;
}
.about_items_item {
  background: url(/image/about/needle_icon.svg) 0 10px no-repeat;
  padding-left: 28px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #1f3584;
}
.about_info {
  border-radius: 24px;
  padding: 12px 32px;
  background: #15b2f5;
  line-height: 156%;
  color: #fff;
  max-width: 450px;
}
.about_info a {
  font-weight: 600;
  font-size: 20px;
  text-decoration: underline;
  color: #fff;
  margin-left: 3px;
}

@media (max-width: 991.98px) {
  .about {
    padding: 60px 0 30px;
  }
  .about .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .about_content {
    padding-top: 0;
  }
  .about_image {
    max-width: 500px;
  }
}
@media (max-width: 767.98px) {
  .about {
    padding: 30px 0 30px;
  }
}
@media (max-width: 460px) {
  .about_items {
    grid-template-columns: auto;
    gap: 24px;
    margin: 32px 0;
    font-size: 16px;
  }
  .about_info {
    padding: 12px;
    border-radius: 12px;
  }
}

.services {
  padding: 120px 0 60px;
}
.services_title {
  text-align: center;
}
.services_text {
  text-align: center;
  margin: 0 auto;
  margin-top: 24px;
  max-width: 560px;
}
.services_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px 0;
  margin-top: 60px;
}
.services_cards_card {
  padding: 32px;
}
.services_cards_card_img {
  padding: 12px;
  background: #142257;
  border-radius: 20px;
  display: inline-block;
}
.services_cards_card_title {
  margin: 16px 0 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #171921;
}
.services_call {
  background: #15b2f5;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.services_call_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}
.services_call_text {
  margin: 4px 0 32px;
  text-align: center;
}
.services_call_btn {
  padding: 16px;
  background-color: #fff;
  color: #15b2f5;
  border-radius: 60px;
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}
.services_call_btn:hover {
  transform: scaleX(1.03);
}
@media (max-width: 991.98px) {
  .services {
    padding: 60px 0 30px;
  }
}
@media (max-width: 767.98px) {
  .services {
    padding: 30px 0;
  }
  .services_cards {
    grid-template-columns: auto;
    gap: 32px 0;
    margin-top: 32px;
  }
  .services_cards_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .services_cards_card:last-child {
    padding: 32px 16px;
  }
  .services_cards_card_text {
    text-align: center;
  }
}
/* ------------------------------------ */
.advantages {
  padding: 60px;
}
.advantages_body {
  background-color: #142257;
  padding: 64px 70px;
  border-radius: 24px;
  position: relative;
}
.advantages_body::before,
.advantages_body::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 73%;
  max-height: 645px;
  transform: translate(0, -50%);
  background: url(/image/advantages/decoration.svg) left / auto 100% no-repeat;
}
.advantages_body::before {
  left: -1px;
}
.advantages_body::after {
  right: -1px;
  transform: translate(0, -50%) rotate(180deg);
}
.advantages_header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 120px;
  gap: 60px;
  position: relative;
}
.advantages_header::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(20, 34, 87, 0),
    rgba(79, 102, 183, 1),
    rgba(20, 34, 87, 0) 100%
  );
  bottom: 60px;
  left: 0;
}
.advantages_title {
  margin: 0;
  color: #fff;
  max-width: 600px;
}
.advantages_header_text {
  max-width: 620px;
  color: #9ea3b5;
}
.advantages_items {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  gap: 60px 32px;
}
.advantages_items_item {
  display: flex;
  gap: 32px;
  max-width: 630px;
}
.advantages_items_item_icon {
  flex: 0 0 100px;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 10px;
}
.advantages_items_item_icon img {
  max-width: 100%;
}
.advantages_items_item_info_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 12px;
}
.advantages_items_item_info_text {
  color: #9ea3b5;
}
@media (max-width: 991.98px) {
  .advantages {
    padding: 30px 15px;
  }
  .advantages_body {
    padding: 32px 10px;
  }
  .advantages_header {
    flex-direction: column;
    align-items: normal;
    gap: 24px;
    padding-bottom: 60px;
  }
  .advantages_title {
    max-width: none;
  }
  .advantages_header_text {
    max-width: none;
  }
  .advantages_items {
    grid-template-columns: auto;
    gap: 40px;
  }
  .advantages_items_item {
    max-width: none;
  }
  .advantages_header::after {
    bottom: 30px;
  }
  .advantages_body::before,
  .advantages_body::after {
    display: none;
  }
}
@media (max-width: 560px) {
  .advantages_header {
    text-align: center;
  }
  .advantages_items_item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .advantages_items_item_info {
    text-align: center;
  }
  .advantages_items_item_info_title {
    font-size: 18px;
  }
}
/*  */
.how {
  padding: 120px 0;
}
.how .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.how_img img {
  transform: translate(-10%, 0);
}
.how_title {
  margin-bottom: 60px;
  max-width: 400px;
}
.how_list {
  display: grid;
  gap: 50px;
  counter-reset: item;
}
.how_list_item {
  display: grid;
  grid-template-columns: 230px auto;
  gap: 35px;
}
.how_list_item_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #171921;
  position: relative;
  padding-left: 70px;
}
.how_list_item_title::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 15px;
  font-weight: 700;
  font-size: 52px;
  color: #9ea3b5;
}
.how_list_item_text {
  line-height: 156%;
}
@media (max-width: 991.98px) {
  .how {
    padding: 60px 0;
  }
  .how .container {
    grid-template-columns: auto;
  }
  .how_img {
    text-align: center;
  }
  .how_img img {
    transform: translate(0, 0);
  }
}
@media (max-width: 640px) {
  .how {
    padding: 30px 0;
  }
  .how_title {
    margin: 16px 0 24px;
    max-width: 200px;
  }
  .how_list_item {
    grid-template-columns: auto;
    /* gap: 12px; */
  }
  .how_list_item_title {
    font-size: 20px;
  }
  .how_list_item_title::before {
    top: 10px;
  }
}
.reviews {
  padding: 120px 0;
}
.reviews .container {
  max-width: 1160px;
}
.reviews_title {
  text-align: center;
  margin-bottom: 90px;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 80px;
  padding-bottom: 80px;
}
.slide_text {
  margin: 20px 0 40px;
  max-width: 730px;
  font-size: 20px;
  line-height: 160%;
  position: relative;
  padding-top: 40px;
}
.swiper-slide .slide_text:not(:first-of-type) {
  padding-top: 0;
  margin-top: 0;
}
.swiper-slide .slide_text:first-of-type::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(203, 207, 219, 0),
    rgba(203, 207, 219, 1),
    rgba(203, 207, 219, 0) 100%
  );
  top: 0;
  left: 0;
}
.slide_user {
  display: flex;
  gap: 32px;
  text-align: start;
}
.slide_user_name {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #171921;
  margin-bottom: 8px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 30;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: #15b2f5;
  transition: background-color 0.5s ease;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  background-color: #e3e6f0;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  border-radius: 24px;
  width: 40px;
  transition: width 0.5s ease;
  background-color: #15b2f5;
}
@media (max-width: 991.98px) {
  .reviews {
    padding: 60px 0;
  }
  .reviews_title {
    margin-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .reviews {
    padding: 30px 0;
  }
  .reviews_title {
    margin-bottom: 32px;
  }
  .slide_user_name {
    font-size: 20px;
  }
  .swiper-slide {
    padding: 0 0 100px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    bottom: 0;
    top: unset;
  }
  .swiper-pagination {
    width: 100%;
    padding: 0 80px 3px;
    overflow: hidden;
  }
}
/* ---------------------------- */
.blog {
  padding: 80px 0;
}
.blog .container {
  display: grid;
}
.blog_title {
  text-align: center;
}
.blog_text {
  max-width: 700px;
  text-align: center;
  margin: 24px auto 60px;
}
.blog_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 32px 48px;
}
.blog_item_img {
  aspect-ratio: 444 / 300;
  border-radius: 24px;
  overflow: hidden;
}
.blog_item_img img {
  transition: transform 0.5s ease;
}
.blog_item:hover .blog_item_img img {
  transform: scale(1.05);
}
.blog_item_date {
  margin-top: 24px;
}
.blog_item_title {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  margin: 16px 0;
}
.blog_item_title:hover {
  text-decoration: underline;
}
.blog_item_title a {
  color: #171921;
}
.blog_item_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 24px;
}
.blog_item_tags-tag {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  padding: 8px 16px;
  color: #545971;
  border-radius: 24px;
  background-color: #f3f5f9;
  transition: all 0.5s ease;
}
.blog_item_tags-tag:hover {
  background-color: #15b2f5;
  color: #fff;
}
.blog_view-more {
  margin-top: 56px;
  justify-self: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #15b2f5;
  padding-right: 24px;
  background: url(/image/blog/more.svg) right no-repeat;
}
.blog_view-more:hover {
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  .blog {
    padding: 60px 0;
  }
  .blog_item_title {
    font-size: 26px;
  }
}
@media (max-width: 640px) {
  .blog {
    padding: 48px 0;
  }
  .blog_text {
    margin: 16px auto 32px;
  }
  .blog_items {
    grid-template-columns: auto;
  }
  .blog_item_date {
    margin-top: 16px;
  }
  .blog_item_title {
    font-size: 20px;
  }
  .blog_view-more {
    margin-top: 32px;
    font-size: 18px;
  }
}

/* ----------------------------------------------- */
.questions {
  padding: 190px 0 230px;
}
.questions .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
.questions_header {
  max-width: 470px;
}
.questions_text {
  margin-top: 24px;
  font-size: 20px;
  line-height: 160%;
  color: #171921;
}
.questions_text a {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #15b2f5;
}
.questions_spollers {
  display: grid;
  gap: 12px;
  width: 100%;
}
.questions_spollers_item {
  padding: 24px 32px;
  transition: background-color 0.5s ease;
  border-radius: 12px;
}
.questions_spollers_item[open] {
  background-color: #f3f5f9;
}
.questions_spollers_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  margin-bottom: 16px;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.questions_spollers_title:hover {
  cursor: pointer;
}
.questions_spollers_title::after {
  content: "";
  background: url(/image/questions/marker.svg) no-repeat;
  background-size: cover;
  position: absolute;
  width: 16px;
  height: 8px;
  top: 8px;
  right: 0;
  transform: rotate(180deg);
}
.questions_spollers_body {
  line-height: 150%;
  color: #737373;
}
.questions_spollers_item[open] .questions_spollers_title::after {
  transform: rotate(360deg);
}
@media (max-width: 991.98px) {
  .questions {
    padding: 60px 0;
  }
  .questions .container {
    flex-direction: column;
    gap: 32px;
  }
  .questions_header {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .questions {
    padding: 32px 0;
  }
  .questions_header {
    text-align: center;
    width: 100%;
  }
  .questions_text,
  .questions_text a,
  .questions_spollers_title {
    font-size: 18px;
  }
  .questions_spollers_item {
    padding: 20px 24px;
  }
}
/* ------------------------------------- */
.talk {
  background-color: #142257;
  position: relative;
}
.talk .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.talk_content {
  padding: 165px 0 105px;
  position: relative;
  max-width: 670px;
}
.talk_content::before {
  content: "";
  position: absolute;
  width: 100%;
  background: url(/image/talk/decor.jpg) 0 0 / 83% no-repeat;
  left: 0;
  top: 0;
  aspect-ratio: 581 / 44;
}
.talk_title {
  color: #fff;
}
.talk_img {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: 0;
  max-width: 50%;
  max-height: 100%;
}
@media (max-width: 991.98px) {
  .talk .container {
    grid-template-columns: auto;
    justify-items: center;
  }
  .talk_content {
    max-width: none;
    padding: 66px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .talk_img {
    position: unset;
    max-width: none;
    transform: scale(1.1, 1);
  }
}
@media (max-width: 640px) {
  .talk_content::before {
    background-position: center 0;
    background-size: 100%;
  }
}
/* ------------------Footer------------------------ */
.footer {
  padding-top: 52px;
  background-color: #15b2f5;
}
.footer_subscribe {
  background: #4ac9ff;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.subscribe_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 12px;
}
.subscribe_text {
  line-height: 156%;
  color: #fff;
}
.footer_subscribe_form {
  border-radius: 60px;
  padding: 12px;
  background-color: #fff;
  display: flex;
  gap: 40px;
  /* min-width: 470px; */
}
.subscribe_input {
  padding: 12px 16px;
  color: #000;
}
.subscribe_input::placeholder {
  line-height: 156%;
  color: #9ea3b5;
}
.subscribe_btn {
  border-radius: 60px;
  padding: 10px 24px;
  background-color: #15b2f5;
  font-weight: 700;
  line-height: 133%;
  text-align: center;
  color: #fff;
}
.footer_body {
  display: flex;
  justify-content: space-between;
  padding: 54px 0;
  gap: 40px;
}
.footer_body_left {
  max-width: 460px;
}
.footer_body_left_text {
  line-height: 156%;
  margin: 32px 0;
  color: #fff;
}
.footer_body_left_social {
  display: flex;
  gap: 24px;
}
.social_item {
  transition: transform 0.5s ease;
}
.social_item:hover {
  transform: scale(1.2);
}
.footer_menu_spollers {
  display: flex;
  gap: 24px 100px;
}
.footer_menu_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  position: relative;
  list-style: none;
  padding-right: 28px;
}
.footer_menu_title:hover {
  cursor: pointer;
}
.footer_menu_title::after {
  content: "";
  background: url(/image/arrow.png) no-repeat;
  background-size: cover;
  background-position: center right;
  position: absolute;
  width: 32px;
  height: 100%;
}
.questions_spollers_body {
  line-height: 150%;
  color: #737373;
}
.footer_menu_block[open] .footer_menu_title::after {
  transform: rotate(180deg);
}
.footer_menu_list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.footer_menu_link {
  font-size: 20px;
  line-height: 160%;
  color: #fff;
}
.footer_copy {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 156%;
  color: #fff;
}
@media (max-width: 991.98px) {
  .footer_subscribe {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 640px) {
  .footer {
    padding-top: 36px;
  }
  .footer_body {
    flex-direction: column;
    padding: 30px 0;
  }
  .footer_subscribe {
    padding: 24px 16px;
  }
  .footer_subscribe_form {
    min-width: none;
    gap: 12px;
  }
  .subscribe_input {
    width: 100%;
    padding: 0;
  }
  .footer_body_left {
    max-width: none;
  }
  .footer_copy {
    padding: 16px 0;
  }
  .footer_menu_spollers {
    gap: 24px 64px;
  }
}
