.about-us .about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  padding: 50px 0;
  width: 85%;
  margin: 0 auto;
}

.about-us .about-container .about-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}

.about-us .about-container .about-first .left {
  width: 50%;
}

.about-us .about-container .about-first .left .bigtitle {
  font-size: 40px;
  font-weight: 500;
  color: #202124;
}

.about-us .about-container .about-first .left .smalltitle {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  margin-top: 10px;
}

.about-us .about-container .about-first .left .text {
  font-size: 17px;
  color: #222222;
}

.about-us .about-container .about-first .left .text ul {
  list-style: disc;
  padding-left: 20px;
}

.about-us .about-container .about-first .left .text ul li {
  margin-top: 10px;
  font-size: 17px;
  color: #222222;
}

.about-us .about-container .about-first .left .link {
  margin-top: 20px;
}

.about-us .about-container .about-first .left .link a {
  background-color: transparent;
  border: 2px solid #03429f;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #03429f;
  font-weight: 500;
}

.about-us .about-container .about-first .right {
  width: 50%;
}

.about-us .about-container .about-first .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us .about-container .about-second .bigtitle {
  font-size: 40px;
  font-weight: 500;
  color: #202124;
}

.about-us .about-container .about-second .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.about-us .about-container .about-second .boxes .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
}

.about-us .about-container .about-second .boxes .box .text {
  font-size: 16px;
  font-weight: 300;
  color: #696969;
}

.about-us .about-container .about-second .boxes .box .author {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  color: #202124;
  margin-top: 10px;
}

@media (max-width: 720px) {
  .about-us .about-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 100px;
    padding: 50px 0;
    width: 90%;
    margin: 0 auto;
  }
  .about-us .about-container .about-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .about-us .about-container .about-first .left {
    width: 100%;
  }
  .about-us .about-container .about-first .left .bigtitle {
    font-size: 30px;
    font-weight: 500;
    color: #202124;
  }
  .about-us .about-container .about-first .left .smalltitle {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    margin-top: 10px;
  }
  .about-us .about-container .about-first .left .text {
    font-size: 15px;
    color: #222222;
  }
  .about-us .about-container .about-first .left .text ul {
    list-style: disc;
    padding-left: 20px;
  }
  .about-us .about-container .about-first .left .text ul li {
    margin-top: 10px;
    font-size: 15px;
    color: #222222;
  }
  .about-us .about-container .about-first .left .link {
    margin-top: 20px;
  }
  .about-us .about-container .about-first .left .link a {
    background-color: transparent;
    border: 2px solid #03429f;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #03429f;
    font-weight: 500;
  }
  .about-us .about-container .about-first .right {
    width: 100%;
  }
  .about-us .about-container .about-first .right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-us .about-container .about-second .bigtitle {
    font-size: 30px;
    font-weight: 500;
    color: #202124;
  }
  .about-us .about-container .about-second .boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
  }
  .about-us .about-container .about-second .boxes .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100px;
  }
  .about-us .about-container .about-second .boxes .box .text {
    font-size: 15px;
    font-weight: 300;
    color: #696969;
  }
  .about-us .about-container .about-second .boxes .box .author {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
    color: #202124;
    margin-top: 10px;
  }
}
/*# sourceMappingURL=about.css.map */