.home {
  width: 100%;
  position: relative;
}
.home .banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: big2 32s forwards linear;
}
@keyframes big2 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.home .banner .t1 {
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: #ffffff;
  font-size: 40px;
  font-weight: bolder;
  letter-spacing: 3px;
}
.home .banner .links {
  position: absolute;
  left: 15%;
  width: 70%;
  bottom: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .banner .links i {
  color: #ffffff;
}
.home .banner .links a, .home .banner .links p {
  color: #ffffff;
  font-weight: 200;
}
.home .banner .links a {
  margin: 0 8px;
  display: inline-block;
}
.home .fixNav {
  position: fixed;
  left: 10%;
  right: 10%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(9px);
  box-shadow: inset 0 -2px 10px 1px rgba(255, 255, 255, 0.08);
  z-index: 10;
  top: 85px;
  border: 1px solid #EEEEEE;
  padding: 15px  76px 15px 76px;
  border-radius: 50px;
  transition: all 600ms;
  opacity: 0;
  transform: translateY(-87px);
}
.home .fixNav .allP {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
    display: flex;
    justify-content: space-between;
  transition: all 600ms;
}
.home .fixNav .allP::-webkit-scrollbar {
  height: 5px;
  background: transparent;
}
.home .fixNav .allP::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: #11327E;
}
.home .fixNav .allP a {
  font-size: 20px;
  font-weight: bolder;
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 30px;
  transition: all 600ms;
  color: #000000;
}
.home .fixNav .allP a:hover {
  background-color: #11327E;
  color: #ffffff;
}
.home .fixNav .allP .active {
  background-color: #11327E;
  color: #ffffff;
}
.home .main {
  width: 80%;
  margin: 60px auto;
  margin-top: 115px;
}
.home .main .t1 {
color:#222222;
  text-align: center;
}
.home .main .t1 .p1 {
  font-size: 36px;
  font-weight: bolder;
}
.home .main .t1 .p2 {
  font-size: 36px;
  font-weight: 200;
  text-transform: uppercase;
  margin: 50px 0;
  font-family: "Raleway-Regular";
}
.home .main .navList {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  border: 1px solid #EEEEEE;
  border-radius: 50px;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  margin-top: 60px;
  transition: all 600ms;
background: linear-gradient(0deg, #11327E 0%, #0349A3 100%);
}
.home .main .navList::-webkit-scrollbar {
  display: none;
  height: 5px;
  background: #EEEEEE;
}
.home .main .navList::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: #11327E;
  display: none;
}
.home .main .navList a {
  font-size: 20px;
  display: inline-block;
font-weight: 200;
  padding: 30px 0;
width:20%;
text-align:center;
  transition: all 10ms;
  color:rgba(255,255,255,.9);
border-right:1px solid white;
}
@media screen AND (max-width: 1366px) {
  .home .main .navList a{
    font-size: 14px;
  }
  .home .main .navList a{
    padding: 20px 0;
  }
}

.home .main .navList a:hover {
transform: scale(1.01);
  font-weight: bolder;
color:white;
}
.home .main .navList .active {
  font-weight: bolder;
transform: scale(1.01);
color:white;
}
.home .main .allItems {
  width: 100%;
  margin-top: 120px;
}
.home .main .allItems .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
}
.home .main .allItems .item .pic {
  width: 50%;
  overflow: hidden;
}
.home .main .allItems .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 2s;
  height: 100%;
}
.home .main .allItems .item .text {
  width: 50%;
  padding: 0 5%;
  background-color: #EEEEEE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #000000;
}
.home .main .allItems .item .text::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/pt.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 600ms;
}
.home .main .allItems .item .text .p1 {
  font-size: 24px;
  transition: all 600ms;
  z-index: 2;
}
.home .main .allItems .item .text .des {
  font-size: 18px;
  font-weight: 200;
  line-height: 36px;
  margin: 40px 0;
  transition: all 600ms;
  z-index: 2;
}
.home .main .allItems .item .text .jt {
  z-index: 2;
  color: #1B4098;
}
.home .main .allItems .item .text .jt i {
  transition: all 600ms;
}
.home .main .allItems .item:hover .pic img {
  transform: scale(1.05);
}
.home .main .allItems .item:hover .text::before {
  opacity: 1;
}
.home .main .allItems .item:hover .text .p1, .home .main .allItems .item:hover .text .des {
  color: #ffffff;
}
.home .main .allItems .item:hover .text .jt i {
  color: #ffffff;
}
.home .main .allItems .item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1440px) {
  .home .fixNav {
    width: 70%;
    left: 10%;
  }
  .home .main {
    width: 80%;
  }
  .home .main .navList {
    width: calc(100% - 60px);
  }
  .home .main .allItems .item .text .des {
    margin: 15px 0;
  }
  .home .main .navList a{
    font-size: 18px;
  }
}
@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }
  .home .banner .t1 {
    font-size: 20px;
    width: 90%;
    left: 5%;
line-height: 30px;
  }
  .home .banner .links {
    width: 80%;
    left: 10%;
  }
  .home .fixNav {
    width: 80%;
    left: 5%;
  }
  .home .fixNav a {
    font-size: 18px;
  }
  .home .main {
    width: 90%;
    margin: 50px auto;
  }
  .home .main .t1 .p1 {
    font-size: 20px;
  }
  .home .main .t1 .p2 {
    font-size: 18px;
    margin: 20px 0;
  }
  .home .main .navList {
    margin-top: 30px;
    padding: 10px 30px;
    width: 100%;
border-radius: 20px;
    flex-wrap: wrap;
  }
  .home .main .navList a {
    font-size: 18px;
width: 100%;
border-right: none;
padding: 15px 0;
  }
  .home .main .allItems {
    margin-top: 40px;
  }
  .home .main .allItems .item {
    flex-direction: column !important;
    margin-top: 30px;
  }
  .home .main .allItems .item .pic {
    width: 100%;
  }
  .home .main .allItems .item .text {
    width: 100%;
    padding: 20px 5%;
  }
  .home .main .allItems .item .text .des {
    font-size: 16px;
  }
.home .main .allItems .item .text .p1 {
    font-size: 18px;
}
}

/*# sourceMappingURL=products.css.map */
