@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../font/Raleway-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --Black: #141414;
  --Blue: #38b4d5;
  --White: #ffffff;
  --Gray: #747474;
}
body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  font-family: 'Raleway';
}
.container {
  max-width: 1440px !important;
  margin: 0 auto;
  width: 100% !important;
}
* {
  box-sizing: border-box;
  margin: 0;
}
/*Навигация*/
.site-header {
  background-color: var(--White);
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 40px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 190px;
  height: 44px;
  object-fit: contain;
}

.navigation-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navigation-item a {
  text-decoration: none;
  color: var(--Black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  font-family: 'Raleway';
}

.navigation-item--dropdown {
  position: relative;
}

.dropdown-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.navigation-item--dropdown {
  position: relative;
}

.navigation-item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown-menu {
  display: flex;
  width: 300px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.05);
}

.navigation-item--dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -22px;
  background: white;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navigation-item--dropdown .dropdown-menu li {
  padding: 0;
  margin: 0;
}

.navigation-item--dropdown .dropdown-menu a {
  display: block;
  padding: 8px;
  color: var(--Black);
  text-decoration: none;
  width: 100%;
}

.navigation-item--dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation-item--dropdown2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.navigation-item_link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.dropdown-menu2 {
  display: none;
  gap: 4;
  margin: 0 !important;
}
.dropdown-menu2 > li {
  list-style: none;
  display: flex;
  width: 268px;
  padding: 8px 8px 8px 24px;
  align-items: center;
}
.dropdown-indicator2 svg,
.navigation-item > span {
  transition: transform 0.3s ease;
}

.navigation-item:hover > span,
.dropdown-indicator2.active svg {
  transform: rotate(180deg);
}

.consultation-button {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 95px;
  background: var(--Blue);
  color: var(--White);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
}

.consultation-label {
  color: var(--White);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.consultation-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.mobile-toggle {
  display: none;
  appearance: none;
  border: none;
  background: transparent;
  padding: 5px;
  cursor: pointer;
}

.mobile-toggle-box {
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.mobile-toggle-inner,
.mobile-toggle-inner::before,
.mobile-toggle-inner::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--Black);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.mobile-toggle-inner {
  width: 100%;
  margin-top: 8px;
}

.mobile-toggle-inner::before {
  width: 100%;
  transform: translateY(-8px);
}

.mobile-toggle-inner::after {
  width: 100%;
  transform: translateY(5px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 80;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 90vw;
  background: var(--White);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
  z-index: 90;
  transform: translateX(-110%);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 9px;
}

.mobile-drawer[aria-hidden='false'] {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid #e9e9e9;
}

.mobile-drawer-title {
  color: var(--Black);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  overflow: auto;
}

.mobile-navigation-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 320px;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-navigation-item {
  display: flex;
  padding: 8px;
  align-items: center;
  align-self: stretch;
}

.mobile-navigation-item a {
  color: var(--Black);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}
.mobile-navigation-item.mobile-active {
  border-bottom: 1px solid var(--Blue-500, #38b4d5);
}
@media (max-width: 900px) {
  .navigation-item--dropdown2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
  }
  .navigation-item_link {
    display: flex;
    padding: 8px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
  }
  .navigation-item_link a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
  }
  .dropdown-menu2 li {
    display: flex;
    padding: 8px 8px 8px 24px;
    align-items: center;
    align-self: stretch;
  }
}

.mobile-navigation-item.mobile-active a {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.mobile-drawer-cta {
  display: inline-flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 95px;
  background: var(--Blue-500, #38b4d5);
  border: none;
  margin: 30px 20px;
}
.mobile-drawer-cta > p {
  color: var(--White);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.consultation-button--mobile {
  width: 186px;
  display: inline-flex;
  justify-content: center;
}

.drawer-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .primary-navigation {
    display: flex;
    width: 100%;
    padding: 8px 16px;
    justify-content: space-between;
    align-items: center;
  }

  .navigation-links {
    display: none;
  }

  .consultation-button {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .brand-logo {
    width: 138px;
    height: 32px;
    overflow: hidden;
  }
}

/*Первый блок */
.main_mainblok {
  width: 100%;
}
.main_blok {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  height: 900px !important;
  background: url(../img/bg_main_blok.svg);
  width: 100%;
  object-fit: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.main_blok_content {
  box-sizing: border-box;
  gap: 24px;
  align-self: stretch;
  width: 900px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px 100px;
}
.main_blok_content_heading {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 51px;
  background: rgba(56, 180, 213, 0.1);
}
.main_blok_content_heading h2 {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.main_blok_content h1 {
  color: var(--Black);
  font-family: 'Raleway';
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.main_blok_content p {
  color: var(--Gray);
  font-family: 'Raleway';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.main_blok_btns {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 100px;
}

.primery_btn {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 95px;
  background: var(--Blue);
  border: none;
  transition: all 0.3s ease-in-out;
}
.primery_btn p {
  color: var(--White);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.secondary_btn {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 95px;
  background: rgba(56, 180, 213, 0.1);
  border: none;
  transition: all 0.3s ease-in-out;
}
.secondary_btn p {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

@media (min-width: 1560px) {
  .main_mainblok {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main_blok {
    display: flex;
    height: 600px !important;
    padding: 24px 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    gap: 32px;
    background: url(../img/bg_mobile.svg);
    object-fit: cover;
    background-position: right;
    background-repeat: no-repeat;
  }
  .main_blok_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    align-self: stretch;
    width: 100%;
    padding: 0;
  }
  .main_blok_content_heading h2 {
    font-size: 18px;
  }
  .main_blok_content h1 {
    font-size: 24px;
  }
  .main_blok_content p {
    font-size: 16px;
  }
  .main_blok_btns {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
/*Наши услуги*/
.services-section {
  display: flex;
  padding: 100px 40px;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  width: 100%;
  align-self: stretch;
}
.services-section_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.services-section_content_stroke {
  display: flex;
  padding: 0 100px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.services-section_content_stroke_cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.services-section_content_stroke_cart_img {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
}
.services-section_content_stroke_cart_heading {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 51px;
  background: rgba(56, 180, 213, 0.1);
}
.services-section_content_stroke_cart_heading h3,
.services-section_content_stroke_cart_heading h3 > a {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}
.services-section_content_stroke_cart p {
  color: var(--Gray);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-align: center;
}

@media (max-width: 767px) {
  .services-section {
    padding: 40px 16px;
    gap: 52px;
  }
  .services-section_content {
    gap: 24px;
  }
  .services-section_content_stroke {
    padding: 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }
  .services-section_content_stroke_cart_heading h3 {
    font-size: 22px;
  }
  .services-section_content_stroke_cart p {
    font-size: 16px;
  }
}

/*блок с модальными окнами*/
.agency_video {
  display: flex;
  width: 100%;
  height: 808px;
  gap: 200px;
  background-image: url(../img/bg_video_agency2.svg);
  background-repeat: none;
  object-fit: cover;
  background-position: right;
  position: relative;
  overflow: hidden;
}
.video_agency_img {
  cursor: pointer;
  display: flex;
  width: 685px;
  height: 663px;
  padding-left: 150px;
}
.agency_video_content {
  display: flex;
  flex-direction: column;
  padding-top: 130px;
  gap: 67px;
  position: relative;
  z-index: 2;
}
.agency_video_content_heading h3 {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}
.agency_video_content_list {
  display: flex;
  width: 458px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 3;
}
details {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  cursor: pointer;
}
details p,
.uslugi_summ_content p,
.uslugi_summ_content ul li {
  color: var(--Gray);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
details p {
  margin-top: 24px;
}
.uslugi_summ_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ul {
  display: flex;
  flex-direction: column;
  padding-left: 25px;
}
summary {
  display: flex;
  padding-bottom: 14px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid rgba(0, 3, 53, 0.1);
}
summary h2 {
  color: var(--Black);
  font-family: 'Raleway';
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

details summary::-webkit-details-marker {
  display: none;
}
details > summary {
  list-style: none;
}
details[open] summary h2 {
  color: var(--Blue);
  font-weight: 600;
}
.arrow-active {
  display: none;
}
details[open] .arrow-default {
  display: none;
}
details[open] .arrow-active {
  display: block;
}
.agency_boy {
  width: 316px;
  height: 316px;
  position: absolute;
  right: -70px;
  bottom: 0;
  z-index: 1;
}
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.video-modal-content {
  position: relative;
  max-width: 960px;
  max-height: 540px;
  width: 90%;
  height: auto;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .video-modal-content {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .agency_video {
    display: flex;
    flex-direction: column;
    background: none;
    padding: 0 0 0 16px;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 24px;
    gap: 0;
    width: 100%;
  }
  .video_agency_img {
    padding: 0;
    height: 340px;
    width: 100%;
  }
  .video_agency_img {
    display: flex;
    height: 340px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
  }
  .arrow-default {
    margin-right: 16px;
  }
  .agency_video_content {
    display: flex;
    width: 100%;
    padding: 40px 30px 40px 30px;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
    width: 100%;
    background-color:
      lightgray -1753px -2933.281px / 608.116% 592.161% no-repeat,
      rgba(19, 28, 33, 0.04);
    background-image: url(../img/agency_bg_mob.svg);
    background-position: left bottom;
    object-fit: cover;
    z-index: 1;
  }
  .agency_video_content_list {
    width: 100%;
  }
  .agency_video_content_heading h3 {
    font-size: 20px;
    line-height: 135%;
  }
  .agency_boy {
    width: 148px;
    height: 142px;
    position: absolute;
    right: -37px;
    bottom: -3px;
    z-index: 2;
  }
  details {
    gap: 5px;
  }
}
/*Наши преимущества*/
.our_advantages {
  display: flex;
  padding: 100px 40px;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  align-self: stretch;
}
h2 {
  color: var(--Black);
  text-align: center;
  font-family: 'Raleway';
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.our_advantages_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
.our_advantages_stroke {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
.our_advantages_stroke_cart {
  display: flex;
  padding: 0 16px;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}
.our_advantages_stroke_cart_img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
}
.our_advantages_stroke_cart_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}
.our_advantages_stroke_cart_text h3 {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.our_advantages_stroke_cart_text p {
  color: var(--Gray);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  align-self: stretch;
}

@media (max-width: 767px) {
  body {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .our_advantages {
    padding: 40px 16px;
  }
  h2 {
    font-size: 32px;
  }
  .our_advantages_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
  }
  .our_advantages_stroke {
    display: flex;
    flex-direction: column;
  }
  .our_advantages_stroke_cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
  }
  .our_advantages_stroke_cart_text {
    align-items: center;
  }

  .our_advantages_stroke_cart_text p {
    text-align: center;
  }
}
/*Блок партнеры*/
.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  gap: 52px;
  width: 100%;
  background: var(--White);
  margin: 0 auto;
}

.partners-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px;
  gap: 52px;
  width: 1016px;
  height: 187px;
}

.partner-card {
  width: 304px;
  height: 187px;
  background: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .partners-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    gap: 32px;
    width: 100%;
  }

  .partners-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px;
    gap: 16px;
    width: 343px;
    height: 63.77px;
  }

  .partner-card {
    width: 103.67px;
    height: 63.77px;
    flex-grow: 1;
  }
}

/*Блок формы*/
.form-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-title {
  color: var(--Black);
  text-align: center;
  font-family: 'Raleway';
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 20px;
}

.translation-form .wpcf7-form {
  display: flex;
  width: 546.64px;
  padding: 59px 35px 52px 35px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  background: #fff;
  box-shadow: 0 10px 50px 0 rgba(53, 82, 99, 0.09);
}
option > p {
  color: rgba(0, 3, 53, 0.55);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--Black);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 0;
  border: none;
  font-family: inherit;
  font-size: 16px;
  background: var(--White);
  transition: border-color 0.3s ease;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
  width: 100% !important;
  display: flex;
  width: 230.33px;
  height: 57.5px;
  padding: 19px 18px 20.5px 18px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.border_group {
  width: 230.33px;
  transition: border-color 0.3s ease;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}
.form-textarea {
  display: flex;
  width: 476.64px;
  height: 200px;
  padding: 16px 377.545px 158.5px 18px;
  align-items: center;
  flex-shrink: 0;
}

.form-input:focus,
.form-select:focus,
textarea:focus {
  outline: none;
  border-color: var(--Blue);
}

.file-upload > p {
  position: relative;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
  padding: 12px 0;
  display: flex;
  width: 476px;
  height: 58px;
  padding: 0 0 0 15px;
  align-items: center;
  flex-shrink: 0;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
}
.file-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  color: var(--Black);
  font-size: 16px;
  width: 476px !important;
}

.file-text {
  font-size: 16px;
  color: var(--Black);
}

.divider {
  height: 1px;
  background: rgba(139, 139, 139, 0.2);
  margin: 20px 0;
}

.message-section {
  margin-bottom: 20px;
}

.message-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--Black);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}

.checkbox-group,
.checkbox-group > p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.checkbox-group label {
  margin: 0 !important;
}

.checkbox-input {
  margin-top: 2px;
  transform: scale(1.2);
}
.checkbox-label {
  font-size: 14px;
  color: var(--Black);
  line-height: 1.4;
}

.checkbox-label a {
  color: var(--Black);
  text-decoration: none;
}
.checkbox-label a:hover {
  color: var(--Blue);
  text-decoration: none;
}
.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-button {
  background: var(--Blue) !important;
  color: var(--White) !important;
  border: none !important;
  border-radius: 95px !important;
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  display: block !important;
  margin: 0 auto !important;
  transition: all 0.3s ease-in-out !important;
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
}
.submit-button img {
  margin: auto 0;
}

.benefits-section {
  padding-top: 20px;
}

.benefits-title {
  color: var(--Black);
  font-family: 'Raleway';
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 32px;
  text-align: left !important;
}

.benefits-description {
  color: var(--Gray);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 40px;
}
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.number-benefits {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 63px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  min-width: 73px;
}

.benefits-text-content {
  flex: 1;
}

.benefit-name {
  color: var(--Blue);
  font-family: 'Raleway';
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 8px;
}

.benefit-description {
  color: var(--Gray);
  font-family: 'Raleway';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.mob_btn {
  display: none;
}
.mob_btn > p {
  width: 100%;
}
.form-title > br {
  display: none;
}
@media (max-width: 1024px) {
  .form-container {
    gap: 40px;
  }

  .benefits-title {
    font-size: 32px;
  }

  .number-benefits {
    font-size: 48px;
    min-width: 60px;
  }

  .benefit-name {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .form-section {
    padding: 40px 16px;
  }
  .mob_btn {
    display: flex;
  }
  .form-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .translation-form .wpcf7-form {
    padding: 40px 24px;
    width: 100%;
  }

  .form-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .benefits-title {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
  }

  .benefits-description {
    margin-bottom: 32px;
  }

  .number-benefits {
    font-size: 40px;
    min-width: auto;
  }

  .benefit-name {
    font-size: 20px;
  }

  .benefit-description {
    width: 100%;
  }

  .submit-button {
    width: 100%;
    margin: 0;
  }
  .form-input,
  .form-textarea {
    width: 100%;
  }
  .file-label > svg {
    display: none;
  }
  .form-group {
    gap: 10px;
  }
  .file-text {
    margin-left: 19px;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 30px 12px;
    display: flex;
    justify-content: center;
  }

  .translation-form .wpcf7-form {
    padding: 30px 20px;
    width: 375px;
  }

  .form-title {
    font-size: 32px;
    line-height: 28px;
    margin: 0;
    text-align: center;
  }
  .form-title > br {
    display: flex;
  }

  .benefits-title {
    font-size: 24px;
  }

  .benefits-description {
    font-size: 14px;
  }

  .number-benefits {
    font-size: 32px;
  }
  .form-textarea {
    width: 100%;
  }

  .benefit-name {
    font-size: 18px;
  }
  .file-upload > p {
    width: 343px;
  }

  .benefit-description {
    font-size: 14px;
  }

  .checkbox-group,
  .checkbox-group > p {
    align-items: flex-start;
  }

  .checkbox-label {
    font-size: 13px;
  }
}

/*Блок тарифы*/
.pricing-section {
  width: 100%;
  height: auto;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
  background-image: url('../img/bg_sec.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0 auto;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0px 10px 50px rgba(53, 82, 99, 0.09);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
}

.pricing-card {
  height: 584.09px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #ffffff;
  opacity: 1;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  border-top-width: 7px;
  background: rgba(56, 180, 213, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: var(--White);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::before {
  background: var(--Blue);
}
.pricing-card:hover .details-button {
  background: var(--Blue);
  color: var(--White);
}

.pricing-card:hover .details-button > p {
  color: var(--White);
}

.pricing-card:hover .details-button .arrow-icon {
  fill: var(--White);
}
.pricing-card:hover .details-button_default {
  display: none;
}
.pricing-card:hover .details-button_active {
  display: flex;
}
.details-button_active {
  display: none;
}
.card-title {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #38b4d5;
  margin-bottom: 20px;
}

.card-price {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  color: var(--Black);
  margin-bottom: 40px;
}

.feature-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: rgba(19, 28, 33, 0.6);
}

.break-mobile {
  display: none;
}

.details-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 10px;
  width: 240px;
  height: 48px;
  border-radius: 95px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: rgba(56, 180, 213, 0.1);
  position: relative;
  z-index: 2;
  min-width: 240px;
}
.details-button p {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  color: var(--Blue);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .pricing-section {
    background-image: none;
    background-color: #f5f7fa;
  }

  .pricing-section {
    max-width: 100%;
    padding: 20px 15px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 343px;
    margin: 0 auto;
    width: 100%;
  }

  .pricing-card {
    width: 100%;
    max-width: 343px;
    padding: 25px 15px;
    margin: 0 auto;
  }

  .card-price {
    font-size: 24px;
  }

  .details-button {
    width: 200px;
    min-width: 200px;
  }

  .break-mobile {
    display: inline;
  }
}
/*Футер*/
.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  color: #747474;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  padding-top: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  padding: 0 26px;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.footer-column {
  display: flex;
  width: 275px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-column--wide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.footer-column-wide-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.footer-heading {
  color: #141414;
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.footer-text {
  color: #747474;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin: 0px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #232323;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
}

.footer-contact-text {
  color: var(--Neutral-700, #232323);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer-social-list {
  display: flex;
  flex-direction: row;
  margin: 0;
  list-style: none;
  width: 135px;
  height: 30px;
  padding: 0px;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.footer-social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.footer-social-link--facebook {
  background: #3b5998;
}
.footer-social-link--twitter {
  background: #1da1f2;
}
.footer-social-link--whatsapp {
  background: #25d366;
}
.footer-social-link--youtube {
  background: #ff0000;
}
.footer-social-link svg {
  display: block;
}

.footer-links-list {
  display: flex;
  width: 275px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list li a {
  color: #747474;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.footer-banner-image {
  display: flex;
  padding: 8px 26px;
  align-items: center;
  align-self: stretch;
}

.footer-offer {
  color: #38b4d5;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.footer-heading-ooo {
  color: #747474;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding: 0px;
  margin: 0px;
}

.footer-subscribe-heading {
  color: var(--Black-500, #141414);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.footer-form {
  margin-top: 8px;
}

.footer-input {
  display: flex;
  height: 48px;
  padding: 15px 17.67px 15px 18px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border: none;
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}

.footer-form-fields > p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-form-fields #footer-email {
  max-width: 250px;
}

@media screen and (max-width: 767px) {
  .footer-form-fields #footer-email {
    max-width: 100%;
  }
}

/* .footer-form-fields > p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;  
}

.footer-input::placeholder { 
  color: #bdbdbd; 
} */

.footer-submit,
.modal-submit {
  display: flex !important;
  padding: 16px 24px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 95px !important;
  background: #38b4d5 !important;
  color: #fff !important;
  font-family: Raleway !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 100% !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease-in-out !important;
}

.footer-submit svg,
.modal-submit svg {
  display: block;
}

.footer-note {
  display: flex;
  padding: 52px 40px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    padding: 36px 16px;
    align-items: center;
  }
}

@media (max-width: 767px) {
  /* .footer-columns {
        gap: 40px;
    }

    .footer-form-fields > p {
        flex-direction: column;
        align-items: stretch;
    } */

  .footer-submit,
  .modal-submit {
    width: 343px;
    justify-content: center;
  }

  .footer-column {
    text-align: center;
    align-items: center;
  }

  .footer-links-list {
    align-items: center;
  }

  .footer-column-wide-intro {
    text-align: center;
    align-items: center;
  }

  .footer-banner-image {
    text-align: center;
    align-items: center;
  }

  .site-footer {
    text-align: center;
    align-items: center;
  }

  .brand-logo {
    text-align: center;
    align-items: center;
    margin-right: 94px;
  }

  .brand-link {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 375px) {
  .form-section {
    padding: 40px 0px;
  }

  .form-container {
    gap: 40px;
  }

  .translation-form .wpcf7-form {
    width: 100%;
    padding: 32px 16px;
    margin: 0 auto;
  }

  .form-title {
    font-size: 32px;
    line-height: 26px;
    margin-bottom: 25px;
  }

  .form-grid {
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-input,
  .form-select {
    width: 100%;
    height: 50px;
    padding: 15px 16px;
    font-size: 15px;
  }
  .border_group {
    width: 100%;
  }

  .form-textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    font-size: 15px;
  }

  .file-upload > p {
    width: 100%;
    height: 50px;
    padding: 0;
  }

  .file-text {
    margin-left: 5px;
    font-size: 14px;
  }

  .benefits-section {
    padding: 40px 16px;
  }

  .benefits-title {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  .benefits-description {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 60px;
  }

  .benefits-grid {
    gap: 32px;
  }

  .benefit-item {
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .number-benefits {
    font-size: 52px;
    min-width: 45px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: -9px;
  }

  .benefit-name {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .form-select,
  .file-text {
    color: rgba(0, 3, 53, 0.55);
    font-size: 15px;
  }

  .benefit-description {
    font-size: 16px;
    line-height: 140%;
  }

  .checkbox-group,
  .checkbox-group > p {
    margin-bottom: 20px;
  }

  .checkbox-label {
    font-size: 14px;
    line-height: 140%;
  }

  .submit-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  @media (max-width: 320px) {
    .translation-form .wpcf7-form {
      padding: 25px 15px;
    }

    .form-title {
      font-size: 18px;
    }
  }
}

@media (max-width: 768px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
  }

  .translation-form .wpcf7-form {
    width: 375px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-content: center;
  }

  .form-textarea {
    width: 100%;
    height: 180px;
    padding: 15px;
  }

  .file-upload > p {
    width: 100%;
    padding: 0;
  }
}

button {
  cursor: pointer;
}
.primery_btn:hover,
.consultation-button:hover,
.submit-button:hover,
.footer-submit:hover,
.modal-submit:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), var(--Blue-500, #38b4d5);
}
.primery_btn:active,
.consultation-button:active,
.submit-button:active,
.details-button:active,
.footer-submit:active,
.modal-submit:active {
  border-radius: 95px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), var(--Blue-500, #38b4d5);
}
.primery_btn:disabled,
.consultation-button:disabled,
.submit-button:disabled,
.details-button:disabled,
.footer-submit:disabled,
.modal-submit:disabled {
  opacity: 0.4;
}
.secondary_btn:hover {
  background: rgba(56, 180, 213, 0.2);
}
.secondary_btn:active {
  background: var(--Blue);
}
.secondary_btn:active p {
  color: var(--White);
}
.secondary_btn:disabled {
  background: rgba(56, 180, 213, 0.1);
}
.secondary_btn:disabled p {
  opacity: 0.3;
}

.screen-reader-response {
  display: none !important;
}

.elementor-51 {
  width: 100%;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.lyngva-blog--single-wrapper {
  margin: 0 auto;
}

.custom-recaptcha {
  display: block;
  margin-top: 10px;
}

/* Блог: отключаем Isotope-layout, используем CSS Grid с равными карточками */
.aheto-cpt--grid .aheto-cpt__list,
.aheto-cpt--grid .aheto-cpt__list.js-isotope,
.aheto-cpt__list.js-isotope {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
  height: auto !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.aheto-cpt--grid .aheto-cpt__list::before,
.aheto-cpt--grid .aheto-cpt__list::after,
.aheto-cpt__list.js-isotope::before,
.aheto-cpt__list.js-isotope::after {
  content: none !important;
  display: none !important;
}

.aheto-cpt__list > .aheto-cpt-article--size {
  display: none !important;
}

.aheto-cpt--grid .aheto-cpt__list > .aheto-cpt-article,
.aheto-cpt__list.js-isotope > .aheto-cpt-article,
.aheto-cpt__list > .aheto-cpt-article--grid {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.aheto-cpt-article--cs_skin-5 .aheto-cpt-article__inner {
  height: 100%;
}

.aheto-cpt-article--cs_skin-5 .aheto-cpt-article__img {
  padding-bottom: 0 !important;
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

@media screen and (max-width: 991px) {
  .aheto-cpt--grid .aheto-cpt__list,
  .aheto-cpt--grid .aheto-cpt__list.js-isotope,
  .aheto-cpt__list.js-isotope {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media screen and (max-width: 576px) {
  .aheto-cpt--grid .aheto-cpt__list,
  .aheto-cpt--grid .aheto-cpt__list.js-isotope,
  .aheto-cpt__list.js-isotope {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

.aheto-cpt-article__inner {
  position: relative;
}

.aheto-cpt-article__content {
  position: absolute;
  bottom: 0;
  display: block;
  padding: 10px;
  width: 100%;
  z-index: 2;
}

.aheto-cpt-article__content .aheto-cpt-article__title {
  margin: 0 !important;
}

.aheto-cpt-article__content .aheto-cpt-article__title a {
  font-size: 22px;
  color: #fff;
}

.aheto-cpt-article__img {
  position: relative;
  overflow: hidden;

  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.aheto-cpt-article__img:hover {
  transform: scale(1.05);
}

.aheto-cpt-article__img::before {
  content: '';
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.aheto-cpt-article__img .aheto-cpt-article__img-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lyngva-blog--single__top-content {
  padding: 0 !important;
}

.lyngva-blog--single__banner {
  display: flex;
  justify-content: center;
  max-height: 350px;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.lyngva-blog--single__banner img {
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.lyngva-blog--single__columns {
  max-width: 1200px;
  margin: 20px auto;
}

.lyngva-blog--single__top-content-right {
  display: none;
}

.lyngva-blog--single__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lyngva-blog--single__pagination-prev {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 300px;
  height: 300px;
}

.lyngva-blog--single__pagination-next {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  width: 300px;
  height: 300px;
}

.lyngva-blog--single__pagination-prev span,
.lyngva-blog--single__pagination-next span {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  padding: 10px;
  z-index: 2;
  color: #fff;
}

.lyngva-blog--single__pagination-prev span a,
.lyngva-blog--single__pagination-next span a {
  color: #fff;
  text-transform: uppercase;
}

.lyngva-blog--single__pagination-prev .img-wrap,
.lyngva-blog--single__pagination-next .img-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.lyngva-blog--single__pagination-prev .img-wrap::before,
.lyngva-blog--single__pagination-next .img-wrap::before {
  content: '';
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.lyngva-blog--single__pagination-prev .img-wrap img,
.lyngva-blog--single__pagination-next .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.max-btn {
  display: block;
  width: 40px;
  height: 40px;
}

.max-btn-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .max-btn {
    display: none;
  }
  .max-btn-mobile {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0 20px;
    box-sizing: content-box;
  }
}

.made-by {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}