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

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

@font-face {
  font-family: "Source Code Pro";
  src: url("../fonts/Source_Code_Pro/SourceCodePro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Code Pro";
  src: url("../fonts/Source_Code_Pro/SourceCodePro-Italiс.woff2")
    format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* reset */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  zoom: 0.75;
  font-family: "Inter", sans-serif;
}

ul,
ol {
  list-style: none;
}

/* ================================ 
   ============ header ============ 
   ================================ 
*/
header {
  margin-inline: auto;
  max-width: 1920px;
  height: 156px;
  margin-bottom: 44px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-nav,
.footer-nav {
  width: 100%;
  height: 100%;
  padding-inline: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
a.logo {
  text-transform: uppercase;
  width: 264px;
  height: 72px;
  font-family: "Inter";
  transform: scaleY(0.8);
  font-weight: 640;
  font-size: 3.75rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(0, 0, 0, 1);
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;

  & > span {
    color: rgba(160, 1, 1, 1);
  }
}
.header-ul,
.footer-ul {
  width: 69.21875%;
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-link > a {
  text-transform: uppercase;
  display: block;

  font-family: "Inter";
  transform: scaleY(0.8);
  font-weight: 750;
  font-size: 1.875rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  text-align: center;
}

.hide-menu-el {
  display: none;
}
.header-nav-mobile {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-nav-mobile > .header-ul {
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(270deg, #d4d2d2 0%, #cccccc);
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  overflow-y: auto;
}
.header-nav-mobile > .header-ul > li {
  text-align: center;
  width: 100%;
}
/* ================================ 
   ============= main ============= 
   ================================ 
*/
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  margin-inline: auto;
}
/* ================================ 
   ============ footer ============ 
   ================================ 
*/
footer {
  margin-inline: auto;
  max-width: 1920px;
  height: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 58px 296px;
  background-image: url(../images/index/Pattern-footer.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.conection_with_us {
  width: 76%;
  height: 586px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.conection_with_us > h1 {
  width: 600px;
  height: 84px;
  font-family: "Inter";
  transform: scaleY(0.8);
  font-weight: 870;
  font-size: 4.375rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(0, 0, 0, 1);
  align-self: center;
}
.contact-info_block {
  width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
  background-image: url(../images/index/cancu.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-info {
  width: 100%;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-wrap: nowrap;
}
.contact-info > span {
  font-family: "Source Code Pro";
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 100%;
  letter-spacing: 2%;
  color: rgba(0, 0, 0, 1);
}
.contact-info > span + a {
  font-family: "Source Code Pro";
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 2%;
  color: rgba(106, 0, 0, 1);
  text-decoration: none;
  margin-top: 19px;
}
.footer-logo {
  width: 89px;
  height: 89px;
}
.footer-nav {
  padding: 0;
  height: 100px;
}
.footer-ul {
  width: 100%;
}
.privat_policy {
  font-family: "Inter";
  transform: scaleY(0.8);
  font-weight: 750;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(170, 170, 170, 1);
  text-decoration: none;
}
/* ================================ 
   ========= @media-query ========= 
   ================================ 
*/
.hover {
  transition: opacity 0.2s ease-in-out;
}

@media (hover: hover) {
  .hover:hover {
    opacity: 0.3;
  }
}
.news-empty {
  font-family: "Source Code Pro";
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 2%;
  color: rgba(106, 0, 0, 1);
  text-decoration: none;
}
