/* Starting Variables */
:root {
  --main-color: #19c8fa;
  --dark-color: rgb(25 180 250);
  --transparent-color: rgb(15 116 143 / 70%);
  --main-duration: 0.3s;
  --section-padding: 100px;
  --main-line-height: 1.85;
  --paragraph-color: #777;
  /* --section-background: #F6F6F6; */
}

/* Ending Variables */

/* Starting Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

::selection {
  background-color: var(--main-color);
  color: white;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Small Screens */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium Screens */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.unstyled-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  margin: auto;
  padding: 15px 20px;
  color: white;
  width: fit-content;
}

.middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--transparent-color);
}

.section-header {
  text-align: center;
  font-weight: normal;
  font-size: 2.5rem;
  position: relative;
  text-transform: uppercase;
  margin: auto;
  width: 250px;
}

.section-header::before,
.section-header::after {
  content: "";
  position: absolute;
}

.section-header::before {
  bottom: -30px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: black;
}

.section-header::after {
  bottom: -36px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border: 2px solid black;
  border-radius: 50%;
  background-color: white;
}

.section-header + p {
  width: 550px;
  max-width: 100%;
  text-align: center;
  color: var(--paragraph-color);
  line-height: var(--main-line-height);
  margin: 70px auto 100px;
}

/* Ending Global Rules */

/* Starting Header Section */
header {
  background-image: url("../images/landing.jpg");
  background-size: cover;
  background-color: red;
  height: 100vh;
  position: relative;
  z-index: 2;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: -1;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 97px;
}

header nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background-color: #a2a2a2;
}

header nav img {
  width: 120px;
}

header nav .site-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .site-links .toggle {
  font-size: 1.4rem;
  color: white;
  margin-right: 25px;
  transition: var(--main-duration);
  display: none;
}

header nav .site-links .links {
  display: flex;
}

header nav .site-links .links li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 40px 10px;
  transition: var(--main-duration);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

header nav .site-links .links li:last-of-type a {
  margin-right: 25px;
}

header nav .site-links .links li a.active,
header nav .site-links .links li a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

header nav .site-links .search a {
  color: white;
  border-left: 1px solid white;
  padding: 0 0 5px 20px;
  font-size: 1.2rem;
  transition: var(--main-duration);
}

header nav .site-links .toggle:hover,
header nav .site-links .search a:hover {
  color: var(--main-color);
}

@media (max-width: 767px) {
  header nav .site-links .toggle {
    display: block;
  }

  header nav .site-links .links {
    display: none;
  }

  header nav .site-links .toggle:hover + .links {
    display: flex;
    flex-direction: column;
    background-color: rgba(0 0 0 / 50%);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
  }

  header nav .site-links .links li a {
    padding: 20px;
  }
}

header .landing {
  width: 50%;
  padding: 50px;
  color: white;
  display: flex;
  justify-content: flex-end;
}

header .landing .welcome-text {
  max-width: 500px;
}

@media (max-width: 767px) {
  header .landing {
    width: 100%;
  }
}

header .landing .welcome-text h1 {
  margin-top: 0;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 20px;
}

header .landing .welcome-text p {
  line-height: 2;
  font-size: 0.88rem;
}

header .arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

header .arrows i {
  color: #ddd;
  transition: var(--main-duration);
}

header .arrows i:hover {
  color: var(--main-color);
}

@media (max-width: 767px) {
  header .arrows {
    display: none;
  }
}

header .covers {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 80px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

header .covers span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--main-duration);
}

header .covers span.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

header .covers span:hover {
  border-color: var(--main-color);
}

/* Ending Header Section */

/* Starting Services Section */
.services {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

@media (min-width: 768px) {
  .services .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    column-gap: 40px;
    row-gap: 60px;
  }
}

.services .services-content .service {
  display: flex;
}

.services .services-content .service i {
  margin-right: 50px;
}

@media (max-width: 767px) {
  .services .services-content .service {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 45px;
  }

  .services .services-content .service i {
    margin: 0 0 30px;
  }
}

.services .services-content .service .info h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--main-color);
}

.services .services-content .service .info p {
  color: var(--paragraph-color);
  line-height: var(--main-line-height);
}

/* Ending Services Section */

/* Starting Design Section */
.design {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-image: url("../images/design-features.jpg");
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.design::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: -1;
}

.design .image,
.design .design-rules {
  position: relative;
  flex: 1;
}

.design .image {
  text-align: center;
}

.design .image {
  position: relative;
  margin-bottom: -300px;
}

.design .design-rules {
  background-color: var(--transparent-color);
  color: white;
  padding: 50px;
}

@media (max-width: 767px) {
  .design .image {
    display: none;
  }

  .design .design-rules {
    width: 100%;
  }
}

.design .design-rules h2 {
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
}

.design .design-rules ul li {
  position: relative;
  padding: 10px 0;
}

.design .design-rules ul li::before {
  content: "\e163";
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 20px;
}

.design .design-rules ul li p {
  margin: 0;
}

/* Ending Design Section */

/* Starting Portfolio Section */
.portfolio {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.portfolio .shuffle {
  display: flex;
  justify-content: center;
}

.portfolio .shuffle li a {
  text-decoration: none;
  color: initial;
  padding: 10px;
  transition: var(--main-duration);
}

.portfolio .shuffle li a.active,
.portfolio .shuffle li a:hover {
  background-color: var(--main-color);
  color: white;
}

.portfolio .projects {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 40px;
}

.portfolio .projects .project {
  position: relative;
  transition: var(--main-duration);
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio .projects .project {
    flex-basis: 50%;
  }
}

@media (min-width: 1199px) {
  .portfolio .projects .project {
    flex-basis: 25%;
  }
}

.portfolio .projects .project img {
  max-width: 100%;
  transition: var(--main-duration);
}

.portfolio .projects .project:hover img {
  transform: scale(1.1) rotate(3deg);
}

.portfolio .projects .project .info {
  background-color: white;
  padding: 20px;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: var(--main-duration);
}

.portfolio .projects .project:hover .info {
  bottom: 0;
}

.portfolio .projects .project .info h4 {
  margin: 0;
  font-weight: normal;
}

.portfolio .projects .project .info p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--main-color);
}

.portfolio .more {
  background-color: var(--main-color);
  transition: var(--main-duration);
}

.portfolio .more:hover {
  background-color: var(--dark-color);
}

/* Ending Portfolio Section */

/* Starting Video Section */
.video {
  position: relative;
}

.video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
}

.video video {
  max-width: 100%;
}

.video .info {
  width: 100%;
  text-align: center;
  padding: 50px;
  color: white;
}

@media (max-width: 767px) {
  .video .info {
    max-height: 100%;
    padding: 30px;
  }
}

.video .info h2 {
  margin: 0 0 30px;
  font-weight: normal;
  text-transform: uppercase;
}

.video .info p {
  margin: 0 0 30px;
}

.video .info .see-more {
  background-color: black;
}

/* Ending Video Section */

/* Starting About Section */
.about {
  padding-top: var(--section-padding);
  text-align: center;
  overflow: hidden;
}

.about img {
  margin-bottom: -120px;
  max-width: 100%;
  margin-left: -22px;
}

@media (max-width: 767px) {
  .about img {
    margin-bottom: -70px;
  }
}

/* Ending About Section */

/* Starting Stats Section */
.stats {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-image: url("../images/stats.png");
  background-size: cover;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
}

.stats .stats-types {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--transparent-color);
}

@media (max-width: 767px) {
  .stats .stats-types {
    flex-direction: column;
  }
}

.stats .stats-types .type {
  text-align: center;
  padding: 50px;
}

@media (min-width: 768px) {
  .stats .stats-types .type {
    flex-basis: 50%;
  }
}

@media (min-width: 992px) {
  .stats .stats-types .type {
    flex-basis: 25%;
  }
}

.stats .stats-types .type i {
  color: white;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto;
  border-radius: 50%;
}

.stats .stats-types .type .number {
  color: white;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 30px 0 20px;
}

.stats .stats-types .type p {
  color: white;
  margin: 0;
  font-size: 0.9rem;
}

/* Ending Stats Section */

/* Starting Skills Section */
.our-skills {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.our-skills .test-skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 80px;
}

.our-skills .test-skills .testimonials h3,
.our-skills .test-skills .skills h3 {
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
}

.our-skills .test-skills .testimonials > p,
.our-skills .test-skills .skills p {
  text-align: center;
  color: var(--paragraph-color);
  line-height: var(--main-line-height);
  margin: 30px 0 60px;
}

.our-skills .test-skills .testimonials .employee {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.our-skills .test-skills .testimonials .employee img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 50px;
}

@media (max-width: 767px) {
  .our-skills .test-skills .testimonials .employee {
    flex-direction: column;
    text-align: center;
  }

  .our-skills .test-skills .testimonials .employee img {
    margin: 0 0 20px;
  }
}

.our-skills .test-skills .testimonials .employee .info {
  border-bottom: 1px solid #ccc;
}

.our-skills .test-skills .testimonials .employee .info p {
  line-height: var(--main-line-height);
  margin: 0 0 10px;
}

.our-skills .test-skills .testimonials .employee .info span {
  display: block;
  text-align: right;
  color: var(--paragraph-color);
  margin-bottom: 15px;
}

.our-skills .test-skills .testimonials .bullets {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.our-skills .test-skills .testimonials .bullets li {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 1px solid #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--main-duration);
}

.our-skills .test-skills .testimonials .bullets li.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.our-skills .test-skills .testimonials .bullets li:hover {
  border-color: var(--main-color);
}

.our-skills .test-skills .skills .skill {
  margin-bottom: 40px;
}

.our-skills .test-skills .skills .skill h4 {
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 15px;
}

.our-skills .test-skills .skills .skill div {
  height: 30px;
  background-color: #dedadc;
}

.our-skills .test-skills .skills .skill div span {
  display: block;
  background-color: var(--main-color);
  height: 100%;
  position: relative;
}

.our-skills .test-skills .skills .skill div span::before {
  content: attr(data-value);
  position: absolute;
  background-color: black;
  bottom: calc(100% + 10px);
  right: -20px;
  color: white;
  padding: 3px;
  border-radius: 3px;
}

.our-skills .test-skills .skills .skill div span::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

/* Ending Skills Section */

/* Starting Quote Section */
.quote {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-image: url("../images/quote.jpg");
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
}

.quote::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.75;
}

.quote .container {
  position: relative;
}

.quote q {
  font-weight: normal;
  font-size: 1.8rem;
}

.quote q::before,
.quote q::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  font-size: 1.3rem;
}

.quote q::before {
  content: "\f10d";
}

.quote q::after {
  content: "\f10e";
}

.quote p {
  font-size: 1.1rem;
  margin: 20px 0 0;
}

/* Ending Quote Section */

/* Starting Pricing Section */
.pricing {
  padding-top: var(--section-padding);
  padding-bottom: 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: #fdfdfd;
  border: 1px solid #efefef;
}

.pricing .plans .plan .head {
  padding: 40px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.pricing .plans .plan .head h3 {
  font-weight: normal;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.pricing .plans .plan .head span {
  font-size: 4rem;
  display: inline-block;
  font-weight: bold;
  position: relative;
}

.pricing .plans .plan .head span::before {
  content: "$";
  position: absolute;
  top: -5px;
  left: -30px;
  font-weight: normal;
  font-size: 1.5rem;
}

.pricing .plans .plan .head span::after {
  content: "/Mo";
  position: absolute;
  bottom: 5px;
  right: -50px;
  font-size: 1.2rem;
}

.pricing .plans .plan ul {
  border-bottom: 1px solid var(--main-color);
}

.pricing .plans .plan ul li {
  padding: 20px;
  width: 160px;
  margin: auto;
}

.pricing .plans .plan ul li:not(:last-child) {
  border-bottom: 2px solid var(--main-color);
}

.pricing .plans .plan .buy {
  border: 1px solid var(--main-color);
  color: initial;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: var(--main-duration);
}

.pricing .plans .plan .buy:hover {
  background-color: var(--main-color);
  color: white;
}

.pricing .pricing-contact {
  text-align: center;
  margin-top: 50px;
}

.pricing .pricing-contact p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.pricing .pricing-contact .contact {
  background-color: var(--main-color);
  transition: var(--main-duration);
}

.pricing .pricing-contact .contact:hover {
  background-color: var(--dark-color);
}

/* Ending Pricing Section */

/* Starting Subscribe Section */
.subscribe {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-image: url("../images/subscribe.jpg");
  background-size: cover;
  position: relative;
  color: white;
}

.subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.subscribe .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .subscribe .container {
    flex-direction: column;
  }
}

.subscribe form {
  display: flex;
  position: relative;
  width: 500px;
  max-width: 100%;
  border: 1px solid #eee;
}

.subscribe form:focus-within {
  border-color: var(--main-color);
}

.subscribe form .email-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  color: #eee;
}

.subscribe form .email-icon:has(+ input:focus) {
  color: var(--main-color);
}

.subscribe form input[type="email"] {
  background: none;
  padding: 20px 20px 20px 60px;
  caret-color: var(--main-color);
  border: none;
  color: white;
  width: calc(100% - 130px);
}

.subscribe form input[type="email"]::placeholder {
  color: white;
}

.subscribe form input[type="email"]:focus::placeholder {
  color: var(--main-color);
}

.subscribe form input[type="submit"] {
  width: 130px;
  background-color: var(--main-color);
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  transition: var(--main-duration);
  text-transform: uppercase;
  border: none;
}

.subscribe form input[type="email"]:focus,
.subscribe form input[type="submit"]:focus {
  outline: none;
}

.subscribe form input[type="submit"]:hover {
  background-color: var(--dark-color);
}

.subscribe p {
  line-height: var(--main-line-height);
  font-size: 1.1rem;
  margin: 0 0 0 50px;
}

@media (max-width: 991px) {
  .subscribe p {
    margin: 30px 0 0;
    text-align: center;
  }
}

/* Ending Subscribe Section */

/* Starting Contact Section */
.contact-us {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.contact-us .user-info {
  display: flex;
  justify-content: space-between;
}

.contact-us .user-info form {
  flex-basis: 70%;
}

@media (max-width: 767px) {
  .contact-us .user-info {
    flex-direction: column;
  }

  .contact-us .user-info form {
    flex-basis: 100%;
  }
}

.contact-us .user-info form input[type="text"],
.contact-us .user-info form input[type="email"],
.contact-us .user-info form textarea {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 20px;
  border: 1px solid #ccc;
}

.contact-us .user-info form textarea {
  height: 200px;
  resize: none;
}

.contact-us .user-info form input:focus,
.contact-us .user-info form textarea:focus {
  caret-color: var(--main-color);
  outline: none;
  border-color: var(--main-color);
}

.contact-us .user-info form input:focus::placeholder,
.contact-us .user-info form textarea:focus::placeholder {
  color: var(--main-color);
}

.contact-us .user-info form input[type="submit"] {
  background-color: var(--main-color);
  transition: var(--main-duration);
  text-transform: uppercase;
  margin-left: auto;
  display: flex;
  cursor: pointer;
  color: white;
  padding: 20px;
  border: none;
}

.contact-us .user-info form input[type="submit"]:hover {
  background-color: var(--dark-color);
}

@media (max-width: 767px) {
  .contact-us .user-info form input[type="submit"] {
    margin: auto;
  }
}

.contact-us .user-info .data {
  flex-basis: 25%;
}

.contact-us .user-info .data h3 {
  text-transform: uppercase;
  margin: 0 0 30px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contact-us .user-info .data {
    flex-basis: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    order: -1;
    margin-bottom: 50px;
  }

  .contact-us .user-info .data h3 {
    margin-bottom: 10px;
  }
}

.contact-us .user-info .data p {
  color: var(--paragraph-color);
  margin-bottom: 10px;
}

.contact-us .user-info .data .numbers {
  margin-bottom: 70px;
}

.contact-us .user-info .data .location em {
  color: var(--paragraph-color);
  display: block;
  margin: 0 0 10px;
}

/* Ending Contact Section */

/* Starting Footer Section */
footer {
  padding-top: calc(var(--section-padding) / 2);
  padding-bottom: calc(var(--section-padding) / 2);
  background-image: url("../images/subscribe.jpg");
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
}

footer .container {
  position: relative;
}

footer .social {
  margin: 40px auto 70px;
}

footer .social p {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  font-size: 1.4rem;
  width: fit-content;
  margin: 20px auto;
}

footer .social .links a {
  display: inline-block;
  padding: 10px 15px;
  color: white;
  transition: var(--main-duration);
}

footer .social .links a:hover {
  color: var(--main-color);
}

footer p {
  margin: 0;
}

footer p span {
  color: var(--main-color);
  font-weight: bold;
}

/* Ending Footer Section */
