/* Start Variables */
:root {
  --main-color: #19c8fa;
  --transparent-color: rgb(15 116 143 / 70%);

  --main-transition: 0.4s;

  --section-padding: 100px;
}
/* End Variables */
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/* html {
  scroll-behavior: smooth;
} */
body {
  font-family: "Open Sans", sans-serif;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: white;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* End Global Rules */

/* START Components */
.main-heading {
  text-align: center;
}
.main-heading h2 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 70px;
  position: relative;
}
.main-heading h2::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background-color: #333;
}
.main-heading h2::after {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid #333;
  border-radius: 50%;
  background-color: white;
}
.main-heading p {
  color: #777;
  width: 550px;
  max-width: 100%;
  margin: 0 auto 100px;
}
/* END Components */

/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
/* Start Header  */
header {
  position: absolute;
  left: 0;
  width: 100%;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 102.4px;
  z-index: 2;
}

header .container::before {
  content: "";
  position: absolute;
  height: 1px;
  width: calc(100% - 30px);
  left: 15px;
  bottom: 0;
  background-color: #a2a2a2;
}
header img {
  height: 40px;
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav ul {
  display: flex;
}
header nav .toggle-menu {
  color: white;
  font-size: 22px;
}
@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  header nav .toggle-menu {
    display: flex;
  }
  header nav .toggle-menu:hover + ul {
    display: flex;
  }
  header nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 90%);
    display: none;
    text-align: center;
  }
  header nav ul li a {
    padding: 15px !important;
  }
}
header nav ul li a {
  padding: 40px 10px;
  margin-left: 10px;
  display: block;
  position: relative;
  z-index: 2;
  transition: var(--main-transition);
}
header nav ul li a.active,
header nav ul li a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
header nav .form {
  width: 40px;
  height: 30px;
  position: relative;
  margin-left: 50px;
  border-left: 1px solid white;
}
header nav .form i {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
/* START LANDING */
.landing {
  background-image: url(../image/landing.jpg);
  background-size: cover;
  min-height: 100vh;
  position: relative;
}
.landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
}
.landing .text {
  display: flex;
  justify-content: flex-end;
  padding: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--transparent-color);
  width: 50%;
}
@media (max-width: 767px) {
  .landing .text {
    width: 100%;
    justify-content: center;
  }
  .landing .text .content {
    max-width: 100%;
  }
  .landing .change-background {
    display: none;
  }
}
.landing .text .content {
  max-width: 500px;
}
.landing .text .content h2 {
  font-size: 32px;
  color: white;
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1.5;
}
.landing .text .content p {
  line-height: 2;
  font-size: 15px;
  color: white;
}
.landing .change-background {
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.landing .fa-angle-left {
  left: 30px;
}
.landing .fa-angle-right {
  right: 30px;
}
.landing .bullets {
  display: flex;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.landing .bullets li {
  width: 15px;
  height: 15px;
  border: 1px solid white;
  border-radius: 50%;
  margin-left: 10px;
}
.landing .bullets li.active {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
/* END LANDING */

/* START SERVICES */
.services {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
}
@media (min-width: 768px) {
  .services .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    column-gap: 40px;
    row-gap: 60px;
  }
}
.services .srv-box {
  display: flex;
}

.services .srv-box i {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .services .srv-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
  }
  .services .services-container .srv-box i {
    margin: 0 0 30px;
  }
}
.services .srv-box h3 {
  margin-bottom: 30px;
  color: var(--main-color);
  font-weight: normal;
}
.services .srv-box p {
  color: #777;
  line-height: 2;
}

/* START Design  */
.design {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../image/design-features.jpg);
  background-size: cover;
  height: 600px;
  overflow: hidden;
}
.design::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
}
.design .image {
  text-align: center;
  bottom: -150px;
}
@media (max-width: 767px) {
  .design .image {
    display: none;
  }
}
.design .image,
.design .text {
  flex: 1;
  position: relative;
  z-index: 2;
}
.design .text {
  padding: 50px;
  color: white;
  background-color: var(--transparent-color);
}
.design .text h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: normal;
}
.design .text li {
  padding: 15px 0;
}
.design .text li::before {
  content: "\f108";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 20px;
}

/* START PORTFOLIO */
.portfolio {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
}
.portfolio .shuffle {
  display: flex;
  justify-content: center;
}
.portfolio .shuffle li {
  padding: 10px;
}
.portfolio .shuffle li.active {
  background-color: var(--main-color);
  color: white;
}
.portfolio .imgs-container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.portfolio .box {
  position: relative;
  flex-basis: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .portfolio .box {
    flex-basis: 50%;
  }
}
@media (min-width: 1199px) {
  .portfolio .box {
    flex-basis: 25%;
  }
}
.portfolio img {
  max-width: 100%;
  transition: var(--main-transition);
}
.portfolio .box img:hover {
  transform: rotate(3deg) scale(1.1);
}
.portfolio .box:hover .caption {
  bottom: 0;
}
.portfolio .caption {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  padding: 10px;
  background-color: white;
  transition: var(--main-transition);
}

.portfolio .caption h4 {
  margin-bottom: 10px;
  font-weight: normal;
}
.portfolio .caption p {
  color: var(--main-color);
}

.portfolio .btn {
  padding: 10px 15px;
  background-color: var(--main-color);
  color: white;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  margin: 30px auto;
}

/* about */

.about {
  padding-top: var(--section-padding);
  overflow: hidden;
  text-align: center;
}
.about img {
  position: relative;
  bottom: -120px;
  margin-top: -120px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .about img {
    bottom: -60px;
    margin-top: -60px;
  }
}

/* stats */
.stats {
  background-image: url("../image/stats.png");
  background-size: cover;
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
  position: relative;
  text-align: center;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 80%);
}
.stats .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.stats .box {
  padding: 50px;
  color: white;
  background-color: var(--transparent-color);
}
@media (max-width: 767px) {
  .stats .container .box {
    flex-basis: 100%;
  }
}
@media (min-width: 768px) {
  .stats .container .box {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .stats .container .box {
    flex-basis: 25%;
  }
}
.stats .box i {
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.stats .box .number {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.stats .box p {
  font-size: 14px;
}
/* STrt Skills */
.our-skills {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
}
.our-skills .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .our-skills .container {
    flex-direction: column;
  }
  .our-skills .content {
    flex-direction: column;
    text-align: center;
  }
  .our-skills .container .testimonials img {
    margin: 0 auto 30px;
  }
}
.our-skills .container > div {
  flex-basis: 45%;
}
.our-skills .container > div > h3 {
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0 0 20px;
}
.our-skills .container > div > p {
  color: #777;
  line-height: 1.9;
  text-align: center;
  margin: 0 0 40px;
}
.our-skills .content {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.our-skills .testimonials img {
  width: 100px;
  margin-right: 50px;
  border-radius: 50%;
}
.our-skills .content .text {
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
}
.our-skills .content p {
  text-align: right;
  color: #777;
}
.our-skills .bullets {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.our-skills .bullets li {
  margin-right: 10px;
  border: 1px solid #333;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.our-skills .bullets li.active {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.our-skills .prog-holder {
  margin-bottom: 30px;
}
.our-skills .prog-holder h4 {
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 20px;
}
.our-skills .prog-holder .prog {
  height: 30px;
  background: #dedbdc;
}
.our-skills .prog-holder span {
  position: relative;
  display: block;
  height: 100%;
  background-color: var(--main-color);
}
.our-skills .prog-holder span::before {
  content: attr(data-progress);
  position: absolute;
  top: -40px;
  right: -20px;
  width: 40px;
  padding: 4px 0;
  background-color: #333;
  text-align: center;
  color: white;
  border-radius: 5px;
}
.our-skills .prog-holder span::after {
  content: "";
  position: absolute;
  border-color: #333 transparent transparent transparent;
  border-width: 6px;
  border-style: solid;
  top: -11px;
  right: -5px;
}
/* pricing */
.pricing {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
}
.pricing .plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}
.pricing .plans .plan {
  background-color: #fcfcfc;
}
.pricing .plans .plan .head {
  padding: 25px 15px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan .head h3 {
  text-transform: uppercase;
  font-weight: normal;
}
.pricing .plans .plan .head span {
  display: block;
  font-size: 40px;
  font-weight: bold;
}
.pricing .plans .plan .head span::before {
  content: "$";
  font-size: 17px;
  font-weight: normal;
  position: relative;
  top: -20px;
}
.pricing .plans .plan .head span::after {
  content: "/M0";
  position: relative;
  font-size: 17px;
  font-weight: normal;
}
.pricing .plans .plan ul {
  border-bottom: 1px solid var(--main-color);
}

.pricing .plans .plan ul li {
  padding: 20px;
  position: relative;
}
.pricing .plans .plan ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  background-color: var(--main-color);
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 150px;
}
.pricing .container > p {
  text-align: center;
  color: #777;
  margin: 30px 0;
}
.pricing .plans .plan a {
  border: 1px solid var(--main-color);
  padding: 10px 30px;
  display: block;
  margin: 20px auto;
  color: #333;
  width: fit-content;
}
.pricing .container > a {
  display: block;
  width: fit-content;
  background-color: var(--main-color);
  padding: 15px 30px;
  margin: 0 auto;
}
/* subscribe */
.subscribe {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
  background-image: url(../image/subscribe.jpg);
  background-size: cover;
  position: relative;
}
.subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.subscribe .container {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .subscribe .container {
    flex-direction: column;
  }
  .subscribe form {
    margin-bottom: 20px;
  }
}
.subscribe form {
  display: flex;
  width: 500px;
  max-width: 100%;
  position: relative;
  
}
.subscribe form i {
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.subscribe form input[type="email"] {
  padding: 20px 20px 20px 60px;
  background-color: rgb(0 0 0 / 10%);
  width: calc(100% - 150px);
  border: 1px solid white;
  border-right: none;
  caret-color: var(--main-color);
  color: white;
}
.subscribe form input[type="email"]::placeholder {
  color: #777;
}
.subscribe form input[type="submit"] {
  padding: 10px 20px;
  width: 150px;
  border: 1px solid white;
  background-color: var(--main-color);
  color: white;
  border-left: none;
}
.subscribe form input[type="email"]:focus,
.subscribe form input[type="submit"]:focus {
  outline: none;
}
.subscribe .container p {
  color: white;
  margin-left: 50px;
  line-height: 1.8;
}
/* Start Contact */
.contact {
  padding-bottom: var(--section-padding);
  padding-top: var(--section-padding);
}
.contact .content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact .content {
    flex-direction: column;
  }
}
.contact form {
  flex-basis: 70%;
}

.contact form .main-input {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  padding: 20px;
  caret-color: var(--main-color);
}

.contact form textarea.main-input {
  height: 200px;
}

.contact form input:focus,
.contact form textarea {
  outline: none;
}

.contact form .main-input::placeholder {
  color: #777;
}

.contact form input[type="submit"] {
  background-color: var(--main-color);
  color: white;
  padding: 15px 30px;
  border: none;
  display: flex;
  margin-left: auto;
  cursor: pointer;
}
.contact .info {
  flex-basis: 25%;
}
@media (max-width: 767px) {
  .contact .info {
    order: -1;
    text-align: center;
  }
}
.contact .info h4 {
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 30px;
}
.contact .info .phone {
  display: block;
  color: #777;
  margin-bottom: 10px;
}
.contact .info h4:nth-of-type(2) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .contact .info h4:nth-of-type(2) {
    margin-top: 20px;
  }
}
.contact .info address {
  line-height: 2;
  color: #777;
}
@media (max-width: 767px) {
  .contact .info address {
    margin-bottom: 20px;
  }
}
/* footer */
footer {
  padding-bottom: calc(var(--section-padding) / 2);
  padding-top: calc(var(--section-padding) / 2);
  background-image: url(../image/subscribe.jpg);
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
}
footer .container {
  position: relative;
}
.footer img {
    height: 60px;
    margin-bottom: 30px;

}
footer p:not(.copyright) {
    text-transform: uppercase;
    padding: 20px;
    width: fit-content;
    margin: 20px auto;
    border-bottom: 1px solid white;
        font-size: 20px;
}
footer .social-icon i {
padding: 10px 20px;
cursor: pointer;
}
footer .copyright {
  margin-top: 50px;

}
footer .copyright span {
font-weight: bold;
color: var(--main-color);
}