@import url("fonts.css");
body {
  font-family: "Proxima Nova";
}
.hide{
	display:none;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
}
.header-nav-wrap {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.header-wrap {
  background: #35c1f4;
  position: relative;
}
.header-logo {
  padding: 1px 0 0 10px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  padding: 31px 0;
  display: inline-block;
}
.nav-link:hover {
  border-bottom: 3px #ffffff solid;
}
.nav-list {
  display: flex;
}
.nav-item {
  margin-right: 20px;
}
.nav-item:nth-last-child(-n+1) {
  margin-right: 0;
}
.nav-search {
  vertical-align: center;
}

.site-header {
  position: relative;
  width: 100%;
  z-index: 30;
}

.header-call {
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.call-circle {
  background: #476ba7;
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px #14b5f0 solid;
}

.call-icon {
  position: relative;
  width: 16px;
  color: #ffffff;
  top: 14px;
  left: 14px;
}

.number-text {
  font-size: 24px;
  display: block;
  padding: 5px 0;
}

.number {
  font-size: 14px;
  font-weight: 600;
}

.call-number {
  margin-left: 10px;
}

.call-number,
.number-link {
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
}

@media screen and (max-width: 1225px) {
  .nav-item {
    margin-right: 10px;
    height: 84px;
  }
}
@media screen and (max-width: 1025px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .nav-link {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 780px) {
  .header-logo img {
    height: 70px;
  }
}

@media screen and (max-width: 700px) {
  .header-logo img {
    height: 55px;
  }

  .header-nav-wrap {
    position: absolute;
    left: -100%;
    transition: 0.3s;
    top: 59px;
  }
  .header-nav-wrap.visible {
    left: 0;
  }

  .nav-menu {
    position: absolute;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 4;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-item {
    height: unset;
  }

  .nav-link {
    padding: 15px 40px;
    color: #000000;
    font-weight: normal;
    border-bottom: 3px #14b5f0 solid;
  }

  .header .menu__icon {
    display: block;
    position: absolute;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
    top: 20px;
    left: 10px;
  }
  .header .menu__icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    top: 8px;
  }
  .header .menu__icon span:nth-child(n) {
    transition: all 0.2s ease-out;
  }
  .header .menu__icon span:first-child {
    top: 0;
  }
  .header .menu__icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .header .menu__icon.clicked :nth-child(2) {
    opacity: 0;
  }
  .header .menu__icon.clicked :nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  .header .menu__icon.clicked :nth-child(3) {
    transform: rotateZ(-45deg);
    top: 8px;
  }
}
/*# sourceMappingURL=header.css.map */
