@import url(https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap);
@font-face {
  font-family: 'Good Vibes Pro';
  src: url(assets/fonts/GoodVibesCyr.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Source Serif Pro 900';
  src: url(assets/fonts/SourceSerifPro-Black.ttf);
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Source Serif Pro 700';
  src: url(assets/fonts/SourceSerifPro-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Source Serif Pro 600';
  src: url(assets/fonts/SourceSerifPro-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Source Serif Pro 400';
  src: url(assets/fonts/SourceSerifPro-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

* {
  font-family: Rubik, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #305772;
  border-radius: 40px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-horizontal {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #305772;
  border-radius: 40px;
}

::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0);
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}
main {
  flex: 1 0 auto;
}

.container {
  max-width: 1720px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}

@media (max-width: 1752px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 10px;
  }
}

h1 {
  color: #0e212e;
  font-family: 'Source Serif Pro 600';
  font-size: 64px;
  font-weight: 600;
  line-height: 100%;
}

h2 {
  color: #0e212e;
  font-family: 'Source Serif Pro 600';
  font-size: 44px;
  font-weight: 600;
  line-height: 110%;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  h1 {
    text-align: center;
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
    text-align: center;
  }
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 84px;
  transition: all 0.3s ease-in-out;
	  /* *ny* */
  background: #fff;
}

.header.scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header__logo {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__logo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.header__logo img {
  height: 40px;
  width: 40px;
}

.header__logo span {
  color: #305772;
  font-family: 'Source Serif Pro 600';
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

.header__menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style-type: none;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__contact_link,
.header__menu a {
  border-radius: 100px;
  height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #305772;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header__hamburger {
  display: none;
}

.header__contact_link {
  position: relative;
}

.header__contact_link a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.header__contact_link img {
  display: none;
}

@media (min-width: 1024px) {
  .header__contact_link:hover,
  .header__menu a:hover {
    background: #4398a9;
    color: #fff;
  }
}

@media (max-width: 1400px) {
  .header__menu ul {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .header {
    height: 60px;
  }

  .header__menu {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__hamburger {
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .header__hamburger span {
    width: 28px;
    height: 28px;
    position: absolute;
    transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
  }

  .header__hamburger span::before {
    content: '';
    width: 28px;
    height: 2px;
    background-color: #305772;
    position: absolute;
    left: 0;
    border-radius: 30px;
    transition: transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
  }

  .header__hamburger span:nth-child(1)::before {
    top: 0.625rem;
    transform: translateY(-3px);
  }

  .header__hamburger span:nth-child(2)::before {
    bottom: 0.625rem;
    transform: translateY(3px);
  }

  .header__hamburger.active span:nth-child(1),
  .header__hamburger.active span:nth-child(2) {
    transition: transform 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    width: 22px;
  }

  .header__hamburger.active span:nth-child(1)::before,
  .header__hamburger.active span:nth-child(2)::before {
    transform: none;
    transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
    width: 22px;
  }

  .header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(3px);
  }

  .header__hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-3px);
  }

  .header__contact_link,
  .header__menu a {
    height: 34px;
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .header__contact_link span {
    display: none;
  }

  .header__contact_link img {
    display: block;
    height: 24px;
    width: 24px;
  }

  .header__contact_link {
    height: 24px;
    width: 24px;
  }

  .header__contact {
    gap: 40px;
  }

  .header__logo span {
    font-size: 16px;
  }
}

.banner {
  height: 95vh;
  position: relative;
  padding: 84px 0 0;
}

.banner_empty {
  height: 100%;
}

.banner_in {
  height: 95vh;
  background-image: url(assets/img/bg_1.jpg);
  background-position: 43%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f6f7f9;
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner__bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 43%;
}

.banner__wrapper {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.banner__descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 570px;
}

.banner__text {
  color: #687479;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.banner__arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.banner__arrow span {
  color: #687479;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.banner__arrow_svg {
  height: 39px;
  position: relative;
  width: 100%;
}

.banner__arrow_svg svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(80%);
  }
}
.banner_sleder,
.banner_sleder .slick-list,
.banner_sleder .slick-track,
.banner_slide {
  height: 100%;
}
.banner_slide {
  position: relative;
}

.banner__bg-ny,
.banner__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner__bg-ny img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__mask {
  background: linear-gradient(270deg, rgba(10, 53, 65, 0) 0%, #0a3541 90.73%);
}

.banner__text-ny {
  color: #fff;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fff;
  font-family: 'Good Vibes Pro';
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 1280px) {
  .banner__bg {
    right: 0;
    left: auto;
  }

  .banner_in {
    background-position: 49%;
  }
}

@media (max-width: 1199px) {
  .banner {
    padding: 60px 0 0;
  }
  .banner,
  .banner_in {
    height: 500px;
  }

  .banner__bg {
    height: 400px;
    width: 404px;
  }

  .banner__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .banner__text {
    font-size: 18px;
  }

  .banner__descr {
    gap: 10px;
    max-width: 364px;
	  height: 100%;
	  justify-content:center;
  }

  .banner__arrow {
    bottom: 10px;
  }
	
	.banner__text-ny {
		font-size: 50px;
		z-index: 10;
	}
}

@media (max-width: 1023px) {
  .banner_in {
    background-position: 35%;
  }
}

@media (max-width: 767px) {
  .banner,
  .banner_in {
    height: 562px;
  }

  .banner_in {
    display: flex;
    flex-direction: column-reverse;
    padding: 60px 0 0;
    background-image: none;
  }

  .banner__bg {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    transform: none;
    height: 300px;
    width: 100%;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(assets/img/bg_1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .banner__descr,
  .banner__wrapper {
    width: 100%;
    align-items: flex-start;
    max-width: 360px;
    position: static;
    justify-self: center;
	  margin: 0 auto;
  }

  .banner__text {
    font-size: 16px;
  }

  .banner__arrow span {
    font-size: 14px;
  }
	.banner__descr {
		justify-content: initial;
	}

  .banner__arrow_svg {
    height: 25px;
  }

  .banner__arrow_svg svg {
    height: 16px;
    width: 16px;
  }

  .banner__arrow {
    bottom: 5px;
    gap: 0;
  }
.banner__text-ny {
	font-size: 42px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
	}
}

.pluses {
  padding: 100px 0;
  background: #fff;
}

.pluses__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pluses__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pluses__card {
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid #4398a9;
  background: #fff;
  box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12),
    0 10px 32px -4px rgba(24, 39, 75, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pluses__card_img {
  background-image: url(assets/img/Ellipse.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pluses__card_img img {
  height: 40px;
  width: 40px;
}

.pluses__card::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transform: scale(0);
  z-index: 0;
  background-color: #eefcff;
  transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pluses__card_descr {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pluses__card_title {
  color: #0e212e;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.pluses__card_text {
  color: #687479;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (min-width: 1024px) {
  .pluses__card:hover::before {
    transform: scale(25);
  }
}

@media (max-width: 1400px) {
  .pluses__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1199px) {
  .pluses {
    padding: 60px 0;
  }

  .pluses__wrapper {
    gap: 30px;
  }

  .pluses__card {
    padding: 30px;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .pluses {
    padding: 40px 0;
  }

  .pluses__wrapper {
    gap: 20px;
  }

  .pluses__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pluses__card {
    padding: 20px;
  }

  .pluses__card_text,
  .pluses__card_title {
    font-size: 14px;
  }
}

.versus {
  background: #f9f9f9;
  padding: 100px 0;
}

.versus__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.versus__cards {
  display: grid;
  grid-template-columns: 1fr 127px 1fr;
  gap: 40px;
  align-items: center;
}

.versus__card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12),
    0 10px 32px -4px rgba(24, 39, 75, 0.1);
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
	height: 100%;
}

.versus__card_img {
  height: 250px;
  width: 100%;
}

.versus__card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.versus__card_descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.versus__card_title {
  color: #305772;
  font-family: 'Source Serif Pro 700';
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

.versus__card_items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.versus__card_item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
}

.versus__card_item_icon {
  width: 100%;
  height: 64px;
}

.versus__card_item_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.versus__card_item_descr {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.versus__card_item_title {
  color: #0e212e;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

.versus__card_item_text {
  color: #687479;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .versus {
    padding: 60px 0;
  }

  .versus__wrapper {
    gap: 30px;
  }

  .versus__cards {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
  }

  .versus__card {
    padding: 30px;
    border-radius: 10px;
    gap: 30px;
  }

  .versus__card_title {
    font-size: 18px;
  }

  .versus__card_item {
    gap: 10px;
  }

  .versus__card_item_title {
    font-size: 18px;
  }

  .versus__icon {
    width: 82px;
    height: 90px;
    margin: 0 auto;
  }

  .versus__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .versus {
    padding: 40px 0;
  }

  .versus__wrapper {
    gap: 20px;
  }

  .versus__card {
    padding: 20px;
    gap: 20px;
  }

  .versus__card_title {
    font-size: 16px;
  }

  .versus__card_item {
    grid-template-columns: 40px 1fr;
  }

  .versus__card_item_title {
    font-size: 16px;
  }

  .versus__card_item_text {
    font-size: 14px;
  }

  .versus__card_item_descr {
    gap: 0;
  }

  .versus__cards {
    gap: 20px;
  }

  .versus__icon {
    height: 60px;
    width: 55px;
  }
}

.catalog {
  background: #fff;
  padding: 100px 0;
}

.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog__cards {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.catalog__card {
  border-radius: 20px;
  background: #fefefe;
  box-shadow: 0 -2px 10px 0 rgba(24, 39, 75, 0.05), 0 8px 20px -6px rgba(24, 39, 75, 0.07),
    0 14px 64px -4px rgba(24, 39, 75, 0.12);
  overflow: hidden;
  padding: 40px;
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 100px;
}

.catalog__card_left {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
}

.catalog__card_left img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.catalog__card_right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog__card_top_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog__card_top_img {
  display: none;
}

.catalog__card_title {
  color: #0e212e;
  font-family: 'Source Serif Pro 600';
  font-size: 44px;
  font-weight: 600;
  line-height: 110%;
  margin-left: 20px;
}

.catalog__card_descr {
  color: #0e212e;
  font-family: 'Source Serif Pro 600';
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-left: 20px;
}

.catalog__card_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
  color: #3f5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.catalog__card_text b,
.catalog__card_text strong {
  color: #0e212e;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.catalog__card_text ul li::marker {
  font-size: 14px;
}

.catalog__card_accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog__card_item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-shadow: 0 0 4px 0 rgba(24, 39, 75, 0.05), 0 3px 7px -6px rgba(24, 39, 75, 0.06),
    0 5px 16px -4px rgba(24, 39, 75, 0.05);
}

.catalog__card_item_top {
  padding: 20px 20px 20px 40px;
  display: grid;
  grid-template-columns: 1fr 55px;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.catalog__card_item_top p {
  color: #0e212e;
  font-family: 'Source Serif Pro 600';
  font-size: 20px;
  line-height: 120%;
}

.catalog__card_item_bottom {
  position: relative;
  z-index: 2;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  padding: 0 20px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #3f5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.catalog__card_item:nth-child(3) .catalog__card_item_bottom {
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  max-width: calc(100vw - 85px);
}

.catalog__card_item_bottom::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.catalog__card_item_bottom::-webkit-scrollbar-thumb {
  background: #687479;
  border-radius: 40px;
}

.catalog__card_item_bottom::-webkit-scrollbar-track {
  background: transparent;
}

.catalog__card_item_bottom::-webkit-scrollbar-horizontal {
  width: 4px;
  height: 4px;
}

.catalog__card_item_bottom::-webkit-scrollbar-thumb:horizontal {
  background: #687479;
  border-radius: 40px;
}

.catalog__card_item_bottom::-webkit-scrollbar-track:horizontal {
  background: transparent;
}

.catalog__card_item_bottom table {
  width: 100%;
  border-spacing: 0;
  border-top: 1px solid #687479;
  border-left: 1px solid #687479;
}

.catalog__card_item_bottom table tr td {
  padding: 10px 10px;
  border-right: 1px solid #687479;
  border-bottom: 1px solid #687479;
}

.catalog__card_item_bottom table tr:first-child td {
  font-weight: 500;
}

.catalog__card_item_bottom b,
.catalog__card_item_bottom strong {
  font-weight: 500;
}

.catalog__card_item.active .catalog__card_item_bottom {
  opacity: 1;
  margin: 0 0 30px;
}

.catalog__card_item.active .catalog__card_item_svg {
  transform: rotate(45deg);
}

.catalog__card_item.active .catalog__card_item_bg {
  transform: scale(40);
}

.catalog__card_item_svg {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

.catalog__card_item_bg {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  transform: scale(0);
  right: 20px;
  top: 20px;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.catalog__card_btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.catalog__card_btn_hidden a,
.catalog__card_btn_main {
  border-radius: 100px;
  background: #305772;
  box-shadow: 0 23px 6px 0 rgba(48, 87, 114, 0.01), 0 14px 6px 0 rgba(48, 87, 114, 0.06),
    0 8px 5px 0 rgba(48, 87, 114, 0.15), 0 4px 4px 0 rgba(48, 87, 114, 0.24),
    0 1px 2px 0 rgba(48, 87, 114, 0.3);
  height: 44px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.catalog__card_btn_hidden {
  display: flex;
  gap: 20px;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.catalog__card_btn_hidden a {
  pointer-events: none;
  pointer-events: none;
  text-decoration: none;
  transform: translateX(0);
  opacity: 0;
  z-index: 3;
  position: relative;
}

.catalog__card_btn_hidden a:nth-child(1) {
  z-index: 10;
}

.catalog__card_btn_hidden a:nth-child(2) {
  transform: translateX(-100%);
}

.catalog__card_btn_hidden a:nth-child(3) {
  transform: translateX(-200%);
}

@media (min-width: 1200px) {
  .catalog__card_btn:hover .catalog__card_btn_hidden a {
    opacity: 1;
    transform: translateX(0);
/*     background: #4398a9; */
    pointer-events: initial;
  }
	
	.catalog__card_btn_hidden a:hover {
		background: #4398a9;
	}

  .catalog__card_btn:hover .catalog__card_btn_hidden {
    pointer-events: initial;
  }

  .catalog__card_btn:hover .catalog__card_btn_main {
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .catalog__card_item:hover .catalog__card_item_bg {
    transform: scale(40);
  }
}

@media (max-width: 1500px) {
  .catalog__card {
    grid-template-columns: 400px 1fr;
  }

  .catalog__card_left img {
    width: 100%;
  }

  .catalog__card_left {
    display: block;
  }
}

@media (max-width: 1199px) {
  .catalog {
    padding: 60px 0;
  }

  .catalog__wrapper {
    gap: 30px;
  }

  .catalog__card_item_bottom table {
    font-size: 12px;
  }

  .catalog__card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
  }

  .catalog__card_left {
    display: none;
  }

  .catalog__card_top_img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 306px;
    overflow: hidden;
  }

  .catalog__card_top_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .catalog__card_top {
    display: grid;
    grid-template-columns: 204px 1fr;
    gap: 10px;
  }

  .catalog__card_title {
    font-size: 30px;
  }

  .catalog__card_descr {
    font-size: 18px;
  }

  .catalog__card_right {
    gap: 30px;
  }

  .catalog__card_item_top {
    padding: 10px 10px 10px 30px;
  }

  .catalog__card_item_top p {
    font-size: 18px;
  }

  .catalog__card_item_bottom {
    padding: 0 10px 0 30px;
  }

  .catalog__card_item.active .catalog__card_item_bottom {
    margin: 0 0 30px;
  }

  .catalog__card_btn_main {
    display: none;
  }

  .catalog__card_btn_hidden {
    position: relative;
    pointer-events: initial;
  }

  .catalog__card_btn_hidden a {
    opacity: 1;
    pointer-events: initial;
    transform: none !important;
    background: #4398a9;
  }

  .catalog__cards {
    gap: 30px;
  }

  .catalog__card_item_bg {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 767px) {
  .catalog {
    padding: 40px 0;
  }

  .catalog__wrapper {
    gap: 20px;
  }

  .catalog__card {
    padding: 20px;
  }

  .catalog__card_top {
    grid-template-columns: 1fr;
  }

  .catalog__card_top_img {
    height: 240px;
  }

  .catalog__card_btn_hidden {
    flex-direction: column;
  }

  .catalog__card_title {
    font-size: 24px;
    text-align: center;
    margin-left: 0;
  }

  .catalog__card_descr {
    font-size: 16px;
  }

  .catalog__card_text,
  .catalog__card_text b,
  .catalog__card_text strong {
    font-size: 14px;
  }

  .catalog__card_text ul li::marker {
    font-size: 10px;
  }

  .catalog__card_item_top {
    padding: 10px 10px 10px 20px;
  }

  .catalog__card_item_top p {
    font-size: 16px;
  }

  .catalog__card_item_top {
    grid-template-columns: 1fr 40px;
  }

  .catalog__card_item_svg {
    height: 40px;
  }

  .catalog__card_item_svg svg {
    width: 23px;
    height: 23px;
  }

  .catalog__card_item_bg {
    width: 40px;
    height: 40px;
  }

  .catalog__card_accordion {
    gap: 10px;
  }

  .catalog__card_item.active .catalog__card_item_bottom {
    margin: 0 0 20px;
  }

  .catalog__card_item_bottom {
    padding: 0 10px 0 20px;
  }

  .catalog__card_item_bottom {
    font-size: 14px;
  }

  .catalog__card_item.active .catalog__card_item_bg {
    transform: scale(50);
  }

  .catalog__card_right {
    gap: 20px;
  }

  .catalog__card_btn,
  .catalog__card_btn_hidden {
    width: 100%;
  }

  .catalog__card_btn_hidden {
    gap: 10px;
  }

  .catalog__card_btn_hidden a {
    width: 100%;
    font-size: 14px;
    height: 41px;
  }
}

.techno {
  background: #f9f9f9;
  padding: 100px 0 0;
}

.techno__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.techno__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.techno__arrow {
  display: flex;
  gap: 20px;
  align-items: center;
}

.techno__arrow_btn {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  filter: drop-shadow(0px 5px 16px rgba(24, 39, 75, 0.05))
    drop-shadow(0px 3px 7px rgba(24, 39, 75, 0.06))
    drop-shadow(0px 0px 4px rgba(24, 39, 75, 0.05));
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.techno__arrow_btn svg path {
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .techno__arrow_btn:hover {
    background: #eefcff;
  }

  .techno__arrow_btn:hover svg path {
    stroke: #4398a9;
  }
}

.slider-hide {
  display: none !important;
}

.techno__cards .slick-list {
  height: 100%;
  overflow: visible;
}

.techno__cards .slick-track {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  margin-bottom: 100px;
}

.techno__card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12),
    0 10px 32px -4px rgba(24, 39, 75, 0.1);
  padding: 40px;
  max-width: 1000px;
  min-width: 1000px;
  min-height: 578px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex-shrink: 0;
}

.techno__card_img {
  width: 100%;
  height: 100%;
	min-height: 418px;
}

.techno__card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.techno__card_title {
  color: #305772;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  grid-column: 1 / 3;
  min-height: 48px;
}

.techno__card_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #687479;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.techno__card_text strong {
	color: #687479;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
}
.techno__card_text ul {
	margin-left: 20px;
}

@media (max-width: 1199px) {
  .techno {
    padding: 60px 0 0;
  }

  .techno__wrapper {
    gap: 30px;
  }

  .techno__card {
    padding: 30px;
    border-radius: 10px;
    min-width: auto;
    max-width: none;
    display: flex !important;
    flex-direction: column;
    gap: 30px !important;
	  min-height: auto !important;
  }

  .techno__card_img {
    height: 300px !important;
	  order: 1;
	  min-height: auto;
  }

  .techno__card_title {
    font-size: 18px;
	  order: 2;
	  min-height: auto;
  }
	
	.techno__card_text {
		order: 3;
	}

  .techno__cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 60px !important;
  }
  .techno__arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .techno {
    padding: 40px 0 0;
  }

  .techno__card {
    padding: 20px;
    gap: 20px !important;
  }

  .techno__card_img {
    height: 150px !important;
  }

  .techno__card_title {
    font-size: 16px;
  }

  .techno__card_text, .techno__card_text strong {
    font-size: 14px;
  }

  .techno__cards {
    padding-bottom: 40px !important;
  }
}

.call {
  height: 750px;
  position: relative;
  background: linear-gradient(180deg, #fffeff 0, #f8f8fa 100%);
}

.call__bg {
  background-image: url(assets/img/call.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.call__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.call__descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #687479;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.call__descr a,
.link {
  text-decoration: none;
  color: #305772;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.call__descr a::before,
.link::before {
  content: '';
  width: 100%;
  height: 1px;
  border-radius: 2px;
  background-color: #305772;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0;
}

@media (min-width: 1024px) {
  .call__descr a:hover::before,
  .link:hover::before {
    transform: translateY(-0.25rem);
    opacity: 1;
  }
}

@media (max-width: 1300px) {
  .call__wrapper {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .call {
    height: 400px;
  }

  .call__descr,
  .call__wrapper {
    gap: 10px;
  }

  .call__wrapper {
    max-width: 343px;
  }
}

@media (max-width: 767px) {
  .call {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .call__bg {
    position: relative;
    height: 250px;
    background-image: url(assets/img/call3.png);
    background-size: cover;
    background-position: center;
  }

  .call__wrapper {
    padding: 20px 0 40px;
    align-items: center;
  }

  .call__descr {
    align-items: center;
    text-align: center;
    font-size: 14px;
  }

  .call__descr a,
  .link {
    font-size: 14px;
  }
}

.footer {
  height: 65px;
  background: #e5e5e8;
}

.footer__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  color: #3f5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.teampro {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}


@media (max-width: 1199px) {
  .footer {
    height: 45px;
  }
}

@media (max-width: 767px) {
  .footer {
    height: auto;
    padding: 10px 0;
  }

  .footer__wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .footer__copy, .teampro {
    font-size: 14px;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-menu {
    display: block;
    position: fixed;
    width: 100vw;
    height: calc(100vh - 60px);
    margin-top: 60px;
    z-index: 10000;
    pointer-events: none;
  }

  .mobile-menu_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
  }

  .mobile-menu_wrapper {
    background: #fff;
    box-shadow: 0 3px 7px -6px rgba(24, 39, 75, 0.06),
      0 5px 16px -4px rgba(24, 39, 75, 0.05);
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 153px;
    justify-self: flex-end;
    padding: 40px 20px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: -100%;
  }

  .mobile-menu_wrapper ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .mobile-menu_wrapper ul li a {
    display: block;
    padding: 5px 10px;
    color: #305772;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
  }

  .mobile-menu.active {
    pointer-events: initial;
  }

  .mobile-menu.active .mobile-menu_bg {
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: initial;
  }

  .mobile-menu.active .mobile-menu_wrapper {
    right: 0;
  }
}

@media (max-width: 767px) {
  .mobile-menu_wrapper ul li a {
    font-size: 16px;
    padding: 10px 20px;
  }

  .mobile-menu_wrapper ul {
    gap: 40px;
  }
}
