* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Fahkwang", sans-serif;
}
body {
  background: #000;
}
ul li {
  list-style: none;
  color: white;
}
a {
  color: white;
  text-decoration: none;
}
.hide {
  display: none;
}
/* ******************** */
.navbar {
  margin-top: 50px;
}
.container {
  padding: 0px 20px;
}

.navbar .container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar img {
  width: 60%;
}
.navbar .container .header i {
  background: white;
  border-radius: 50px;
  padding: 12px;
  cursor: pointer;
}
.navbar .links {
  margin-top: 50px;
  background: white;
}

.navbar .links ul li {
  border: 1px solid #eaeaea;
  padding: 20px;
  text-transform: capitalize;
  cursor: pointer;
}
.navbar .links ul li,
.navbar .links a {
  color: black;
}

@media screen and (min-width: 922px) {
  .hide {
    display: block;
  }
  .navbar i {
    display: none;
  }
  .navbar .container .header {
    justify-content: center;
  }
  .navbar img {
    width: 100%;
  }
  .navbar .links {
    background: transparent;
  }
  .navbar .container a {
    width: 20%;
  }
  .navbar .links ul {
    display: flex;
    justify-content: center;
  }
  .navbar .links ul li {
    border: none;
    text-transform: uppercase;
  }
  .navbar .links ul li,
  .navbar .links ul li a {
    color: white;
  }
  /* .navbar .container .header a{
        width: 100%;
        display: block;
    }
    .navbar img{
        margin: auto;
    } */
}
/* ******* */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("images/hero3.png");
  background-size: cover;
  background-position: center;
  height: 50vh;
  box-shadow: 10px 10px 95px 65px black inset;
}
.hero .container {
  text-align: center;
}
.hero .container h1 {
  color: #ffffff;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 544px) {
  .hero .container h1 {
    color: white;
    font-size: 40px;
  }
}

@media screen and (min-width: 922px) {
  .hero {
    align-items: end;
  }
}
/* ************ */
.photography {
  margin-top: 50px;
}
.photography .box {
  /* margin: 15px 0px; */
  margin-bottom: 45px;

  position: relative;
}
/* .photography .box::after{
    position: absolute;
    color: white;
    content: "hello world";
    bottom: 0;
    left: calc(100% / 2 - 35px);
} */
/* .test{
    position: absolute;
    bottom: 0;
    color: rgba(255, 255, 255, 0.658);
    text-transform: uppercase;
    left: calc(100% / 2 - 58px);
} */
.test {
  color: rgba(255, 255, 255, 0.658);
  text-align: center;
  margin: -24px 0px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.test span {
  margin: 0px 2px;
}
.photography img {
  width: 100%;
}
@media screen and (min-width: 400px) {
  .photography .container {
    padding: 50px;
    gap: 10px;
  }
}
@media screen and (min-width: 700px) {
  .photography .container {
    padding: 0px 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .photography .box-md-6 {
    width: calc(90% * 6 / 12);
  }

  .container .box {
    margin: 45px auto;
  }
}
@media screen and (min-width: 1022px) {
  .photography .box-lg-3 {
    width: calc(90% * 3 / 12);
  }
  .test {
    margin: 0;
  }
}
/* ************ */
.bio-image {
  position: relative;
  margin-top: 70px;
  background-image: url("images/about.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
}
.bio-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #25252c3b;
}

/*  */
.bio-desc {
  position: relative;
  z-index: 3;
  margin-top: -100px;
}
.bio-desc .container .bio-desc-icons {
  /* width: 80%;
    margin: auto;
    text-align: center; */
  display: flex;
  justify-content: space-between;
  margin-bottom: 94px;
}
.bio-desc i {
  color: white;
  margin: 0px 5px;
  font-size: 40px;
}
.bio-desc-text {
  color: white;
}
.bio-desc-text p,
.bio-desc-text h3 {
  margin-bottom: 40px;
  line-height: 1.5;
}
.bio-desc-text p {
  color: #a5aca6;
}
.bio-desc-text h3 {
  font-weight: 200;
}
.bio-desc-text a {
  text-transform: uppercase;
  border-bottom: 2px solid rgb(221, 178, 178);
  padding: 7px 0px;
  color: rgb(221, 178, 178);
  font-weight: 700;
}
@media screen and (min-width: 386px) {
  .bio-desc .container .bio-desc-icons {
    /* width: 80%;
    margin: auto;
    text-align: center; */
    display: flex;
    justify-content: start;
    margin-bottom: 94px;

    gap: 25px;
  }
}
@media screen and (min-width: 776px) {
  .bio-image {
    box-shadow: 6px 6px 132px 24px black inset;
  }
  .bio-desc .container .bio-desc-icons {
    /* width: 80%;
    margin: auto;
    text-align: center; */
    display: flex;
    justify-content: start;
    margin-bottom: 94px;
    gap: 25px;
    flex-direction: column;
  }
  .bio-desc .container {
    display: flex;
    gap: 40px;
  }
  .bio-desc-text {
    width: 80%;
    margin: auto;
  }
}
/*  */
.portfolio {
  margin-top: 90px;
}

.portfolio h2 {
  text-align: center;
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
.portfolio-images {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}
.portfolio img {
  width: 100%;
}
.portfolio-images .box {
  width: calc(95% * 6 / 12);
}
@media screen and (min-width: 768px) {
  .portfolio .box-md-4 {
    width: calc(90% * 4 / 12);
  }
}
@media screen and (min-width: 1023px) {
  .portfolio .box-lg-3 {
    width: calc(90% * 3 / 12);
  }
}
/*  */
.services {
  color: white;
  text-align: center;
  margin-top: 150px;
}
.services h2 {
  font-size: 25px;
  margin-bottom: 40px;
}
.services .services-text-box {
  margin-bottom: 20px;
  line-height: 1.5;
}
.services .services-text-box *,
.services-image {
  margin-bottom: 20px;
}
.services .services-text-box p {
  color: #a5aca6;
}
.services .services-text-box a {
  color: rgb(221, 178, 178);
}
.services .services-text-box h3 {
  font-weight: 900;
}
.services img {
  width: 100%;
}
@media screen and (min-width: 767px) {
  .services-cont {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .services-cont .box {
    width: calc(90% * 4 / 12);
  }
  .services-text-box {
    width: 90%;
  }
  .services {
    text-align: start;
  }
  .services h2 {
    text-align: center;
  }
}
/* ****** */
.qoute {
  margin-top: 70px;
  color: white;
  text-align: center;
}
.qoute-icon {
  margin-bottom: 30px;
}
.qoute i {
  font-size: 35px;
}
.qoute-text {
  margin-bottom: 90px;
}
.qoute-text p {
  line-height: 1.5;
  font-weight: 100;
  color: #ffffffd3;
}
.qoute-image-cont img {
  width: 25%;
}
.qoute-image-cont * {
  margin-bottom: 15px;
}
@media screen and (min-width: 767px) {
  .qoute-cont {
    display: flex;
    text-align: start;
    margin-bottom: 80px;
    gap: 35px;
  }

  .qoute-cont .box-lg {
  }
  .qoute-icon {
    margin-top: -28px;
  }
  .qoute-text p {
    font-size: 24px;
  }
  .qoute-image-cont {
    text-align: start;
  }
  .qoute-image-cont img {
    width: auto;
  }
  .qoute-image-cont {
    margin-left: 65px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .qoute-image-cont * {
    margin: 0px;
  }
}
/* ****** */
.work {
  /* text-align: center; */
  color: white;
  position: relative;
  /* background: rgba(255, 0, 0, 0.359); */
  margin-top: 80px;
  padding: 40px 0px;
  height: 50vh;
  background-image: url("images/cta.png");
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.work::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(90deg, #050505 51%, #0505059e 100%);
}
.work .container {
  position: relative;
  z-index: 5;
}
.work .container h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.work .container a {
  text-transform: uppercase;
  border-bottom: 2px solid rgb(221, 178, 178);
  padding: 7px 0px;
  color: rgb(221, 178, 178);
  font-weight: 700;
}
@media screen and (min-width: 980px) {
  .work .container h2 {
    font-size: 2rem;
  }
}
/*  */

.footer {
  text-align: center;
  color: white;
  margin-top: 70px;
}

.footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-image {
  width: 70%;
  margin: auto;
  margin-bottom: 30px;
}
.footer-links {
  margin-bottom: 30px;
}
.footer-text {
  margin-bottom: 50px;
}
.footer ul li {
  margin: 0px 10px;
  text-transform: capitalize;
}
.footer img {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .footer-image {
    width: 30%;
  }
}
