* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
  object-fit: cover;
}
body {
  background-color: #eee;
}
.header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 25px 0 30px 0;
  position: absolute;
}

/* Grid System */
.container {
  max-width: 1600px;
  margin: auto;
}
.row {
  display: flex;
  align-items: center;
}

.col-4 {
  width: calc(100% / 3);
}

.col-12 {
  width: 100%;
}

.mb-3 {
  margin-bottom: 30px;
}
.mt-7 {
  margin-top: 70px;
}

/* end Grid System */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .navbar-brand {
  width: 300px;
}
.header .navbar .navbar-nav {
  display: flex;
  align-items: center;
  list-style-type: none;
  list-style-position: inside;
  margin-right: 50px;
}
.header .navbar .navbar-nav .nav-item .nav-link {
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 0 20px;
  position: relative;
}
.header .navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
.header .navbar .navbar-nav .nav-item .nav-link:hover::before {
  width: calc(100% - 40px);
}

/* section banner */
.banner-area {
  height: 950px;
  background-image: url(../../assets/img/header-bg.jpg);
  background-size: cover;
  background-position: center 55%;
}

.banner-area .content {
  height: 950px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(127, 255, 212, 0); */
  color: #fff;
}
.banner-area .content .banner-title {
  font-family: "Roboto Slab", serif;
  font-size: 36px;
}
.banner-area .content .banner-desc {
  font-size: 56px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.banner-area .content .btn-banner {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  background-color: #ffdf20;
  color: #fff;
  padding: 25px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.banner-area .content .btn-banner:hover {
  transform: scale(1.1);
  background-color: #f0b100;
  color: #fefce8;
}

/* section services */

.services-area {
  height: 700px;
  background-color: #fff;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  /* min-width: 1660px; */
}
.section-header {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
.sec-title {
  font-size: 36px;
  margin-bottom: 20px;
}
.sec-sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #818181;
}

.services-area .card {
  /* border: 1px solid red; */
  /* margin: 1px; */
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.services-area .card .card-icon {
  /**/
  width: 100px;
  height: 100px;
  border-radius: 100%;
  color: #fff;
  /* padding: 15px; */
  background-color: #f0c400;
  margin-bottom: 20px;
}
.services-area .card .card-icon .fa {
  width: 100%;
  height: 100%;
  font-size: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-area .card .card-title {
  margin-bottom: 20px;
}
.services-area .card .card-desc {
  font-size: 14px;
  color: #818181;
  text-align: center;
  line-height: 25px;
}

/* section Portfolio */

.portfolio-area {
  margin-top: 100px;
}

.wrap {
  flex-wrap: wrap;
  margin-inline: -15px;
  /* border: 1px solid red; */
}
div[class*="col-4"] {
  padding-inline: 15px;
}

.portfolio-area .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
}

.portfolio-area .content .overlay {
  position: absolute;
  /* bottom: -100%; */
  background-color: rgba(0, 0, 235, 0.774);
  height: 0%;
  color: #eee;
  transition: 0.2s;
  opacity: 0;
  padding: 0px 0px 0 0;
  border-radius: 5px 5px 0 0;
  z-index: 1;
}
.portfolio-area .content:hover .overlay {
  /* bottom: 0%; */
  opacity: 1;
  height: 100%;
  padding: 300px 10px 0 20px;
}

.portfolio-area .portfolio-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
.portfolio-area .portfolio-desc {
  color: #818181;
  margin-bottom: 50px;
}

.portfolio-area .content .port-img {
  margin-bottom: 30px;
  border-radius: 5px 5px 0px 0px;
}

/* Our Team */
.center {
  align-items: center;
  justify-content: center;
}
.team-area {
  min-height: 700px;
  font-family: "Montserrat", sans-serif;
}
.team-area .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-area .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-area .card-img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  background-color: #818181;
  margin-bottom: 30px;
  overflow: hidden;
}

.team-area .card-body {
  text-align: center;
}
.team-area .card-body .card-media {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.team-area .card-body .card-desc {
  color: #838282;
}
.team-area .card-body .card-media .card-list-media a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 50px;
}

.team-area .our-talk {
  text-wrap: wrap;
  text-align: center;
}
.d-none {
  display: none;
}

/* footer */

footer {
  margin-top: 100px;
  width: 100%;
  /* min-width: 1660px; */
  height: 70px;
  background-color: #fff;
}
footer .content {
  height: 70px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
footer .content .link-footer-media {
  text-decoration: none;
  color: #fff;
}
footer .content .link-footer-media .fa {
  background-color: darkslategray;
  padding: 10px;
  width: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */

@media (max-width: 1440px) {
  .team-area {
    padding-inline: 20px;
  }
  .row {
    margin-inline: 15px;
  }

  .services-area {
    min-height: 850px;
  }
}

/* ipad */
@media (max-width: 820px) {
  .col-4 {
    width: calc(100% / 2);
  }
  /* navbar */
  .navbar {
    padding-inline: 30px;
  }
  .d-md-none {
    display: none;
  }
  .banner-area .content .banner-title {
    font-size: 45px;
  }

  .banner-area .content .banner-desc {
    font-size: 70px;
    text-align: center;
  }

  /* service */
  .services-area {
    height: auto;
  }

  .row.wrap {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .sec-title {
    font-size: 36px;
  }
  .sec-sub-title {
    font-size: 16px;
  }
  .services-area .card {
    padding: 50px 20px;
  }
  .services-area .card .card-icon {
    /**/
    width: 100px;
    height: 100px;
  }
  .services-area .card .card-icon .fa {
    font-size: 55px;
  }
  .services-area .card .card-title {
    margin-bottom: 20px;
    font-size: 30px;
    text-wrap: nowrap;
  }
  .services-area .card .card-desc {
    font-size: 14px;
    line-height: 25px;
  }

  /* team-area */

  .team-area .our-talk {
    text-align: center;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .col-4 {
    width: 100%;
  }
  /* navbar */
  .navbar {
    padding-inline: 10px;
  }

  .d-sm-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  .header .navbar .navbar-brand {
    width: 50%;
    margin-left: 20px;
  }
  .header .navbar .navbar-nav .nav-item span {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    margin-right: 10px;
    font-family: "Montserrat", sans-serif;
  }
  .header .navbar .navbar-nav .fa.menu {
    color: #fff;
    font-size: 30px;
  }

  .banner-area {
    height: calc(950px - 200px);
  }
  .banner-area .content {
    justify-content: flex-start;
    margin-top: 200px;
  }

  .banner-area .content .banner-title {
    font-size: 25px;
  }

  .banner-area .content .banner-desc {
    font-size: 45px;
  }

  /* service */

  .sec-title {
    font-size: 30px;
  }
  .sec-sub-title {
    font-size: 16px;
  }
  .services-area .card {
    padding: 50px 20px;
  }
  .services-area .card .card-icon {
    /**/
    width: 80px;
    height: 80px;
  }
  .services-area .card .card-icon .fa {
    font-size: 45px;
  }
  .services-area .card .card-title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .services-area .card .card-desc {
    font-size: 14px;
  }

  footer .content .link-footer-media {
    margin-right: 20px;
  }
}
