/* banner */
.banner {
  position: relative;
}

.banner img {
  width: 100%;
  min-height: 250px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, .7);
}

.banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
}

@media (min-width: 992px) {
  .banner .container {
    max-width: 960px;
  }
}

@media (min-width: 1440px) {
  .banner .title {
    font-size: 48px;
  }
}


/* contact */
.contact {
  padding: 30px 0;
}

.contact .title {
  margin-bottom: 20px;
}

.contact .row {
  margin-bottom: -30px;
}

.contact .row>div {
  text-align: center;
  margin-bottom: 30px;
}

.contact .icon {
  width: 56px;
  height: 56px;
  color: #fff;
  margin: 0 auto;
  font-size: 24px;
  border-radius: 50%;
  background: #2A83DA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .icon i {
  font-size: inherit;
}

.contact .tit {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #2A83DA;
  font-family: "Roboto-M";
}

.contact .info {
  line-height: 1.8;
}

@media (min-width: 992px) {
  .contact .row>div {
    padding: 0 20px;
  }

  .contact .row>div:not(:last-child) {
    position: relative;
  }

  .contact .row>div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55%;
    background: #333;
  }
}

@media (min-width: 1200px) {
  .contact {
    padding: 65px 0 55px;
  }

  .contact .title {
    margin-bottom: 40px;
  }

  .contact .row>div {
    padding: 0 50px;
  }

  .contact .tit {
    margin-top: 15px;
    margin-bottom: 8px;
  }
}

@media (min-width: 1440px) {
  .contact .title {
    margin-bottom: 55px;
  }

  .contact .row>div {
    padding: 0 100px;
  }
}


/* contact-bottom */
.contact-bottom {
  padding: 50px 0;
  min-height: 23.18vw;
  color: #fff;
  position: relative;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.contact-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 99, 228, .8);
}

.contact-bottom .container {
  position: relative;
  z-index: 1;
}

.contact-bottom .title {
  margin-bottom: 20px;
  font-family: "Roboto-M";
}

.contact-bottom .btn {
  width: 270px;
  border-radius: 42px;
  border: 1px solid #fff;
  font-family: "Roboto-M";
}

@media (min-width: 1200px) {
  .contact-bottom {
    padding: 80px 0;
  }

  .contact-bottom .title {
    margin-bottom: 38px;
  }

  .contact-bottom .btn {
    width: 352px;
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .contact-bottom .btn:hover {
    color: var(--sub-color);
    background: #fff;
  }
}

@media (min-width: 1440px) {
  .contact-bottom .title {
    font-size: 48px;
  }
}