﻿.banner {
  position: relative;
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
}
.banner .container {
  width: 100%;
  height: 100%;
}
.banner .container .banner_text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 7vh;
  font-size: 4rem;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.home {
  width: 100%;
}
.home .container {
  width: 100%;
}
.home .container .home_one {
  margin-top: 5rem;
}
.home .container .home_one .title {
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #3B3B3B;
}
.home .container .home_one .content {
  color: #757575;
  font-size: 1.1rem;
}
.home .container .home_two {
  margin-top: 3rem;
}
.home .container .home_two .title {
  display: flex;
  justify-content: start;
  flex-direction: row;
  align-items: center;
}
.home .container .home_two .title .one {
  width: 1.5rem;
  height: 0.2rem;
  min-width: 1.5rem;
  background: linear-gradient(135deg, #2CA6E0 0%, #0DAC67 100%);
}
.home .container .home_two .title .two {
  background: linear-gradient(135deg, #2CA6E0 0%, #0DAC67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 1rem;
}
.home .container .home_two .content {
  margin-top: 1.5rem;
}
.home .container .home_two .content img {
  width: 100%;
}
.home .container .home_three {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.home .container .home_three .list {
  border: 0.05rem solid #E3E3E3;
  border-radius: 1rem;
  width: 32.5%;
  height: 24vh;
  padding: 2rem;
}
.home .container .home_three .list .title {
  background: linear-gradient(135deg, #2CA6E0 0%, #0DAC67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 1rem;
}
.home .container .home_three .list .content {
  color: #757575;
  margin-top: 1rem;
}
.home .container .home_three .list .content li:not(:first-child) {
  margin-top: 1rem;
}
.home .container .home_four {
  margin-top: 3rem;
}
.home .container .home_four .title {
  display: flex;
  justify-content: start;
  flex-direction: row;
  align-items: center;
}
.home .container .home_four .title .one {
  width: 1.5rem;
  height: 0.2rem;
  min-width: 1.5rem;
  background: linear-gradient(135deg, #2CA6E0 0%, #0DAC67 100%);
}
.home .container .home_four .title .two {
  color: #3B3B3B;
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 1rem;
}
.home .container .home_four .content {
  margin-top: 1.5rem;
}
.home .container .home_four .content ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0 !important;
}
.home .container .home_four .content ul li {
  width: 23%;
  background-color: #F7F7F7;
  height: 22vh;
  padding: 2rem;
  border-radius: 1rem;
}
.home .container .home_four .content ul li h1 {
  color: #E3E3E3;
  font-weight: 700;
  font-size: 3.5rem;
}
.home .container .home_four .content ul li div {
  color: #3B3B3B;
  font-weight: 600;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .banner .container .banner_text {
    position: relative;
    font-size: 3rem !important;
  }
  .home .container .home_one .title {
    font-size: 1.8rem !important;
  }
  .home .container .home_three {
    display: flex;
    flex-direction: column;
  }
  .home .container .home_three .list {
    width: 100%;
  }
  .home .container .home_three .list:not(first-child) {
    margin-top: 1.5rem;
  }
  .home .container .home_four .content ul {
    flex-direction: column;
  }
  .home .container .home_four .content ul li {
    width: 100%;
  }
  .home .container .home_four .content ul li:not(first-child) {
    margin-top: 1.5rem;
  }
}
