/* global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Open Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}

:root {
  --main-color: #19c8fa;
  --tranparent-color: #1463779e;
  --main-padding: 108px;
}
/* end global */
/* Start Components */
.main-heading {
  text-align: center;
}
.main-heading h2 {
  font-weight: normal;
  font-size: 40px;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
}
.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #333;
  bottom: -30px;
  width: 120px;
}
.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #333;
  bottom: -38px;
  background-color: white;
}
.main-heading p {
  width: 550px;
  margin: 0 auto 100px;
  max-width: 100%;
  line-height: 2;
  color: #777;
}
/* End Components */

.container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* medium */
@media (min-width: 922px) {
  .container {
    width: 1100px;
  }
}
/* large */
@media (min-width: 1200) {
  .container {
    width: 1170px;
  }
}

/* header */
header {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 1;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 97px;
  border-bottom: 1px solid #777;
}
header .logo {
  color: var(--main-color);
}
header .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
header .nav .toggle-bar {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}
header .nav .toggle-bar:hover + ul {
  display: flex;
  color: #fff;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgb(0, 0, 0, 50%);
}
header .nav .toggle-bar:hover + ul li a {
  padding: 15px;
}
@media (min-width: 768px) {
  header .nav .toggle-bar {
    display: none;
  }
}
header .nav ul {
  display: flex;
}
@media (max-width: 769px) {
  header .nav ul {
    display: none;
  }
}
.nav ul li {
}
.nav ul li a {
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  padding: 40px 10px;
  color: #fff;
  transition: 0.5s;
}
.nav ul li a.active,
.nav ul li a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.nav .search {
  color: red;
  width: 40px;
  height: 30px;
  margin-left: 30px;
  position: relative;
  border-left: 1px solid #fff;
}
.search i {
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 0;
}
/* end header */
/* start landing */
.landing {
  background-image: url(../images/landing.jpg);
  height: 100vh;
  background-size: cover;
  position: relative;
}
.landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 50%);
}
.overlay .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  background-color: var(--tranparent-color);
  padding: 50px;
  color: #fff;
  display: flex;
  justify-content: flex-end;
}

.overlay .text .content {
  max-width: 500px;
}
@media (max-width: 767px) {
  .overlay .text {
    width: 100%;
  }
  .overlay .text .content {
    max-width: 100%;
  }
}
.overlay .text h2 {
  margin-bottom: 20px;
  font-family: sans-serif;
  line-height: 1.6;
  font-weight: 200;
  font-size: 30px;
}
.overlay .text p {
  line-height: 1.8;
}
.overlay .change-background {
  position: absolute;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .overlay .change-background {
    display: none;
  }
}

.overlay .fa-angle-right {
  right: 40px;
}
.overlay .fa-angle-left {
  left: 40px;
}
.overlay .bullets {
  position: absolute;
  display: flex;
  flex-direction: row;
  bottom: 20px;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
}
.overlay .bullets li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin: 4px;
}
.overlay .bullets li.active {
  background-color: var(--main-color);
}
/* end landing */

/* start services */
.services {
  padding-top: var(--main-padding);
  display: flex;
  text-align: center;
}
/* end services */
/* rebeated header */
/* .special-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.special-heading h2{
    font-weight: 200;
    text-transform: uppercase;
    font-size: 40px;
    position: relative;
}
.special-heading .bullet{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    margin-top: 79px;
}
.special-heading .line{
    width: 118px;
    height: 2px;
    margin-top: 36px;
    background-color: #000;
}
rebeated header  try make it with before and after */
.services {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
}
/* 
.services-content{
    display: flex;
} */
@media (min-width: 767px) {
  .services .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 60px;
  }
}
/* .services .services-content .col{
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    margin-bottom: 50px;
} */
/* .services-content .col i{
    margin-right: 50px;
} */
/* @media(max-width:767px){
    .services .col{
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
} */
/* .services-content .col .service{
    display: flex;
} */

.services-content .text {
  /* padding-left: 50px; */
}
.services-content .text h2 {
  color: var(--main-color);
  /* margin-bottom: 20px; */
}
.services-content .text p {
  line-height: 1.8;
  color: #777;
}

/* start design */
.design {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
  height: 600px;
  position: relative;
  background-image: url(../images/design-features.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.design::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 50%);
}
.design .image,
.design .text {
  position: relative;
  z-index: 2;
  flex: 1;
}
.design .image {
  text-align: center;
}
@media (max-width: 767px) {
  .design .image {
    display: none;
  }
}
.design .image img {
  position: relative;
  bottom: -150px;
}
.design .text {
  color: #fff;
  padding: 50px;
  background-color: var(--tranparent-color);
}
.design .text h2 {
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}
.design .text ul li {
  padding: 15px 0;
  color: #fff;
}
.design .text ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f108";
  font-weight: 900;
  margin-right: 20px;
  position: relative;
  top: 1px;
}

/* .new-design{
    position: relative;
    height: 600px;
    background-image:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)),url(../images/design-features.jpg)
} */
/* end design */

/* start portofolio */
.portofolio {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
}
.portofolio .shuffle {
  display: flex;
  justify-content: center;
}
.portofolio .shuffle li {
  padding: 10px;
}
.portofolio .shuffle li.active {
  background-color: var(--main-color);
  color: #fff;
}
.portofolio .images-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
.portofolio .images-container .box {
  position: relative;
  overflow: hidden;
}
.portofolio .images-container .box:hover .caption {
  bottom: 0;
}
.portofolio .images-container .box:hover img {
  transform: rotate(3deg) scale(1.1);
}
@media (min-width: 767px) {
  .portofolio .images-container .box {
    flex-basis: 50%;
  }
}
@media (min-width: 1100px) {
  .portofolio .images-container .box {
    flex-basis: 25%;
  }
}
.portofolio .images-container .box img {
  width: 100%;
  transition: 0.3s;
}

.portofolio .images-container .box .caption {
  position: absolute;
  left: 0;
  padding: 10px;
  bottom: -100%;
  width: 100%;
  transition: 0.3s;
  background-color: white;
}
.portofolio .images-container .box .caption h4 {
  font-weight: normal;
  margin-bottom: 10px;
}
.portofolio .images-container .box .caption p {
  color: var(--main-color);
}
/* end protofolio */

/* start vedio */
.vedio {
  position: relative;
}
.vedio::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 40%);
}
.vedio video {
  width: 100%;
}
.vedio .text {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  background-color: var(--tranparent-color);
  padding: 10px;
  text-align: center;
  width: 100%;
}
.vedio .text h3 {
  font-weight: normal;
  margin-bottom: 15px;
  color: #fff;
}
.vedio .text p {
  margin-bottom: 20px;
  color: #fff;
}
.vedio .text button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 25px;
}
.vedio .text button:hover {
  background-color: var(--main-color);
}
/* end vedio */
/* statrt about */
.about {
  /* 
    margin-bottom: -125px; */
  padding-top: var(--main-padding);
  text-align: center;
  overflow: hidden;
}
.about .image {
  position: relative;
  bottom: -120px;
  margin-top: -120px;
}
/* end about */

/* start stats */
.stats {
  background-image: url(../images/stats.png);
  position: relative;
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
  text-align: center;
  background-size: cover;
}
.stats::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 60%);
}
.stats .container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.stats .container .box {
  background-color: var(--tranparent-color);
  color: #fff;
  padding: 50px 70px;
}
/* for mobile */
@media (max-width: 767px) {
  .stats .container .box {
    flex-basis: 100%;
  }
}
/* above mobile (medium) */
@media (max-width: 768px) {
  .stats .container .box {
    flex-basis: 50%;
  }
}
/* large screen */
@media (max-width: 991px) {
  .stats .container .box {
    flex-basis: 25%;
  }
}
.stats .container .box i {
  font-size: 12px;
  display: flex;
  background-color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  margin: 0 auto;
}
.stats .container .box h3 {
  font-size: 50px;
  margin: 25px 0 15px;
  font-weight: bold;
}
.stats .container .box p {
}
/* end stats */
/* start pricing */
.pricing {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
}
.pricing .content {
}
.pricing .number {
  position: relative;
}
.pricing .number::before {
  content: "$";
}
.pricing .number::after {
  content: "/Mo";
}
