@import url("./font.css");
@import url("./style.css");

/*Kubra FE-27 Contact Information Start */

.fe-27-nav-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  margin: 0 auto;
}

.fe-27-nav-logo {
  margin-left: 50px;
  margin-top: 10px;
}

.fe-27-hamburger-menu {
  font-size: 30px;
  cursor: pointer;
  display: none;
}

.fe-27-nav-list {
  height: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  gap: 80px;
}

.fe-27-nav-list-item {
  position: relative;
  padding: 10px 10px;
  cursor: pointer;
}

.fe-27-nav-list-item a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
}

.fe-27-nav-list-item::before,
.fe-27-nav-list-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #000000;
  transition: transform 0.8s ease;
}

.fe-27-nav-list-item::before {
  top: 0;
  transform: scaleX(0);
}

.fe-27-nav-list-item::after {
  bottom: 0;
  transform: scaleX(0);
}

.fe-27-nav-list-item.active::before,
.fe-27-nav-list-item.active::after {
  transform: scaleY(1);
}

.fe-27-nav-menu a:hover {
  color: #99c3d3;
}

@media (max-width: 1000px) {
  .fe-27-hamburger-menu {
    display: block;
    margin-top: 10px;
  }

  .fe-27-nav-menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    height: calc(100vh - 120px);
    transform: translate(-50%, -50%);
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: #fff;
  }

  .fe-27-show-menu .nav-menu {
    display: flex;
  }

  .fe-27-nav-list {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 5px;
  }

  .fe-27-nav-list {
    margin: 10px 0;
  }
}

/*Kubra FE-27 Contact Information Start */

.fe-27-contact-info {
  max-width: 1440px;
  min-height: calc(100vh - 412px);
  width: 100%;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
}

.fe-27-loading-spinner {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fe-27-contact {
  max-width: 360px;
  width: 100%;
  font-weight: 300;
  font-family: var(--basic-font);
  font-size: var(--font-size-3xl);
  color: var(--medium-gray);
  padding: 100px 0 0 80px;
}

.fe-27-info {
  max-width: 600px;
  width: 100%;
  font-weight: 700;
  font-family: var(--basic-font);
  font-size: var(--font-size-3xl);
  color: var(--black);
  padding: 0 0 0 80px;
}

.fe-27-company-name,
.fe-27-company-number {
  max-width: 600px;
  width: 100%;
  height: 46px;
  font-weight: 700;
  font-family: var(--basic-font);
  font-size: var(--font-size-m);
  color: var(--black);
  padding: 30px 0 0 80px;
}

.fe-27-company-address {
  max-width: 600px;
  width: 100%;
  font-weight: 300;
  font-family: var(--basic-font);
  font-size: var(--font-size-m);
  color: var(--dark-gray);
  padding: 5px 0 0 80px;
}

.fe-27-company-mail {
  max-width: 600px;
  width: 100%;
  font-weight: 300;
  font-family: var(--basic-font);
  font-size: var(--font-size-m);
  color: var(--dark-gray);
  padding: 30px 0 30px 80px;
}

.fe-27-contact-us {
  max-width: 221px;
  width: 100%;
  height: 71px;
  margin-left: 135px;
  font-size: var(--font-size-xs);
  font-family: var(--basic-font);
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .fe-27-contact-info {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0 100px 0;
  }

  .fe-27-info {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .fe-27-contact {
    font-size: calc(var(--font-size-3xl) * 0.8);
    padding: 50px 0 0 20px;
  }

  .fe-27-info {
    font-size: calc(var(--font-size-3xl) * 0.8);
    padding: 0 0 0 20px;
  }

  .fe-27-company-name,
  .fe-27-company-number,
  .fe-27-company-address,
  .fe-27-company-mail {
    font-size: calc(var(--font-size-m) * 0.9);
    padding-left: 20px;
  }

  .fe-27-contact-us {
    margin-left: 20px;
    width: 90%;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .fe-27-contact {
    font-size: calc(var(--font-size-3xl) * 0.6);
  }

  .fe-27-info {
    font-size: calc(var(--font-size-3xl) * 0.6);
  }

  .fe-27-company-name,
  .fe-27-company-number,
  .fe-27-company-address,
  .fe-27-company-mail {
    font-size: calc(var(--font-size-m) * 0.8);
  }

  .fe-27-contact-us {
    width: 100%;
    height: 45px;
    font-size: calc(var(--font-size-xs) * 0.9);
  }
}

#map {
  max-width: 1319px;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  margin: 20px 0;
  transform: translate(35%, 5%);
}

@media (max-width: 768px) {
  #map {
    height: 300px;
  }
}

@media (max-width: 480px) {
  #map {
    height: 250px;
  }
}

/*Kubra FE-27 Contact Information   End */

/* Kubra / FE-18 Contact Page Footer Start */

.fe-27-footer {
  display: grid;
  grid-template-columns: 10% 30% 30% 30%;
  background-color: #2c2c2c;
  padding: 25px 30px;
  color: #fff;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  font-family: var(--basic-font);
  font-size: var(--font-size-m);
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 2rem 1rem;
}

.fe-27-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fe-27-footer .left {
  display: flex;
  justify-content: space-evenly;
}

.fe-27-footer img {
  width: 145px;
  height: 94px;
  margin-left: 20px;
}

.fe-27-footer .fe-27-left a {
  color: #fff;
  margin-left: -35px;
  gap: 25px;
}

.fe-27-footer .fe-27-left ul li {
  list-style-type: none;
  margin-top: 17px;
}

.fe-27-footer .fe-27-information ul li a {
  margin-left: 25px;
}

.fe-27-footer .fe-27-contacts .fe-27-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}

.fe-27-footer .fe-27-right .fe-27-class {
  margin-top: 25px;
}

.fe-27-footer .fe-27-contacts .fe-27-contacts-list i {
  margin-right: 5px;
}

.fe-27-footer .fe-27-right i {
  margin-right: 30px;
}

.fe-27-footer i:hover,
.fe-27-footer li:hover {
  transform: translateY(-3px) translateX(-5px);
}

.fe-27-footer-end {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fe-27-footer-line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-bottom: 15px;
}

.fe-27-footer-end-text {
  color: #ccc;
  font-size: 14px;
}

@media (max-width: 1210px) {
  .fe-27-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fe-27-footer img {
    margin: 20px auto;
  }

  .fe-27-footer .fe-27-contacts {
    text-align: center;
    margin-bottom: 30px;
  }

  .fe-27-footer .fe-27-right {
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fe-27-footer .fe-27-right .fe-27-class {
    display: inline;
  }
}

@media (max-width: 780px) {
  .fe-27-footer {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fe-27-footer .fe-27-contacts {
    margin: 20px auto;
  }

  .fe-27-footer img {
    margin: 20px auto;
  }
}

/* Kubra / FE-18 Contact Page Footer End */
