html, body {
  padding: 0px;
  margin: 0px;
}
body {
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  --page-max-width: 1140px;
  --page-padding: 0px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}
pre {
  white-space-collapse: unset;
  text-wrap: wrap;
}
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 123px;
  padding: 28px 0px;
  box-sizing: border-box;
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: #ffffff;
  z-index: 900;
}
.header_wrapper_block {
  width: 100%;
  height: 100%;
  max-width: var(--page-max-width);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--page-padding);
  box-sizing: border-box;
}
.header_logo_wrapper {
  display: block;
  width: auto;
  height: 100%;
}
.header_logo {
  width: auto;
  height: 100%;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.header_right_half {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header_contacts_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.header_contacts_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  text-decoration: none;
}
.header_contacts_item img {
  width: 25px;
  height: 25px;
}
.header_menu_wrapper {
  display: flex;
  align-items: center;
}
.header_menu_wrapper nav {
  display: flex;
  align-items: center;
}
.header_menu_item {
  display: flex;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #111111;
  cursor: pointer;
}
.header_menu_item.active {
  color: #478ac9;
}
.header_menu_item:hover {
  color: #72683f;
}
.header_menu_item.active:hover {
  color: #478ac9;
}
.header_lang_btn {
  display: flex;
  padding: 10px 20px;
  text-decoration: none;
  color: #000000;
}
.mob_burger_menu {
  display: none;
  position: fixed;
  top: 28px;
  right: 25px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1005;
  transition: 0.5s;
  transition-delay: 0.05s;
}
.mb_line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #111111;
  transform: translate(-50%, -50%);
  transition: 0.25s;
  transition-delay: 0.05s;
}
.mb_line.line_1 {
  top: 0px;
}
.mb_line.line_2 {
  top: 50%;
}
.mb_line.line_3 {
  top: 100%;
}
.mob_burger_menu.active {
  transition-delay: 0s;
  right: calc(100% - 300px + 20px);
}
.mob_burger_menu.active .mb_line.line_1 {
  top: 50%;
  transition-delay: 0s;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #DE2929;
}
.mob_burger_menu.active .mb_line.line_2 {
  width: 0px;
  transition-delay: 0s;
}
.mob_burger_menu.active .mb_line.line_3 {
  top: 50%;
  transition-delay: 0s;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #DE2929;
}
.main_menu_wrapper_mob {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 120%;
  max-height: 100%;
  overflow: hidden;
  display: none;
  transition: 0.5s;
  padding-bottom: 20%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
}
.main_menu_wrapper_mob.active {
  visibility: visible;
  opacity: 1;
}
.main_menu_wrapper_mob_placeholder {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.5);
  visibility: hidden;
  opacity: 0;
}
.main_menu_wrapper_mob.active .main_menu_wrapper_mob_placeholder {
  visibility: visible;
  opacity: 1;
}
.main_menu_mob_container {
  padding-top: 80px;
  width: 300px;
  background-color: #ffffff;
  transform: translate(-100%, 0px);
  transition: 0.5s;
  z-index: 2;
}
.main_menu_wrapper_mob.active .main_menu_mob_container {
  transform: translate(0px, 0px);
}
.first_page_block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 123px);
  max-height: 680px;
  position: relative;
  padding-top: 123px;
}
.main_slider_carousel {
  height: 100%;
}
.main_slider_carousel .owl-stage-outer {
  height: 100%;
}
.main_slider_carousel .owl-stage {
  display: flex;
  height: 100%;
}
.main_slider_carousel .owl-nav {
  width: 100%;
  top: 50%;
  transform: translate(0px, -50%);
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
  box-sizing: border-box;
}
.main_slider_carousel .owl-nav .owl-prev,
.main_slider_carousel .owl-nav .owl-next {
  width: 50px;
  height: 150px;
  position: relative;
  opacity: 0.7;
  transition: 0.25s;
}
.main_slider_carousel .owl-nav .owl-prev:hover,
.main_slider_carousel .owl-nav .owl-next:hover {
  opacity: 1;
}
.main_slider_carousel .owl-nav .owl-next {
  transform: scale(-1, 1);
}
.main_slider_carousel .owl-nav .owl-prev::before,
.main_slider_carousel .owl-nav .owl-next::before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 50%;
  width: 3px;
  height: 75px;
  transform: translate(15px, 2px) rotate(15deg);
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 2px 2px 7px #000;
}
.main_slider_carousel .owl-nav .owl-prev::after,
.main_slider_carousel .owl-nav .owl-next::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: 3px;
  height: 75px;
  transform: translate(15px, -2px) rotate(-15deg);
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 2px 2px 7px #000;
}
.main_slider_item {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.main_slider_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.main_slider_content_wrapper {
  width: 100%;
  max-width: 933px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}
.main_slider_content_block {
  width: 100%;
  max-width: 465px;
  min-height: 395px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 30px;
  background-color: #77aad9;
  color: #ffffff;
}
.ms_content_block_title {
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 64px 0 0;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}
.ms_content_block_text {

}
.ms_content_block_text p {
  margin: 32px 0px 20px 0px;
  font-size: 1rem;
  line-height: 1.6;
}
.default_btn {
  display: flex;
  border: 2px solid #ffffff;
  letter-spacing: 3px;
  background-image: none;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 47px;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s;
  text-decoration: none;
  color: #ffffff;
}
.default_btn:hover {
  background-color: #ffffff;
  color: #478ac9;
}
.default_btn.blue {
  color: #ffffff;
  background-color: #77aad9;
  border: 0px;
}
.default_btn.blue:hover {
  color: #111111;
  background-color: #ccd3db;
}
.secondpage_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 123px;
}
.secondpage_content_container {
  /* display: flex;
  flex-direction: column; */
  width: 100%;
  max-width: var(--page-max-width);
  padding: var(--page-padding);
  box-sizing: border-box;
  padding-bottom: 100px;
  padding-top: 50px;
  min-height: calc(100vh - 300px - 123px - 233px);
}
.secondpage_content_container a {
  text-decoration: none;
  color: #478ac9;
}
.secondpage_content_container a::after {
  display: block;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  padding-top: 100%;
}
.secondpage_content_container h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0px;
  margin-bottom: 30px;
}
.secondpage_content_container h3 {
  margin: 0;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.2;
  margin: 0px;
  margin-bottom: 15px;
}
.secondpage_content_container strong {
  color: #000000;
  font-weight: 700;
}
.secondpage_content_container p {
  color: #111111;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0px;
  margin-bottom: 15px;
}
.secondpage_content_container ul {
  margin: 0px;
  margin-bottom: 15px;
}
.secondpage_content_container li,
.secondpage_content_container ol {
  margin: 0px;
  margin-bottom: 10px;
  color: #111111;
  font-size: 1.125rem;
  line-height: 1.6;
}
.secondpage_left_img {
  width: 100%;
  max-width: 300px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.secondpage_head_wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondpage_bg_placeholder {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  z-index: -1;
}
.secondpage_bg_block {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/images/main_slider/first_page_bloc_bg.jpg);
  z-index: -2;
}
.page_content_wrapper {
  display: flex;
  justify-content: center;
}
.page_content_wrapper a {
  text-decoration: none;
  color: #478ac9;
}
.page_content_wrapper.page_form_second {
  background-color: #f5f5f5;
}
.page_content_wrapper.page_form_second .form_container_wrapper {
  margin-top: 0px;
}
.page_content_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--page-max-width);
  padding: var(--page-padding);
  box-sizing: border-box;
}
.page_content_container.second {
  align-items: center;
}
h2.h2_small_title {
  font-size: 3rem;
  margin: 60px auto 0;
  font-weight: 400;
  line-height: 1.1;
}
h2.h2_big_title {
  font-size: 3.75rem;
  margin: 42px 0 0;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}
h2.secondpage_title {
  font-size: 3.75rem;
  margin: 42px 0 0;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #ffffff;
}
h3.h3_middle_title {
  margin: 0;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.2;
}
h4 {
  margin: 0px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
}
.page_second_block_text p,
.page_second_block_text pre {
  color: #111111;
  width: 100%;
  max-width: 639px;
  font-size: 18px;
  margin: 30px auto 0;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  filter: blur(4px);
}
.page_second_block_text p.fadein,
.page_second_block_text pre.fadein {
  animation: animate_text_fadein 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes animate_text_fadein {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.page_second_block_cards_wrapper {
  display: grid;
  margin-top: 34px;
  margin-bottom: 60px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 20px;
}
.page_second_block_card_item {
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translate(-50%, 0px);
  opacity: 0.3;
  transition: 0.5s;
}
.page_second_block_card_item.animate {
  transform: translate(0px, 0px);
  opacity: 1;
}
.page_second_block_card_item.link {
  text-decoration: none;
  cursor: pointer;
}
.page_second_block_card_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: center;
}
.page_second_block_card_cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px 60px 30px;
  color: #ffffff;
}
.page_second_block_card_title {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 48px 0 0;
  text-align: center;
}
.page_second_block_card_text {
  animation-duration: 1000ms;
  transition-duration: 0.5s;
  margin-top: 45px;
}
.page_second_block_card_text:hover {
  transform: scale(1.1);
}
.page_second_block_card_text p,
.page_second_block_card_text pre {
  font-size: 1.25rem;
  font-style: italic;
  margin: 15px 0 0 30px;
  line-height: 1.6;
}
.page_content_wrapper.third {
  background-color: #F2F2F2;
}
.page_third_block_content_wrapper {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  margin-bottom: 45px;
}
.page_third_block_content_left_column {
  padding: 30px;
  box-sizing: border-box;
  flex: 0 0 43.33333333%;
  max-width: 43.33333333%;
  opacity: 0;
  filter: blur(4px);
}
.page_third_block_content_left_column.fadein {
  animation: animate_text_fadein 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.page_third_block_content_left_column h2.h2_big_title {
  text-align: left;
}
.page_third_block_content_right_column {
  padding: 30px;
  box-sizing: border-box;
}
.page_third_block_text {
  margin-top: 66px;
}
.page_third_block_text p,
.page_third_block_text pre {
  font-size: 18px;
  line-height: 1.6;
  margin: 0px;
  margin-bottom: 15px;
  opacity: 0;
  filter: blur(4px);
}
.page_third_block_text p.fadein,
.page_third_block_text pre.fadein {
  animation: animate_text_fadein 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.page_third_block_subtitle {
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #111111;
}
.page_third_block_comment {
  margin: 66px 0 0 138px;
  font-style: italic;
  padding-left: 20px;
  padding: 10px 20px;
  border-left: 4px solid #478ac9;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
}
.page_content_wrapper.four {
  position: relative;
  background-color: #f2f2f2;
  padding-bottom: 100px;
}
.page_four_bg_block {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: calc(50% + 70px);
  background-color: #77aad9;
}
.page_four_cont_items_wrapper {
  position: relative;
}
.page_four_cont_item {
  position: relative;
  box-sizing: border-box;
}
/* .page_four_cont_item {
  position: relative;
  opacity: 0;
  visibility: hidden;
  position: absolute;
} */
/* .page_four_cont_item.active {
  position: static;
  opacity: 1;
  visibility: visible;
} */
.page_four_block_bg {
  object-position: 23.33% 41.98%;
  background-position: 100% 41.98%;
  object-fit: cover;
  background-size: cover;
  position: absolute;
  z-index: -1;
  width: calc(100% - 200px);
  height: 100%;
}
.page_four_content_wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}
.page_four_content_block {
  width: 548px;
  min-height: 468px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #111111;
  background-color: #ffffff;
  box-sizing: border-box;
}
.page_four_text {

}
.page_four_text p,
.page_four_text pre {
  margin: 25px 1px 23px;
  color: #111111;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}
.page_content_container.five h2.h2_big_title {
  margin: 60px auto 0;
}
.page_five_block_text {
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  width: 100%;
  max-width: 670px;
  margin: 11px auto 0;
  color: #111111;
  text-align: center;
}
.page_five_grid_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  grid-gap: 10px;
  margin: 62px 0 60px;
}
.page_five_grid_item {
  display: flex;
  align-items: flex-start;
  padding: 21px 30px;
  padding-bottom: 6px;
  box-sizing: border-box;
  opacity: 0;
  filter: blur(4px);
}
.page_five_grid_item.fadein {
  animation: animate_text_fadein 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.page_five_grid_item.link {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
.page_five_grid_item_block {
  padding-left: 50px;
  box-sizing: border-box;
}
.page_five_grid_item_block h4 {
  color: #000000;
}
.page_five_grid_item_icon {
  height: 50px;
  width: 50px;
  min-width: 50px;
  background-image: none;
  background-color: #4d4d4d;
  border-radius: 50%;
  margin: 14px 0px 0px 0px;
  padding: 14px;
  box-sizing: border-box;
  position: relative;
}
.page_five_grid_item_icon::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.page_five_grid_item:hover .page_five_grid_item_icon {
  animation: 1s page_five_item_icon_hover ease-in-out;
}
@keyframes page_five_item_icon_hover {
  0% { }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.page_five_grid_item:hover .page_five_grid_item_block {
  animation: 1s page_five_item_text_hover ease-in-out;
}
@keyframes page_five_item_text_hover {
  0% { }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.page_five_grid_item:hover .page_five_grid_item_icon::after {
  animation-delay: 0.5s;
  animation: 1s page_five_item_circle_hover ease-in-out;
}
@keyframes page_five_item_circle_hover {
  0% { }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.page_five_grid_item_icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.page_five_grid_item_text {
  margin: 20px 44px 0 0px;
}
.page_five_grid_item_text p,
.page_five_grid_item_text pre {
  font-style: normal;
  text-shadow: 2px 0 0 rgba(0,0,0,0);
  color: #111111;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0px;
  margin-bottom: 15px;
}
.page_five_small_content_wrapper {
  display: flex;
  justify-content: center;
}
.page_five_small_content {
  width: 100%;
  max-width: 829px;
}
.page_five_values_block {
  display: flex;
  align-items: flex-start;
}
.page_five_values_comment {
  margin: 40px 0px 0 3px;
  font-style: italic;
  padding-left: 20px;
  padding: 10px 20px;
  border-left: 4px solid #478ac9;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap;
  position: sticky;
  top: 150px;
}
.page_five_values_img {
  width: 100%;
  margin-left: 60px;
  box-sizing: border-box;
  opacity: 0;
  transition: 1s;
}
.page_five_values_img.fadein {
  opacity: 1;
}
.page_five_values_img img {
  aspect-ratio: 52/40.5;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-size: cover;
  background-position: 50% 50%;
}
.page_five_small_content_comment {
  margin: 40px 0px 0 3px;
  font-style: italic;
  padding-left: 20px;
  padding: 10px 20px;
  border-left: 4px solid #478ac9;
  color: #111111;
  font-size: 16px;
  line-height: 1.6;
}
.page_five_small_content_grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-column-gap: 50px;
}
.page_five_small_content_item {
  margin-top: 82px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  filter: blur(4px);
  transition: 0.5s;
}
.page_five_small_content_item.fadein {
  animation: animate_text_fadein 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.page_five_small_content_item h4 {
  color: #000000;
}
.page_five_small_content_item.link {
  text-decoration: none;
  cursor: pointer;
}
.page_five_small_content_item:hover {
  transform: scale(1.05);
}
.page_five_small_content_item.comment:hover {
  transform: none;
}
.page_five_small_content_item.comment {
  justify-content: flex-end;
  align-items: flex-end;
}
.page_five_small_content_item_title {
  font-size: 2.25rem;
  margin: 0 auto 0 10px;
}
.page_five_small_content_item_text {
  margin: 32px 0 0;
}
.page_five_small_content_item_text p,
.page_five_small_content_item_text pre {
  font-size: 1rem;
  line-height: 1.8;
  color: #111111;
  margin-bottom: 15px;
  margin-top: 0px;
}
.form_container_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 147px;
  margin-bottom: 100px;
}
.form_img {
  width: 100%;
  max-width: 948px;
  aspect-ratio: 94.8/49.9;
  background-size: cover;
  object-fit: cover;
}
.form_content_wrapper {
  color: #111111;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #ffffff;
  width: 100%;
  max-width: 583px;
  box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.4);
  height: auto;
  margin: -25px auto 60px;
}
.form_content_wrapper h2.h2_small_title {
  text-align: center;
}
.form_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0px auto 0;
  padding: 7px 40px 30px 40px;
  box-sizing: border-box;
  font-size: 1rem;
}
.form_wrapper .form_error {
  margin-bottom: 28px;
  text-align: center;
}
.form_wrapper h3.visible_name {
  font-size: 3rem;
  margin: 60px auto 0;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 36px;
  font-family: 'PT Sans', sans-serif;
}
.form_wrapper .form_error {
  min-height: 52px;
}
.form_wrapper .form_privacy_policy {
  margin-top: 0px;
}
.form_wrapper .form_privacy_policy a {
  text-decoration: none;
  color: #478ac9;
}
.form_wrapper .form_privacy_policy a:hover {
  text-decoration: underline;
}
.form_wrapper .form_privacy_policy .star {
  color: red;
}
.form_wrapper .form_btn {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.form_wrapper .send_btn {
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  border: 2px solid #666666;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  padding: 10px 30px;
  background-color: #ffffff;
  border-radius: 0px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
}
.form_input {
  font-size: 1rem;
  color: #111111;
  background-color: #ffffff;
  width: 100%;
  padding: 10px 12px;
  border: 0px;
  border-bottom: 2px solid #000000;
  margin-bottom: 28px;
  box-sizing: border-box;
}
.form_input:focus {
  outline: none;
}
textarea.form_input {
  height: 124px;
  resize: vertical;
}

footer {
  display: flex;
  justify-content: center;
  background-image: url(/images/footer_bg2.jpg);
  background-position: center;
  object-fit: cover;
  background-size: cover;
}
.footer_wrapper {
  width: 100%;
  max-width: var(--page-max-width);
  margin-top: 57px;
  margin-bottom: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--page-padding);
}
.footer_phone {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}
.footer_phone svg {
  width: 16px;
  height: auto;
  fill: #ffffff;
  margin-right: 5px;
}
.footer_mail {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}
.footer_mail svg {
  width: 16px;
  height: auto;
  fill: rgb(70, 138, 201);
  margin-right: 5px;
}
.footer_address {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}
.footer_address svg {
  width: 12px;
  height: auto;
  fill: #ffffff;
  margin-left: 2px;
  margin-right: 7px;
}
.footer_coopyright {
  margin-top: 42px;
  margin-bottom: 0px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  padding-right: 40px;
}
.footer_logo {
  width: 473px;
  height: 81px;
}




.publications_cards_wrapper {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px 20px;
}
.publication_item {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
}
.publication_item_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: center;
}
.secondpage_content_container .publication_item_cont {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px;
  color: #ffffff;
}
.secondpage_content_container .publication_item_title {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0px;
}
.secondpage_content_container .publication_item_text {
  margin-top: 60px;
  margin-left: 30px;
  /* height: 284px; */
  overflow: hidden;
  animation-duration: 1000ms;
  transition-duration: 0.5s;
  transition: 1s;
  transform: translateX(0px) translateY(0px) scale(1) rotate(0deg);
  -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 80%);
}
.secondpage_content_container .publication_item_text:hover {
  -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%);
  transform: scale(1.1) translateX(0px) translateY(0px) !important;
}
.secondpage_content_container .publication_item_text p {
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin: 0px;
  margin-bottom: 15px;
}


.gallerycont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.gallerycont a img {
  width: 100%;
  height: auto;
}
.gotop_arrow_block {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* background-color: #EF5150; */
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.gotop_arrow_block img {
  width: 50px;
  height: 50px;
}
.gotop_arrow_block.visible {
  opacity: 1;
  visibility: visible;
}
.gotop_arrow {
  width: 30px;
  height: 12px;
  position: relative;
  margin-top: 8px;
}
.gotop_arrow::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  width: 12px;
  height: 12px;
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  transform: translate(-50%, 0px) rotate(45deg);
}
.gotop_arrow_label {
  margin-bottom: 0px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 700;
}
