.banner {
  min-height: 280px;
  position: relative;
}

.banner .img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  min-height: 280px;
}

.banner .text {
  font-family: Arial-BoldMT;
  font-size: 60px;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform:uppercase;
}

.crumbs {
  display: flex;
  padding-left: 24px;
  background-image: url(../images/address.png);
  background-repeat: no-repeat;
  background-size: 12px 15px;
  background-position: left center;
  margin-top: 30px;
  font-family: ArialMT;
  font-size: 14px;
  color: #878787;
  align-items: center;
  line-height: 1;
}

.crumbs .item {
  margin-right: 4px;
}

.crumbs .line {
  margin-right: 4px;
}

.contactContent {
  padding-top: 80px;
  padding-bottom: 90px;
  display: flex;
  justify-content: space-between;
}

.contactContent .smallTitle {
  font-family: Arial-BoldMT;
  font-size: 18px;
  color: var(--theme-color);
}

.contactContent .descrobe {
  font-family: Arial-BoldMT;
  font-size: 36px;
  line-height: 1.3;
  color: #000;
  padding-top: 20px;
}

.contactContent .help {
  width: 50%;
  padding-right: 118px;
}

.contactContent .help .phone {
  padding-top: 68px;
}

.contactContent .help .email {
  padding-top: 60px;
}

.contactContent .help .item {
  display: flex;
  align-items: center;
}

.contactContent .help .item .icon {
  width: 90px;
  height: 90px;
  background-color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contactContent .help .item .icon svg {
  width: 30px;
  height: 30px;
}

.contactContent .help .item .icon svg path {
  fill: #FFF;
}

.contactContent .help .item .text {
  margin-left: 44px;
  line-height: 1;
}

.contactContent .help .item .text .top {
  font-family: ArialMT;
  font-size: 18px;
  color: #5f5f5f;
}

.contactContent .help .item .text .bottom {
  font-family: Arial-BoldMT;
  font-size: 24px;
  color: var(--theme-color);
  padding-top: 12px;
  word-break: break-all;
}

.contactContent .way {
  width: 50%;
}

.contactContent .way .point {
  position: relative;
}

.contactContent .way .point::after {
  content: '*';
  margin-left: 5px;
  color: #ff0000;
}

.contactContent .way .list {
  display: flex;
  padding-top: 33px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contactContent .way .item {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
  width: 100%;
}

.contactContent .way .item .text {
  padding-bottom: 17px;
  font-family: ArialMT;
  font-size: 16px;
  display: flex;
}

.contactContent .way .item .inp {
  width: 100%;
  height: 50px;
  border: solid 1px #e5e5e5;
  padding-left: 15px;
  transition: all 0.5s;
  color: #878787;
  Caret-color: var(--theme-color);
}

.contactContent .way .item .inp:focus {
  border-color: var(--theme-color);
}

.contactContent .way .item .inp:hover {
  border-color: var(--theme-color);
}

.contactContent .way .item .inp::placeholder {
  color: #e5e5e5;
}

.contactContent .way .item .textArea {
  height: 110px;
  width: 100%;
  border: solid 1px #e5e5e5;
  resize: none;
  padding-left: 15px;
  padding-top: 10px;
  color: #878787;
  Caret-color: var(--theme-color);
}

.contactContent .way .item .textArea:focus {
  border-color: var(--theme-color);
}

.contactContent .way .item .textArea:hover {
  border-color: var(--theme-color);
}

.contactContent .way .item .textArea::placeholder {
  color: #e5e5e5;
}

.contactContent .way .name,
.contactContent .way .email {
  width: 48.48%;
}

.contactContent .way .message {
  padding-bottom: 0;
}

.contactContent .way .submit {
  margin-top: 32px;
  width: 200px;
  height: 60px;
  border-radius: 30px;
  background-color: var(--theme-color);
  color: #FFF;
  font-family: Arial-BoldMT;
  font-size: 16px;
  transition: all 0.5s;
  border: 1px solid transparent;
}

.contactContent .way .submit:hover {
  border-color: var(--theme-color);
  background-color: #fff;
  color: var(--theme-color);
}

@media (max-width: 1024px) {
  .contactContent .smallTitle {
    font-size: 16px;
  }
  .contactContent .descrobe {
    font-size: 24px;
  }
  .contactContent .help {
    padding-right: 30px;
  }
  .contactContent .help .item .icon {
    width: 60px;
    height: 60px;
  }
  .contactContent .help .item .icon svg {
    width: 20px;
    height: 20px;
  }
  .contactContent .help .item .text {
    margin-left: 24px;
  }
  .contactContent .help .item .text .top {
    font-size: 16px;
  }
  .contactContent .help .item .text .bottom {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .banner .text {
    font-size: 32px;
  }
  .contactContent {
    flex-direction: column;
    padding: 40px 0;
  }
  .contactContent .smallTitle {
    font-size: 14px;
  }
  .contactContent .descrobe {
    font-size: 18px;
    padding-top: 10px;
  }
  .contactContent .help {
    width: 100%;
    padding-right: 0;
    padding-bottom: 40px;
  }
  .contactContent .help .phone {
    padding-top: 30px;
  }
  .contactContent .help .email {
    padding-top: 30px;
  }
  .contactContent .help .item .icon {
    width: 45px;
    height: 45px;
  }
  .contactContent .help .item .icon svg {
    width: 15px;
    height: 15px;
  }
  .contactContent .help .item .text {
    margin-left: 15px;
  }
  .contactContent .help .item .text .top {
    font-size: 12px;
  }
  .contactContent .help .item .text .bottom {
    font-size: 14px;
    padding-top: 5px;
  }
  .contactContent .way {
    width: 100%;
  }
  .contactContent .way .list {
    padding-top: 15px;
  }
  .contactContent .way .item {
    padding-bottom: 20px;
  }
  .contactContent .way .item .text {
    padding-bottom: 5px;
    font-size: 14px;
  }
  .contactContent .way .email,
  .contactContent .way .name {
    width: 100%;
  }
  .contactContent .way .submit {
    width: 120px;
    height: 40px;
    font-size: 14px;
    margin-top: 15px;
  }
}
