* {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  box-sizing: border-box;
}
.container {
  width: 80%;
  margin: auto;
}
ul {
  text-decoration: none;
  list-style: none;
}
a {
  text-decoration-line: none;
}
.home {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.8)), url(./images/hero\ img.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
}

.home .nav-bar {
  background-color: #333;
  padding: 18px 0;
  position: fixed;
  width: 100%;
  z-index: 999999;
}
.home .nav-bar .logo {
  float: left;
}
.home .nav-bar .logo a {
  color: #ff305b;
  font-size: 24px;
  font-weight: 800;
}
.home .nav-bar ul {
  float: right;
}
.home .nav-bar ul li {
  float: left;
  padding-right: 30px;
  padding-top: 5px;
}
.home .nav-bar ul li a {
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 1s;
}
.home .nav-bar ul li a:hover {
  color: #ff305b;
}

.home .nav-bar-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .nav-bar-content h3 {
  margin: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}
.home .nav-bar-content h1 {
  margin: 0;
  color: #ff305b;
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
}
.home .nav-bar-content h4 {
  font-size: 26px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 300;
  animation-name: fadeInUp;
}
.clear-fix {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .home .nav-bar-content h1 {
    font-size: 50px;
  }
  .home .nav-bar ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ff305b;
    width: 50%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity 3s;
  }
  .home .nav-bar ul li {
    float: none;
    padding: 18px 0;
  }
  .icon {
    width: 30px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .icon span {
    background-color: #ff305b;
    width: 100%;
    position: absolute;
    height: 4px;
    display: inline-block;
    transition: all 0.4s;
  }
  .icon span:nth-child(1) {
    top: 0;
  }
  .icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .icon span:nth-child(3) {
    bottom: 0;
  }
  .icon:hover + ul {
    opacity: 1;
    visibility: visible;
  }
  .icon:hover span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
    rotate: 45deg;
  }
  .icon:hover span:nth-child(2) {
    opacity: 0;
  }
  .icon:hover span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%);
    rotate: -45deg;
  }
}
/* About sec */

.about {
  padding: 80px 0;
}
.about .about-img {
  width: 35%;
  background-color: white;
  float: left;
}
.about .about-img .img img {
  display: block;
  width: 100%;
}
.about .about-img .border .img {
  overflow: hidden;
  position: relative;
  top: 20px;
  left: 20px;
}
.about .about-img .border .img .layer {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.about .about-img .border .img:hover .layer {
  top: 0;
  transition: top 2s;
}

.about .about-content {
  margin-left: 5%;
  width: 60%;

  float: left;
}
.about .about-img .border {
  border: 10px solid #333;
  border-radius: 7px;
}
.about .about-content h2 {
  font-size: 34px;
  position: relative;
  padding-left: 6px;
}
.about .about-content h2::before {
  position: absolute;
  content: "";
  left: 0;
  width: 4px;
  height: 70%;
  margin-top: 4px;
  background-color: #ff305b;
}
.about .about-content p {
  padding: 20px;
  font-family: "Roboto";
  border-bottom: 1px dashed #999999;
  margin-bottom: 25px;
  color: #555555;
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-size: 16px;
}
.about .about-content ul li {
  padding-bottom: 20px;
  width: 50%;
  float: left;
}
.about .about-content span {
  font-weight: bold;
}
.about .about-content button {
  padding: 10px 20px;
  background-color: #ff305b;
  border-radius: 7px;
  cursor: pointer;
  border: 2px solid #ff305b;
  color: white;
  text-transform: capitalize;
  transition: background-color 1s;
}
.about .about-content button:hover {
  background-color: #ec2403;
  color: white;
}
@media only screen and (max-width: 992px) {
  .about .about-content {
    width: 49%;
    margin: 0;
  }
  .about .about-img {
    width: 49%;
    margin: 0;
    margin-right: 2%;
  }
  .about .about-img .border {
    border: none;
  }
  .about .about-img .border .img {
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .about .about-content,
  .about .about-img {
    width: 100%;
  }
  .about .about-img {
    padding-bottom: 20px;
  }
  .about .about-content ul li {
    width: 100%;
  }
  .about .about-content p {
    letter-spacing: 1px;
  }
}
/* services */
.services {
  background-color: #f1f1f1;
  padding: 80px 0;
}

.services .services-title h2 {
  text-align: center;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
  text-transform: capitalize;
  font-size: 32px;
  margin: 0 0 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
}
.services-title h2:after {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  background-color: #ff305b;
  bottom: 5px;
  height: 1px;
  width: 160px;
}
.services-title h2:before {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  border-color: #ff305b;
  border-style: solid;
  border-width: 1px 0;
  bottom: 0;
  padding: 4px 0 5px;
  width: 70px;
}

.services .serv-item {
  text-align: center;
  background-color: transparent;
  width: 25%;
  float: left;
  padding: 24px 10px;
  border-radius: 7px;
  transition: background-color 0.3s;
}
.services .serv-item .dev-icon {
  width: 30px;
  height: 30px;
  background-color: #ec2403;
  margin: 0 auto 10px;
  border-radius: 7px;
  padding: 10px 0;
  transition: transform 0.3s;
}
.services .serv-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  margin: 0 0 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
  line-height: 1.1;
}
.services .serv-item p {
  color: #555555;
  font-weight: 400;
  line-height: 25px;
}
.services .serv-item:hover {
  background-color: white;
}
.services .serv-item:hover .dev-icon {
  transform: scale(1.2);
}
@media only screen and (max-width: 992px) {
  .services .serv-item {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .services .serv-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* portfolio section */
.portfolio {
  padding: 80px 0;
}

.portfolio .port-header h2 {
  text-align: center;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
  text-transform: capitalize;
  font-size: 32px;
  margin: 0 0 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
}
.portfolio .port-header h2::after {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  background-color: #ff305b;
  bottom: 5px;
  height: 1px;
  width: 160px;
}
.portfolio .port-header h2::before {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  border-color: #ff305b;
  border-style: solid;
  border-width: 1px 0;
  bottom: 0;
  padding: 4px 0 5px;
  width: 70px;
}
.portfolio .port-header .port-links ul {
  padding: 30px 6px;
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
.portfolio .port-header .port-links ul li a {
  float: left;
  padding: 30px 20px;
  border: medium none;
  color: black;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 3px 12px;
  position: relative;
  text-transform: uppercase;
}
.portfolio .main-sec {
  margin-top: 30px;
}
.port-item .inner {
  position: relative;
}
.portfolio .port-item {
  float: left;
  width: 33.333%;
  padding: 20px;
}
.portfolio .port-item img {
  width: 100%;
}
.portfolio .port-item .layer {
  opacity: 0;
  transition: 1s opacity;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.portfolio .port-item .layer .dev-icon {
  width: 30px;
  height: 30px;
  background-color: #ff305b;
  border-radius: 7px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.portfolio .port-item:hover .layer {
  opacity: 1;
}
@media only screen and (max-width: 992px) {
  .portfolio .port-item {
    width: 50%;
    margin-bottom: 20px;
  }
  .portfolio ul {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .portfolio .port-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* client sec */
.client .client-item {
  position: relative;
  padding: 40px;
  background-color: #eee;
  width: 60%;
  margin: 30px auto;
}
.client .client-item .item-content .border {
  border: 100px solid #ff305b;
  border-color: #ff305b transparent transparent #ff305b;
  position: absolute;
  top: 0;
  left: 0;
}
.client .client-item .item-photo {
  z-index: 2;
  width: 20%;
  position: relative;
  float: left;
  text-align: right;
  padding-right: 20px;
}
.client .client-item .item-photo img {
  border-radius: 50%;
  width: 100px;
}
.client .client-item .item-content {
  width: 70%;

  float: left;
}
.client h2 {
  text-align: center;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
  text-transform: capitalize;
  font-size: 32px;
  margin: 0 0 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
}
.client h2::after {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  background-color: #ff305b;
  bottom: 5px;
  height: 1px;
  width: 160px;
}
.client h2::before {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  border-color: #ff305b;
  border-style: solid;
  border-width: 1px 0;
  bottom: 0;
  padding: 4px 0 5px;
  width: 70px;
}
.client .client-item .item-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
  margin: 0 0 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
  line-height: 1.1;
}
.client .client-item .item-content span {
  font-size: 16px;
  font-style: italic;
  margin: 0 0 15px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  color: #555555;
}
.client .client-item .item-content p {
  font-size: 16px;
  font-style: italic;
  margin: 0 0 15px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
}
