* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 111;
}

header.header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header .logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header.header .logo .spans {
  height: 40px;
  width: 50px;
  margin-right: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.header .logo .spans span {
  background-color: #8fc63d;
  height: 40px;
  width: 10px;
  border-radius: 10px;
}
header.header .logo .spans span:first-child {
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  border: none;
}
header.header .logo .spans span:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 35px;
  margin: 0;
  border: none;
}
header.header .logo a {
  margin-left: -7rem;
  text-decoration: none;
}
header.header .logo a h1 {
  color: #6d6e70;
  text-transform: uppercase;
}
header.header .logo a h1 span {
  color: #595959;
}
header.header nav.nav-bar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  width: 100%;
  line-height: 5;
}
header.header nav.nav-bar ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.header nav.nav-bar ul li a {
  text-decoration: none;
  color: #adadad;
  text-align: center;
  font-size: 15px;
}
header.header nav.nav-bar ul li a.btn-1 {
  color: white;
  background-color: #bcda5c;
  line-height: 1;
  border-radius: 60px;
  padding: 10px 20px;
  letter-spacing: 2px;
}

main.main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
main.main .main-banner {
  background-image: url(../img/banner.jpg);
  width: 100%;
  height: 570px;
  background-size: cover;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
main.main .main-banner h1 {
  color: white;
  text-align: center;
  font-size: 60px;
}
main.main .main-banner h1 span {
  font-size: 40px;
}
main.main .main-banner a {
  color: white;
  padding: 15px 25px;
  border-radius: 14px;
  background-color: #99c50a;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  border: 1px solid #99c50a;
}
main.main .main-banner a:hover {
  background-color: transparent;
  border: 1px solid #99c50a;
  color: #f0f0f0;
}
main.main .main-banner::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgb(37, 37, 37);
  opacity: 0.2;
  z-index: -1;
}
main.main .our-work {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding-top: 50px;
  min-height: 500px;
}
main.main .our-work h1 {
  width: 60%;
  text-align: center;
  text-transform: uppercase;
  color: #515151;
}
main.main .our-work p {
  margin-bottom: 50px;
  width: 80%;
  text-align: center;
  color: #a2a2a2;
}
main.main .our-work .icon {
  height: 58px;
  width: 58px;
}
main.main .slide-content {
  width: 80%;
  min-height: 500px;
}
main.main .slide-content .bd-example {
  height: inherit;
}
main.main .slide-content .bd-example #carouselExampleCaptions {
  height: inherit;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators {
  position: absolute;
  top: -1px;
  height: 120px;
  width: 100%;
  margin: 1px auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li {
  height: 100px;
  width: 30%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-indent: 0;
  border-bottom: 2px solid #e6e6e6;
  position: relative;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 {
  font-size: 35px;
  font-weight: 200;
  color: #656565;
  display: flex;
  width: 80%;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 p {
  margin-right: 30px;
  background-color: #5f5f5f;
  border-radius: 100px;
  padding: 4px 15px;
  color: white;
  font-size: 30px;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active {
  border-bottom: 2px solid #add136;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active h1 p {
  background-color: #add136;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li::after {
  content: " ";
  border-bottom: 2px solid #e6e6e6;
  height: 100%;
  width: 500px;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: -1;
}
main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li:last-child::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
}
main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner {
  height: 500px;
}
main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item img {
  position: relative;
  top: 15rem;
  left: 5rem;
  width: 15%;
  height: 170px;
  display: none;
}
main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  left: 300px;
  top: 5rem;
  width: 65%;
  padding: 15px;
}
main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption h3 {
  color: #add136;
  text-align: justify;
}
main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption p {
  color: #9b9b9b;
  text-align: justify;
}
main.main .blog {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.main .blog .card {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #e2f8ff;
  border-radius: 0;
  border: none;
}
main.main .blog .card:last-child {
  background-color: #f5f9eb;
}
main.main .blog .card:last-child .content a {
  background-color: #add136;
  border: 1px solid #add136;
}
main.main .blog .card:last-child .content a:hover {
  background-color: transparent;
  border: 1px solid #add136;
  color: #add136;
}
main.main .blog .card .content {
  margin-left: 10%;
  width: 60%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
main.main .blog .card .content h2 {
  color: #515151;
}
main.main .blog .card .content p {
  color: #515151;
}
main.main .blog .card .content a {
  padding: 8px 15px;
  background-color: #26a6d1;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  width: 50%;
  transition: 0.2s all ease;
  border: 1px solid #26a6d1;
}
main.main .blog .card .content a:hover {
  background-color: transparent;
  border: 1px solid #26a6d1;
  color: #26a6d1;
}
main.main .card-inner {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
main.main .card-inner .card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}
main.main .card-inner .card-title .title {
  height: 140px;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.main .card-inner .card-title .title h1 {
  color: #515151;
  letter-spacing: 2px;
}
main.main .card-inner .card-title .title p {
  color: #8f8f8f;
  width: 80%;
}
main.main .card-inner .card-title .link {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
main.main .card-inner .card-title .link a {
  color: #838383;
  border-radius: 10px;
  border: 1px solid #838383;
  background-color: transparent;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
}
main.main .card-inner .cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
main.main .card-inner .cards .card-item {
  width: 30%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
main.main .card-inner .cards .card-item .img {
  position: relative;
  width: 100%;
  height: 100%;
}
main.main .card-inner .cards .card-item .img .on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
main.main .card-inner .cards .card-item .img .on p {
  color: white;
  background-color: #add136;
  text-align: center;
  font-weight: 500;
  letter-spacing: 2px;
  width: 55px;
  font-size: 11px;
  padding-top: 20px;
  padding-bottom: 20px;
  transform: rotate(-45deg);
  position: relative;
  left: -15px;
  border-radius: 100px;
}
main.main .card-inner .cards .card-item .img .on span {
  background-color: #26a6d1;
  padding: 10px 8px;
  color: white;
  border-radius: 5px;
  position: absolute;
  right: 15px;
  bottom: 20px;
  font-size: 14px;
}
main.main .card-inner .cards .card-item .img img {
  width: 100%;
}
main.main .card-inner .cards .card-item h5 {
  color: #484848;
  font-weight: 700;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 25px;
}
main.main .card-inner .cards .card-item p {
  text-align: justify;
  color: #5c5c5c;
  margin-left: 15px;
  margin-right: 15px;
}
main.main .card-inner .cards .card-item .skills {
  margin: 5px auto;
  width: 90%;
  display: flex;
  flex-direction: column;
}
main.main .card-inner .cards .card-item .skills span {
  width: 100%;
  height: 20px;
  background-color: #e3e3e3;
  border-radius: 10px;
  position: relative;
}
main.main .card-inner .cards .card-item .skills span::after {
  content: " ";
  width: 15%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #add136;
}
main.main .card-inner .cards .card-item .skills span.span2::after {
  width: 65%;
}
main.main .card-inner .cards .card-item .skills span.span3::after {
  width: 25%;
}
main.main .card-inner .cards .card-item .skills .p {
  width: 100%;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
}
main.main .card-inner .cards .card-item .skills .p p {
  color: #8d8d8d;
  font-size: 12px;
  text-align: center;
  margin: 0;
}
main.main .card-inner .cards .card-item hr {
  width: 90%;
  margin: auto;
  border-width: 2px;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
main.main .card-inner .cards .card-item a {
  color: #6d6e70;
  text-decoration: none;
  width: 90%;
  margin: auto;
  text-align: right;
  margin-bottom: 15px;
  margin-top: 10px;
}
main.main .comment-inner {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-image: url(../img/bg-2.jpg);
  background-size: cover;
  background-repeat: round;
  padding-top: 70px;
}
main.main .comment-inner .title {
  width: 80%;
  min-height: 170px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
main.main .comment-inner .title h1 {
  color: #9ec02d;
  text-align: center;
  font-weight: 700;
}
main.main .comment-inner .title p {
  color: #949494;
  text-align: center;
  font-size: 24px;
  line-height: 2;
}
main.main .comment-inner .person {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
main.main .comment-inner .person .card-person {
  width: 50%;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
main.main .comment-inner .person .card-person .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
main.main .comment-inner .person .card-person .content h4 {
  color: #9ec02d;
}
main.main .comment-inner .person .card-person .content p {
  color: #848484;
  text-align: center;
  font-size: 15px;
}
main.main .comment-inner .person .card-person .content::after {
  content: " ";
  width: 20px;
  height: 25px;
  position: absolute;
  bottom: -25px;
  left: 100px;
  background-color: white;
  -webkit-clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
}
main.main .comment-inner .person .card-person .img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 80px;
}
main.main .comment-inner .person .card-person .img img {
  border-radius: 7px;
}
main.main .comment-inner .person .card-person:first-child {
  align-items: flex-start;
}
main.main .comment-inner .person .card-person:last-child {
  align-items: flex-end;
}
main.main .comment-inner .person .card-person:last-child .img {
  margin-right: 170px;
}

footer.footer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
footer.footer p {
  color: #848484;
  text-align: center;
  margin-top: 13px;
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  header.header {
    justify-content: space-between;
    width: 100%;
  }
  header.header .logo {
    display: flex;
    justify-content: space-between;
  }
  header.header nav.nav-bar ul {
    justify-content: space-between;
  }
  header.header nav.nav-bar ul li {
    width: auto;
  }
  main.main .slide-content {
    width: 90%;
    min-height: 500px;
  }
  main.main .slide-content .bd-example {
    height: inherit;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions {
    height: inherit;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators {
    position: absolute;
    top: -1px;
    height: 120px;
    width: 100%;
    margin: 1px auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li {
    height: 100px;
    width: 30%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-indent: 0;
    border-bottom: 2px solid #e6e6e6;
    position: relative;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 {
    font-size: 35px;
    font-weight: 200;
    color: #656565;
    display: flex;
    width: 80%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 p {
    margin-right: 30px;
    background-color: #5f5f5f;
    border-radius: 100px;
    padding: 4px 15px;
    color: white;
    font-size: 30px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active {
    border-bottom: 2px solid #add136;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active h1 p {
    background-color: #add136;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li::after {
    content: " ";
    border-bottom: 2px solid #e6e6e6;
    height: 100%;
    width: 500px;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: -1;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li:last-child::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner {
    height: 500px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item img {
    position: relative;
    top: 15rem;
    left: 5rem;
    width: 15%;
    height: 170px;
    display: none;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    left: 300px;
    top: 5rem;
    width: 65%;
    padding: 15px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption h3 {
    color: #add136;
    text-align: justify;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption p {
    color: #9b9b9b;
    text-align: justify;
  }
  main.main .blog .card {
    justify-content: space-between;
  }
  main.main .blog .card .content {
    margin-right: 3rem;
  }
  main.main .blog .card .content a {
    width: 70%;
  }
  main.main .card-inner {
    width: 90%;
    margin-top: 60px;
  }
  main.main .comment-inner .title {
    width: 90%;
  }
  main.main .comment-inner .title p {
    font-size: 20px;
  }
  main.main .comment-inner .person {
    width: 90%;
  }
}
@media screen and (max-width: 992px) {
  header.header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header.header .logo {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  header.header nav.nav-bar ul {
    justify-content: space-between;
  }
  header.header nav.nav-bar ul li {
    width: auto;
  }
  header.header nav.nav-bar ul li a {
    font-size: 16px;
  }
  main.main .our-work {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 50px;
    min-height: 500px;
  }
  main.main .our-work h1 {
    width: 90%;
    text-align: center;
    text-transform: uppercase;
    color: #515151;
  }
  main.main .our-work p {
    width: 80%;
    text-align: center;
    color: #a2a2a2;
  }
  main.main .our-work .icon {
    height: 58px;
    width: 58px;
  }
  main.main .slide-content {
    width: 95%;
    min-height: 350px;
  }
  main.main .slide-content .bd-example {
    height: inherit;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions {
    height: inherit;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators {
    position: absolute;
    top: -1px;
    height: 120px;
    width: 100%;
    margin: 1px auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li {
    height: 100px;
    width: 30%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-indent: 0;
    border-bottom: 2px solid #e6e6e6;
    position: relative;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 {
    font-size: 25px;
    font-weight: 200;
    color: #656565;
    display: flex;
    width: 80%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 p {
    margin-right: 20px;
    background-color: #5f5f5f;
    border-radius: 100px;
    padding: 4px 15px;
    color: white;
    font-size: 30px;
    position: relative;
    top: -5px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active {
    border-bottom: 2px solid #add136;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active h1 p {
    background-color: #add136;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li::after {
    content: " ";
    border-bottom: 2px solid #e6e6e6;
    height: 100%;
    width: 450px;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: -1;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li:last-child::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner {
    height: 500px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item img {
    position: relative;
    top: 15.8rem;
    left: 3rem;
    width: 15%;
    height: 135px;
    display: none;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    left: 35%;
    top: 5rem;
    width: 65%;
    padding: 15px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption h3 {
    color: #add136;
    text-align: justify;
    font-size: 20px;
    font-weight: bolder;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption p {
    color: #9b9b9b;
    text-align: justify;
    width: 90%;
    padding: 8px 8px 8px 0;
    font-size: 14px;
  }
  main.main .blog {
    flex-direction: column;
    height: 600px;
  }
  main.main .blog .card {
    width: 100%;
    justify-content: space-around;
  }
  main.main .blog .card .content a {
    width: 100%;
  }
  main.main .card-inner {
    width: 95%;
  }
  main.main .card-inner .cards {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  main.main .card-inner .cards .card-item h5 {
    font-size: 15px;
  }
  main.main .comment-inner .title {
    width: 100%;
  }
  main.main .comment-inner .title h1 {
    font-size: 30px;
  }
  main.main .comment-inner .title p {
    font-size: 18px;
  }
  main.main .comment-inner .person {
    width: 100%;
  }
  main.main .comment-inner .person .card-person .content p {
    font-size: 13.52px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  main.main .our-work {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 50px;
    min-height: 500px;
  }
  main.main .our-work h1 {
    width: 95%;
    text-align: center;
    text-transform: uppercase;
    color: #515151;
    font-size: 35px;
  }
  main.main .our-work p {
    width: 80%;
    text-align: center;
    color: #a2a2a2;
  }
  main.main .our-work .icon {
    height: 58px;
    width: 58px;
  }
  main.main .slide-content {
    width: 95%;
    min-height: 350px;
  }
  main.main .slide-content .bd-example {
    width: 100%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators {
    position: absolute;
    top: -1px;
    height: 120px;
    width: 100%;
    margin: 1px auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li {
    height: 100px;
    width: 30%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-indent: 0;
    border-bottom: 2px solid #e6e6e6;
    position: relative;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 {
    font-size: 20px;
    font-weight: 200;
    color: #656565;
    display: flex;
    width: 80%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 p {
    margin-right: 20px;
    background-color: #5f5f5f;
    border-radius: 100px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    position: relative;
    top: -5px;
    font-size: 20px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active {
    border-bottom: 2px solid #add136;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active h1 p {
    background-color: #add136;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li::after {
    content: " ";
    border-bottom: 2px solid #e6e6e6;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: -1;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li:last-child::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner {
    width: 100%;
    height: 500px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item {
    width: 100%;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item img {
    position: relative;
    top: 15.8rem;
    left: 3rem;
    width: 15%;
    height: 100px;
    display: none;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    left: 30%;
    top: 8rem;
    width: 70%;
    padding: 15px;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption h3 {
    color: #add136;
    text-align: justify;
    font-size: 18px;
    font-weight: bolder;
  }
  main.main .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption p {
    color: #9b9b9b;
    text-align: justify;
    width: 90%;
    padding: 8px 8px 8px 0;
    font-size: 12px;
  }
  main.main .card-inner {
    width: 99%;
  }
  main.main .card-inner .card-title {
    flex-direction: column;
    height: auto;
    align-items: center;
    margin-bottom: 50px;
  }
  main.main .card-inner .card-title .title {
    width: 90%;
    align-items: center;
  }
  main.main .card-inner .card-title .title p {
    text-align: center;
    width: 90%;
  }
  main.main .card-inner .card-title .link {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main.main .card-inner .card-title .link a {
    width: 70%;
    text-align: center;
    letter-spacing: 5px;
  }
  main.main .card-inner .cards {
    display: flex;
    flex-direction: column;
  }
  main.main .card-inner .cards .card-item {
    width: 60%;
    margin-bottom: 35px;
  }
  main.main .comment-inner .title {
    width: 100%;
  }
  main.main .comment-inner .title h1 {
    font-size: 25px;
  }
  main.main .comment-inner .title p {
    font-size: 15px;
  }
  main.main .comment-inner .person {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
  }
  main.main .comment-inner .person .card-person {
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    margin: 15px;
  }
  main.main .comment-inner .person .card-person .content p {
    font-size: 13.52px;
    line-height: 1.8;
  }
  main.main .comment-inner .person .card-person .img {
    margin-top: 35px;
  }
  main.main .comment-inner .person .card-person:last-child {
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  header.header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header.header .logo {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  header.header nav.nav-bar {
    width: 100%;
    margin: 0;
  }
  header.header nav.nav-bar ul {
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  header.header nav.nav-bar ul li {
    margin: 3px;
  }
  header.header nav.nav-bar ul li a {
    font-size: 11.4px;
  }
  main.main .main-banner h1 {
    font-size: 40px;
  }
  main.main .our-work {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 50px;
    min-height: 500px;
  }
  main.main .our-work h1 {
    margin-top: 30px;
    width: 99%;
    text-align: center;
    text-transform: uppercase;
    color: #515151;
    font-size: 25px;
  }
  main.main .our-work p {
    width: 90%;
    text-align: center;
    color: #a2a2a2;
    margin-bottom: 50px;
  }
  main.main .our-work .icon {
    height: 58px;
    width: 58px;
  }
  main.main .card-inner .card-title {
    width: 100%;
  }
  main.main .card-inner .card-title .title {
    width: 100%;
  }
  main.main .card-inner .card-title .link {
    margin-top: 20px;
    width: 100%;
  }
  main.main .card-inner .card-title .link a {
    letter-spacing: 1.9px;
    width: 70%;
  }
  main.main .card-inner .cards {
    display: flex;
    flex-direction: column;
  }
  main.main .card-inner .cards .card-item {
    width: 90%;
    margin-bottom: 35px;
  }
  main.main .card-inner .cards .card-item h5 {
    font-size: 25px;
  }
  main.main .comment-inner {
    width: 100%;
  }
  main.main .comment-inner .title h1 {
    font-size: 25px;
  }
  main.main .comment-inner .title p {
    font-size: 15px;
    width: 95%;
  }
  main.main .comment-inner .person {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  main.main .comment-inner .person .card-person {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 15px;
    position: relative;
  }
  main.main .comment-inner .person .card-person .content {
    width: 90%;
  }
  main.main .comment-inner .person .card-person .content p {
    font-size: 13.52px;
    line-height: 1.8;
  }
  main.main .comment-inner .person .card-person .img {
    position: absolute;
    left: 0;
    bottom: -40px;
  }
  main.main .comment-inner .person .card-person:first-child {
    align-items: center;
  }
  main.main .comment-inner .person .card-person:last-child {
    align-items: center;
  }
}
@media screen and (max-width: 565px) {
  .slide-content {
    width: 100% !important;
    min-height: 350px;
  }
  .slide-content .bd-example {
    width: 100%;
  }
  .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 {
    font-size: 15px !important;
    font-weight: 200;
    color: #656565;
    display: flex;
    width: 80%;
  }
  .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li h1 p {
    margin-right: 13px !important;
    background-color: #5f5f5f;
    border-radius: 100px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    position: relative;
    top: -5px;
    font-size: 20px;
  }
  .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active {
    border-bottom: 2px solid #add136;
  }
  .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li.active h1 p {
    background-color: #add136;
  }
  .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li::after {
    content: " ";
    border-bottom: 2px solid #e6e6e6;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: -1;
  }
  .slide-content .bd-example #carouselExampleCaptions ol.carousel-indicators li:last-child::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .slide-content .bd-example #carouselExampleCaptions .carousel-inner {
    width: 100%;
    height: 500px;
  }
  .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item {
    width: 100%;
  }
  .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item img {
    position: relative !important;
    top: 15.8rem;
    left: 1rem !important;
    width: 19% !important;
    height: 90px !important;
    display: none;
  }
  .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    left: 30%;
    top: 9rem !important;
    width: 70%;
    padding: 15px;
  }
  .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption h3 {
    color: #add136;
    text-align: justify;
    font-size: 13px !important;
    font-weight: bolder;
  }
  .slide-content .bd-example #carouselExampleCaptions .carousel-inner .carousel-item .carousel-caption p {
    color: #9b9b9b;
    text-align: justify;
    width: 99%;
    padding: 8px 8px 8px 0;
    font-size: 10px !important;
  }
}
@media screen and (max-width: 430px) {
  header.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  header.header .logo {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header.header nav.nav-bar {
    width: 100%;
    margin: 0;
  }
  header.header nav.nav-bar ul {
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  header.header nav.nav-bar ul li {
    margin: 3px;
  }
  header.header nav.nav-bar ul li a {
    font-size: 10px;
  }
  header.header nav.nav-bar ul li a.btn-1 {
    color: black;
    padding: 6px 8px;
  }
  main.main .our-work h1 {
    width: 100%;
  }
  main.main .our-work p {
    margin-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */