@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?ykp91j");
  src: url("../fonts/icomoon.eot?ykp91j#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?ykp91j") format("truetype"), url("../fonts/icomoon.woff?ykp91j") format("woff"), url("../fonts/icomoon.svg?ykp91j#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon--phone:before {
  content: "\e900";
}

.icon--mail:before {
  content: "\e901";
}

html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 8.7rem;
}

@media screen and (max-width: 550px) {
  body {
    padding: 0 4.8rem;
  }
}
@media screen and (max-width: 475px) {
  body {
    padding: 0 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  body {
    padding: 0 2rem;
  }
}
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.background-image__overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(72deg, rgba(57, 63, 202, 0.8) 8.69%, rgba(8, 16, 58, 0.69) 84.29%), url("../assets/MLD_background.jfif"), lightgray 50%/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
  animation: pulse 8s ease-in-out infinite;
}
@media screen and (max-width: 1100px) {
  .background-image__overlay {
    background-position: 50%;
  }
}
@media screen and (max-width: 800px) {
  .background-image__overlay {
    background-position: 65%;
    animation: none;
  }
}

@keyframes pulse {
  0% {
    transform: sacle(-1, 1);
  }
  50% {
    transform: scale(-1.04, 1.04);
  }
  100% {
    transform: scale(-1, 1);
  }
}
.info {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  width: 100%;
  color: #fff;
  font-family: Inter;
}
.info img {
  width: 14.8rem;
}
.info__address {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5em;
}
.info__address-name {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5em;
}
.info__no {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5em;
}
.info__contact {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (max-width: 500px) {
  .info__contact {
    justify-content: space-between;
  }
}
@media screen and (max-width: 430px) {
  .info__contact {
    flex-direction: column;
    align-items: center;
  }
}
.info__contact-phone, .info__contact-email {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.info__contact-phone span, .info__contact-email span {
  position: relative;
  top: 0.2rem;
}
.info__contact-phone::before, .info__contact-email::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0.1rem;
  width: 100%;
  background-color: rgba(242, 242, 242, 0.4);
  transition: all 300ms ease;
}
.info__contact-phone:hover::before, .info__contact-phone:focus::before, .info__contact-phone:focus-visible::before, .info__contact-email:hover::before, .info__contact-email:focus::before, .info__contact-email:focus-visible::before {
  background-color: yellow;
  height: 0.5rem;
  top: -0.5rem;
}
.info__contact-phone:hover, .info__contact-phone:focus, .info__contact-phone:focus-visible, .info__contact-email:hover, .info__contact-email:focus, .info__contact-email:focus-visible {
  color: yellow;
}
@media screen and (max-width: 430px) {
  .info-phone, .info-email {
    justify-content: center;
    padding: 1rem 2.5rem;
    text-align: center;
  }
}
.info__contact-fill {
  flex: 1;
  border-top: 0.1rem solid rgba(242, 242, 242, 0.4);
}
@media screen and (max-width: 800px) {
  .info__contact-fill {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  .info {
    align-items: center;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */