@font-face {
  font-family: "RethinkSans-Bold";
  src: url(../fonts/RethinkSans-Bold.woff2) format("woff2");
}
@font-face {
  font-family: "RethinkSans";
  src: url(../fonts/RethinkSans-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Syne";
  src: url(../fonts/syne.woff2) format("woff2");
}
::before,
::after,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
  --bg-color: #dfeaff;
  --color: #1a1424;
  --header-bar-height: 70px;
  --default-layout-width: 1440px;
  font-family: "RethinkSans", sans-serif;
}

*, *:before, *:after {
  color: inherit;
}

*:focus {
  outline: none;
}

html {
  min-width: var(--default-layout-width);
}

.title {
  color: #1a1424;
}

.header {
  width: 100%;
  background-color: #1a1424;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.header.fixed + .main {
  padding-top: var(--header-bar-height);
}
.header .header-content {
  margin: 0 auto;
  width: 100%;
  max-width: var(--default-layout-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .header-content .menu {
  display: flex;
  height: 100%;
}
.header .header-content .menu .menu-item {
  height: 100%;
  color: #fff;
  padding: 0 32px;
  font-size: 18px;
  cursor: pointer;
  font-family: Syne, serif;
  text-decoration: none;
  font-weight: 700;
  line-height: var(--header-bar-height);
}
.header .header-content .menu .menu-item:first-child {
  padding: 0 32px 0 0;
}

.section {
  background-color: #fff;
  padding: 40px 0;
}

.content-wrap {
  max-width: var(--default-layout-width);
  margin: 0 auto;
}

.customized {
  padding: 120px 0;
  text-align: center;
}
.customized > .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.customized > .desc {
  font-size: 18px;
  color: #888;
}

.banner {
  background-image: url("../images/slider2.jpg");
  height: 750px;
  background-size: cover;
}
.banner .title {
  width: 800px;
  font-size: 66px;
  color: #fff;
  margin-bottom: 20px;
  font-family: Syne, sans-serif;
  font-weight: 700;
  padding-top: 200px;
}
.banner .desc {
  color: #fff;
  font-size: 24px;
  padding-right: 40px;
  width: 650px;
  font-family: "RethinkSans", sans-serif;
  line-height: 36px;
}
.banner .banner-img {
  width: 700px;
  height: 700px;
  flex-shrink: 0;
  overflow: hidden;
}
.banner .banner-img > img {
  display: block;
  width: 0;
  height: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 2rem;
}

.choose-us {
  padding: 100px 0;
  font-family: "RethinkSans-Bold", sans-serif;
  display: flex;
  align-items: center;
}
.choose-us > .title {
  font-size: 60px;
  font-weight: 700;
}
.choose-us > .title .sub-title {
  font-size: 40px;
}
.choose-us > .content {
  flex: 1;
  font-size: 20px;
  margin-left: 100px;
  font-family: Syne, sans-serif;
}

.services > .title {
  text-align: center;
  font-size: 34px;
  font-family: Syne, sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
}
.services .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.services .cards .card {
  width: calc(50% - 20px);
  padding: 2rem 3rem;
  border-radius: 1rem;
  height: 220px;
  background-color: #fff;
  color: #1a1424;
}
.services .cards .card .title {
  font-size: 36px;
  text-align: center;
  font-family: "RethinkSans-Bold", sans-serif;
}
.services .cards .card .desc {
  font-size: 18px;
  text-align: left;
  font-family: "RethinkSans", sans-serif;
}
.services .cards .card .price {
  height: 40px;
  font-size: 16px;
  color: #2d2f33;
}

.footer {
  text-align: center;
  padding: 40px 0;
  background-color: #1a1424;
}
.footer .email {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  font-size: 14px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer .email:hover {
  color: #fff;
}
.footer .email > img {
  width: 20px;
  margin-right: 8px;
}/*# sourceMappingURL=index.css.map */