/* GLOBAL */

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/intertight.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  border: none;
  font-family: "Inter Tight", sans-serif;
  background: transparent;
}

body {
  background: #000;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

:root {
  --accent: #2561ff;
  --btnHover: #164ad4;
  --btnOutlineHover: #c5c5c5;
}

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

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

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

.section-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

@media (max-width: 1024px) {
    .section-title {
      font-size: 34px;
    }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

/* ------- GLOBAL ------ */

/* HEADER */

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 16px;
  z-index: 999;
  transition:
    transform 0.5s ease,
    opacity 0.25s ease;
  transform: translateY(0);
  opacity: 1;
}



.header--hidden {
  transform: translateY(-150%);
  opacity: 0;
}

.body-has-fixed-header {
  /*padding-top: 16px;*/
}

.header-content {
  background: #000;
  border-radius: 9px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.header-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 13px;
  width: 100%;
  margin: 0 auto;
}

.header-menu ul {
  display: flex;
  gap: 44px;
  list-style: none;
}

.header-menu li {
  position: relative;
  cursor: pointer;
}

.header-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 0;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.header-menu li:hover > a {
  opacity: 0.4;
}

.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -22px;
  background: #000;
  border-radius: 9px;
  padding: 16px 22px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  flex-direction: column;
  gap: 12px !important;
}

.sub-menu a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  line-height: 1;
  padding: 0;
}

.sub-menu a:hover {
  opacity: 0.4;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-right {
  display: flex;
}

.header-right .header-burger {
  display: none;
}

.btn {
  padding: 0;
  height: 40px;
  padding-left: 28px;
  padding-right: 28px;
  text-decoration: none;
  color: #fff;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  width: fit-content;
  align-items: center;
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
}

.btn-outline {
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
}

.btn-accent:hover {
  background-color: var(--btnHover);
}

.header-toggler {
    display: none;
}

@media (max-width: 1024px) {
  .header-navigation {
    display: none;
  }

  .header-right .header-button {
    display: none;
  }

  .header-right .header-burger {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .burger-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transform: translateX(10px);
  }

  .burger-title.closed {
    display: block;
  }

  .burger-title.opened {
    display: none;
  }

  .header-content:has(#burger:checked) .burger-title.closed {
    display: none;
  }

  .header-content:has(#burger:checked) .burger-title.opened {
    display: block;
  }

  .header-content {
    transition: box-shadow 0.25s ease;
  }

  .header-content:has(#burger:checked) {
    -webkit-box-shadow: inset 0px 0px 0px 1px #242424;
    box-shadow: inset 0px 0px 0px 1px #242424;
  }

  .burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
    transform-origin: center right;
    transform: scale(0.6);
  }

  .burger input {
    display: none;
  }

  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.2s ease-in-out;
  }

  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }

  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }

  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }

  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }

  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }

  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }

  .header-mobile-toggler {
    width: 100%;
  }

  .header-toggler {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
  }

  .header-mobile-navigation {
    padding: 45px;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.3s ease;
  }

  .header-mobile-btns {
    padding: 50px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 54px;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-nav ul span {
    color: #fff;
    opacity: 0.4;
    font-size: 16px;
    padding-bottom: 8px;
  }

  .mobile-nav a {
    color: #fff;
    font-size: 34px;
    text-decoration: none;
  }

  .header-mobile-social {
    display: flex;
    gap: 12px;
  }

  .mobile-nav li {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }

  .header-content:has(#burger:checked) .header-toggler {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-content:has(#burger:checked) .header-mobile-navigation {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
  }

  .header-content:has(#burger:checked) .header-mobile-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }

  .header-content:has(#burger:checked) .mobile-nav li {
    opacity: 1;
    transform: translateY(0);
  }

  .header-content:has(#burger:checked) .mobile-nav li:nth-child(1) {
    transition-delay: 0.08s;
  }

  .header-content:has(#burger:checked) .mobile-nav li:nth-child(2) {
    transition-delay: 0.14s;
  }

  .header-content:has(#burger:checked) .mobile-nav li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .header-content:has(#burger:checked) .mobile-nav li:nth-child(4) {
    transition-delay: 0.26s;
  }
}

@media (max-width: 767px) {

  .mobile-nav {
    gap: 44px;
  }

  .mobile-nav a {
    font-size: 28px;
  }

  .header-mobile-navigation,
  .header-mobile-btns {
    padding: 36px 27px;
  }

  .header-mobile-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
  }
}

@media (max-width: 400px) {
  .header-mobile-navigation,
  .header-mobile-btns {
    padding: 27px 27px;
  }

  .mobile-nav,
  .header-mobile-btns {
    gap: 24px;
  }

  .mobile-nav a {
    font-size: 24px;
  }
}

/* ------- HEADER ------ */

/* FOOTER */

.footer {
  background: #000;
  width: 100%;
  padding-top: 96px;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
}

.footer-navigation-column {
  width: 20%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-nav-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 150px;
}

.footer-nav a,
.footer-text a {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
}

.footer-text a {
  text-transform: none;
}

.footer-nav a:hover,
.footer-text a:hover {
  opacity: 1;
}

.footer-text {
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}

.footer-text p, .company-contacts {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.footer-social {
  padding-top: 24px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  opacity: 0.8;
}

.footer-text p.no-link {
  opacity: 0.4;
}

.footer-logo-mask {
  width: 100%;
  aspect-ratio: 3 / 1;
}

.footer-logo-mask video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("/wp-content/themes/kolvi/assets/images/kolvi-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/wp-content/themes/kolvi/assets/images/kolvi-mask.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.popup-inner--contact .footer-logo-mask video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("/wp-content/themes/kolvi/assets/images/mask-contact.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/wp-content/themes/kolvi/assets/images/mask-contact.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media (max-width: 1024px) {
  .footer-navigation {
    row-gap: 54px;
  }

  .footer-navigation-column {
    width: 33.3%;
  }
}

@media (max-width: 767px) {
  .footer-navigation {
    row-gap: 44px;
  }

  .footer-navigation-column {
    width: 50%;
    gap: 32px;
  }

  .footer-navigation-column:nth-last-child(-n + 2) {
    width: 100%;
  }

  .footer-nav-title {
    font-size: 20px;
  }
}

/* ------- FOOTER ------ */

/* FORM */

.contact-form {
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}

/* Background wrapper */
.contact-form-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
}

/* Cover image */
.contact-form-bg-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Background video */
.contact-form-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transform: translateX(23%);
  inset: 0;
  z-index: 0;
}

/* When video is ready */
.contact-form-bg-video.loaded + .contact-form-bg-cover {
  opacity: 0;
}

.contact-form-content {
  display: flex;
}

.contact-form-area,
.contact-form-content-title {
  width: 50%;
}

.contact-form-content-title {
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  font-weight: 500;
  opacity: 0.8;
}

.contact-form-content-title span {
  color: #b3b3b3;
}

.contact-form-area {
  padding-left: 24px;
}

.contact-form-area-block {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  height: 100%;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
  font-weight: 500;
}

.contact-form-area-block-title {
  font-size: 32px;
  line-height: 1;
}

.contact-form-area-block-text {
  font-size: 16px;
  line-height: 1;
  opacity: 0.4;
}

@media (max-width: 1024px) {
  .contact-form {
    background: #000;
  }

  .contact-form-bg {
    height: 60vh;
    z-index: 0;
  }

  .contact-form-bg-video {
    transform: translateX(0);
  }

  .contact-form-content {
    flex-direction: column-reverse;
    z-index: 2;
    position: relative;
  }

  .contact-form-area,
  .contact-form-content-title,
  .contact-form-area-block {
    width: 100%;
  }

  .contact-form-content-title {
    height: 50vh;
  }

  .contact-form-area {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-form-content-title {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .contact-form-content-title {
    font-size: 34px;
  }

  .contact-form-area-block {
    padding: 44px 24px;
  }

  .contact-form-area-block-title {
    font-size: 28px;
  }
}

/* CUSTOM CONTACT FORM 7 */

.contact-form-area .wpcf7 {
	margin-top: 18px;
}

.kolvi-form-field {
	background: #F0F0F0;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	padding: 20px 20px;
	border-radius: 8px;
	font-size: 17px;
	color: #000;
	transition: box-shadow 0.2s ease-in-out;
}

.kolvi-form-field:focus {
    box-shadow: 0px 0px 0px 2px rgba(37,97,255,1) inset;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(37,97,255,1) inset;
    -moz-box-shadow: 0px 0px 0px 2px rgba(37,97,255,1) inset;
}

.kolvi-form-field.wpcf7-not-valid {
    box-shadow: 0px 0px 0px 2px rgba(255,44,37,1) inset;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255,44,37,1) inset;
    -moz-box-shadow: 0px 0px 0px 2px rgba(255,44,37,1) inset;
}

.kolvi-form-field::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.wpcf7 br {
	display: none;
}

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

textarea.kolvi-form-field {
	height: 155px;
	max-height: 155px;
	min-height: 155px;
}

.kolvi-form-submit {
    margin-top: 14px;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 11px;
    color: #FF2C25;
    font-weight: 500;
}

.wpcf7 form .wpcf7-response-output {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.hp-field {
    display: none;
}

.popup-inner--contact form {
    position: relative;
}

.popup-inner--contact .kolvi-form-field {
    padding: 17px 20px;
    font-size: 14px;
}

.popup-inner--contact .wpcf7 p {
    gap: 5px;
}

.popup-inner--contact .wpcf7-form-control-wrap {
    width: 50%;
}

.popup-inner--contact .wpcf7-form-control-wrap[data-name="your-message"] {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 5px);
}

.popup-inner--contact textarea.kolvi-form-field {
	height: 163px;
	max-height: 163px;
	min-height: 163px;
}

@media (max-width: 820px) {
    .popup-inner--contact .wpcf7-form-control-wrap, .popup-inner--contact .wpcf7-form-control-wrap[data-name="your-message"] {
        width: 100%;
    }
    
    .popup-inner--contact .wpcf7-form-control-wrap[data-name="your-message"] {
        position: static;
    }
}



/* ------- FORM ------ */


/* POPUP */

/* Fullscreen overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.2s ease;
}

/* Visible state */
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Dark background layer */
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* Content container (for centering and max width) */
.popup-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
}

/* Inner popup box */
.popup-inner {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 49px 44px 10px 44px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 36px;
  right: 36px;
  border: none;
  cursor: pointer;
}

/* Lock page scroll when popup is open (you already add .popup-open to <html>) */
html.popup-open,
body.popup-open {
  overflow: hidden;
}

.popup-inner--contact .wpcf7 {
    margin-top: 20px;
}

.popup-title-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    .popup-inner--contact {
        padding: 49px 24px 10px 24px;
    }
}


/* Project popup layout overrides */
.popup-content {
  /* keep default */
}

.popup-inner--project {
  padding: 0;               /* because gallery is the header */
  border-radius: 18px;
  overflow-x: hidden;/* cut gallery corners */
  overflow-y: scroll;
  max-height: 90vh;
  /* Hide scrollbar (Firefox) */
  scrollbar-width: none;
}

/* Hide scrollbar (Chrome, Safari, Edge) */
.popup-inner--project::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Make project popup wider */
.popup-overlay.is-project .popup-content {
  max-width: 700px;
}

/* Keep contact popup size */
.popup-overlay.is-contact .popup-content {
  max-width: 700px;
}

/* Close button like in design */
.popup-inner--project .popup-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
}

/* Hide title area in project shell (design has no title above image) */
.popup-inner--project .popup-title-area {
  display: none;
}

/* Gallery */
.project-gallery { position: relative; }
.project-gallery-slider,
.project-gallery .swiper-slide img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.project-gallery-nav {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}
.project-gallery-prev { transform: translateX(calc(-50% - 26px)); }
.project-gallery-next { transform: translateX(calc(-50% + 26px)); }

/* Content padding */
.project-popup-content {
  padding: 32px 32px 85px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-label {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    opacity: 0.4;
}

.project-value {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.project-client {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

/* Project parameters table */
.project-table-wrap {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
}

.project-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.project-table thead th {
  background: #0b0e12; /* dark header */
  color: #fff;
  text-align: left;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.project-table thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* Column widths like in design */
.project-table thead th:first-child,
.project-table tbody td:first-child {
  width: 70%;
}

.project-table thead th:last-child,
.project-table tbody td:last-child {
  width: 30%;
}

/* Body cells */
.project-table tbody td {
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.25;
  color: #0d0d0d;
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  word-break: break-word;
}

/* Vertical divider */
.project-table tbody td + td {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Zebra rows */
.project-table tbody tr:nth-child(even) td {
  background: #f5f5f5;
}

/* Slightly bolder value column like in screenshot */
.project-table tbody td:last-child {
  font-weight: 500;
  color: #111;
}

/* Mobile: allow value column to wrap nicely */
@media (max-width: 767px) {
  .project-table thead th:first-child,
  .project-table tbody td:first-child {
    width: 66%;
  }

  .project-table thead th:last-child,
  .project-table tbody td:last-child {
    width: 34%;
  }

  .project-table thead th,
  .project-table tbody td {
    padding: 14px 14px;
    font-size: 13px;
  }
  
  .project-popup-content {
    padding: 32px 16px 70px 16px;
  }
}

.project-table tbody td {
  vertical-align: middle;
}

/* ============================
   PROJECT POPUP SKELETON
============================ */

.project-skeleton {
  width: 100%;
}

.project-skeleton-gallery {
  height: 280px;
  background: #e6e6e6;
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
}

.project-skeleton-body {
  padding: 24px;
}

.sk-line,
.sk-row,
.sk-btn,
.project-skeleton-gallery {
  background: linear-gradient(
    90deg,
    #ececec 25%,
    #f5f5f5 37%,
    #ececec 63%
  );
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s ease-in-out infinite;
}

.sk-title {
  height: 22px;
  width: 60%;
  margin-bottom: 24px;
  border-radius: 6px;
}

.sk-block {
  margin-bottom: 18px;
}

.sk-label {
  height: 12px;
  width: 120px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.sk-text {
  height: 14px;
  width: 100%;
  margin-bottom: 6px;
  border-radius: 4px;
}

.sk-text.short {
  width: 70%;
}

.sk-table {
  margin: 24px 0;
}

.sk-row {
  height: 42px;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 6px;
}

.sk-btn {
  height: 44px;
  width: 180px;
  border-radius: 10px;
  margin-top: 16px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* CONTACT PAGE MAIN */

.contact-page .contact-form {
    padding: 164px 0 64px;   
}

@media (max-width: 1024px) {
   .contact-page .contact-form {
    padding: 100px 0 64px;   
} 

    .contact-page .contact-form-content {
        height: 100%;
    }


}

@media (max-width: 767px) {
    
    .contact-page .contact-form-content {
        gap: 40px;
    }
    
    .contact-page .contact-form-bg {
        position: relative;
    }
}



