/* Start Variables */
:root {
  --main-color: #19c8fa;
  --transparent-color: rgb(15 116 143 / 70%);
  --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;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* 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 {
  color: white;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 97px;
}
header .container::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: white;
  width: calc(100% - 30px);
  height: 1px;
  left: 15px;
  z-index: -1;
}
header img {
  height: 40px;
}
header nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header ul {
  display: flex;
}
@media (max-width: 767px) {
  header ul {
    display: none;
  }
}
header ul li a {
  display: block;
  padding: 40px 10px;
  position: relative;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}
header ul li a.active,
header ul li a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
header .search {
  width: 40px;
  height: 30px;
  align-content: center;
  border-left: 1px solid white;
  margin-left: 15px;
}
header nav .toggle-menu {
  font-size: 22px;
  display: none;
}
@media (max-width: 767px) {
  header nav .toggle-menu {
    display: block;
  }
  header nav .toggle-menu:hover + ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    background-color: rgb(0 0 0 / 50%);
  }
  header nav .toggle-menu:hover + ul li a {
    padding: 15px 10px;
  }
}
header .search i {
  padding-left: 1rem;
}
/* end  header */
.landing {
  position: relative;
  background-image: url(../images/landing.jpg);
  background-size: cover;
  min-height: 100vh;
}
.background-color {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
}
.landing .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  color: white;
  background-color: var(--transparent-color);
  padding: 2rem 2rem 2rem 9rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.text .text-content h2 {
  line-height: 1.6;
  font-size: 32px;
  font-weight: normal;
}
.text .text-content p {
  line-height: 2;
  font-size: 14px;
}
.landing .angels {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 18px;
  padding: 0 2rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.landing .balls {
  position: absolute;
  bottom: 5%;
  transform: translateX(-50%);
  left: 50%;
  display: flex;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.landing .balls div {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid white 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.landing .balls .active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
@media (max-width: 992px) {
  .landing .text {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .landing .text {
    width: 100%;
    padding: 2rem;
    text-align: center;
  }
  .angels {
    display: none;
  }
}
/*  */
.services {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

@media (min-width: 768px) {
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 60px;
  }
}
.service-box {
  display: flex;
}
.service-box p {
  color: #777;
  line-height: 2;
}
.service-box h3 {
  color: var(--main-color);
}
.service-box i {
  margin-right: 3rem;
}
@media (max-width: 767px) {
  .service-box {
    flex-direction: column;
    margin-bottom: 3rem;
    text-align: center;
  }
  .service-box i {
    margin: 0 0 2rem;
  }
}
.design {
  background-image: url(../images/design-features.jpg);
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  height: 600px;
  overflow: hidden;
}
.design::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.design .design-img,
.design .design-right {
  position: relative;
  z-index: 2;
  flex: 1;
}
.design-right {
  padding: 2rem 2rem 2rem 4rem;
  background-color: var(--transparent-color);
}
.design-img {
  bottom: -150px;
  text-align: center;
}
@media (max-width: 767px) {
  .design-img {
    display: none;
  }
}
.design-right h2 {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 3rem;
}
.design .design-right div {
  margin-bottom: 20px;
}
.design .design-right div::before {
  content: "\f108";
  font-family: "font awesome 5 free";
  font-weight: 900;
  margin-right: 20px;
  position: relative;
  top: 1px;
}
/*  */
.Portfolio {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.Portfolio .menu {
  display: flex;
  justify-content: center;
}
.Portfolio .menu div {
  margin-right: 10px;
  padding: 10px;
}
.Portfolio .menu .active {
  background-color: var(--main-color);
  color: white;
}
.img-container {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.img-container .img-box {
  flex-basis: 25%;
  position: relative;
  overflow: hidden;
}
.img-container .img-box img {
  max-width: 100%;
  transition: 0.3s ease;
}
.img-box .img-caption {
  padding: 20px;
  position: absolute;
  bottom: -100%;
  background-color: white;
  width: 100%;
}
.img-box .img-caption .p {
  color: var(--main-color);
  margin-bottom: 20px;
}
.img-box:hover .img-caption {
  transition: 0.3s;
  bottom: 0;
  transform: translateY(0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.img-box:hover img {
  transform: rotate(3deg) scale(1.1);
  -webkit-transform: rotate(3deg) scale(1.1);
  -moz-transform: rotate(3deg) scale(1.1);
  -ms-transform: rotate(3deg) scale(1.1);
  -o-transform: rotate(3deg) scale(1.1);
}
@media (max-width: 1200px) {
  .img-container .img-box {
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .img-container .img-box {
    flex-basis: 100%;
  }
}
.Portfolio .more {
  margin: 30px auto;
  background-color: var(--main-color);
  color: white;
  padding: 20px;
  width: fit-content;
  text-decoration: none;
}
.Portfolio .more a {
  text-decoration: none;
  color: white;
}
/*  */
.video {
  position: relative;
}
.video::before {
  content: "";
  background-color: rgb(0 0 0 / 50%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video video {
  width: 100%;
}
.video .text {
  z-index: 2;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--transparent-color);
  width: 100%;
  padding: 50px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.video .text h2 {
  font-weight: normal;
  margin: 0 0 30px;
  text-transform: uppercase;
}
.video .text p {
  margin-bottom: 35px;
}
.video .text a {
  background-color: black;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
}
@media (max-width: 450px) {
  .video .text {
    padding: 25px;
  }
}
/*  */
.about {
  overflow: hidden;
  padding-top: var(--section-padding);
}
.about img {
  max-width: 100%;
  position: relative;
  bottom: -120px;
}
@media (max-width: 767px) {
  .about img {
    bottom: -70px;
  }
}
/*  */
.stats {
  background-image: url(../images/stats.png);
  background-size: cover;
  position: relative;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  color: white;
}
.stats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 50%);
  width: 100%;
  height: 100%;
}
.stats .container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--transparent-color);
}
.stat-box {
  text-align: center;
  padding: 50px;
  flex-basis: 25%;
}
.stat-box i {
  font-size: 18px;
  background-color: black;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.stat-box div {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}
.stat-box p {
  font-size: 14px;
}
@media (max-width: 992px) {
  .stats .stat-box {
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .stats .stat-box {
    flex-basis: 100%;
  }
}
/*  */
.Testimonials {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.Testimonials .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .Testimonials .container .left-container {
    flex-basis: 45%;
  }
  .Testimonials .container .right-container {
    flex-basis: 45%;
  }
}
.Testimonials h4 {
  font-weight: normal;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.Testimonials .text p,
.Testimonials .text p {
  font-size: 16px;
  color: #777;
  text-align: center;
  margin-bottom: 60px;
}
.Testimonials-info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.Testimonials-info .info-text {
  line-height: 1.8;
  border-bottom: solid #777 1px;
}
.Testimonials-info p {
  margin-bottom: 10px;
  text-align: right;
  color: #777;
  font-size: 14px;
}
.Testimonials-info img {
  border-radius: 50%;
  width: 100px;
  margin-right: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 767px) {
  .Testimonials-info {
    flex-direction: column;
    text-align: center;
  }
  .Testimonials-info img {
    margin: 0 0 20px 0;
  }
}
.Testimonials .balls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.Testimonials .balls div {
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px #777 solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.Testimonials .balls .active {
  background-color: var(--main-color);
  border: none;
}
.right-container .lang-level {
  background-color: #dedadc;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
}
.right-container .lang-level span {
  display: block;
  width: 90%;
  height: 100%;
  position: relative;
  background-color: var(--main-color);
}
.right-container .lang-level {
  background-color: #dedadc;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
}
.right-container .lang-level span {
  display: block;
  width: 85%;
  height: 100%;
  position: relative;
  background-color: var(--main-color);
}
.right-container .lang-level {
  background-color: #dedadc;
  width: 100%;
  height: 30px;
  margin-bottom: 30px;
}
.right-container .lang-level span {
  display: block;
  width: 80%;
  height: 100%;
  position: relative;
  background-color: var(--main-color);
}
.right-container .lang-level php {
  background-color: #dedadc;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
}
.right-container .lang-level span {
  display: block;
  width: 90%;
  height: 100%;
  position: relative;
  background-color: var(--main-color);
}
.right-container .lang-level span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: black transparent transparent;
  top: -15px;
  left: 97.5%;
}
.right-container .lang-level span::before {
  content: attr(date-progress);
  position: absolute;
  left: 95%;
  top: -40px;
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 4px 4px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.lang-holder h4 {
  font-size: 16px;
  text-align: left;
}
/* Start Quote */
.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;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 75%);
}
.quote .container {
  position: relative;
}
.quote q {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
}
/* End Quote */
/* Start Pricing */
.pricing {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.main-heading h2 {
  font-weight: normal;
  font-size: 40px;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  text-align: center;
}
.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;
}
.pricing .plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.pricing .plans .plan {
  background-color: #fcfcfc;
  text-align: center;
}
.pricing .plans .plan .head {
  padding: 40px 20px;
  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;
}
.pricing .plans .plan .head span {
  font-size: 60px;
  font-weight: bold;
}
.pricing .plans .plan .head span::before {
  content: "$";
  font-size: 25px;
  position: relative;
  top: -40px;
  margin-right: 15px;
  font-weight: normal;
}
.pricing .plans .plan .head span::after {
  content: "/Mo";
  font-size: 20px;
  position: relative;
  right: -15px;
}
.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)::after {
  content: "";
  width: 140px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.pricing .plans .plan .foot a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  border: 1px solid var(--main-color);
  width: fit-content;
  margin: 30px auto;
}
.pricing .contact-text {
  text-align: center;
  margin: 50px auto 20px;
  font-size: 20px;
}
.pricing .contact-link {
  display: block;
  width: fit-content;
  margin: 20px auto;
  background-color: var(--main-color);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
}
/* End Pricing */
/* Start Subscribe */
.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;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.subscribe .container {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .subscribe .container {
    flex-direction: column;
  }
}
.subscribe form {
  display: flex;
  position: relative;
  width: 500px;
  max-width: 100%;
}
.subscribe form i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}
.subscribe form input[type="email"] {
  border: 1px solid white;
  border-right: none;
  background: none;
  padding: 20px 20px 20px 60px;
  caret-color: var(--main-color);
  width: calc(100% - 130px);
}
.subscribe form input[type="submit"] {
  width: 130px;
  background-color: var(--main-color);
  color: white;
  padding: 10px 20px;
  border: 1px solid white;
  border-left: none;
  text-transform: uppercase;
}
.subscribe form input[type="email"]:focus,
.subscribe form input[type="submit"]:focus {
  outline: none;
}
.subscribe form ::placeholder {
  color: white;
}
.subscribe p {
  line-height: 2;
  margin-left: 50px;
}
@media (max-width: 991px) {
  .subscribe p {
    margin: 30px 0 0;
  }
}
/* End Subscribe */
/* Start Contact */
.contact {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.contact .content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact .content {
    flex-direction: column;
  }
}
.contact .content form {
  flex-basis: 70%;
}
.contact .content form .main-input {
  padding: 20px;
  display: block;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  width: 100%;
}
.contact .content form .main-input:focus {
  outline: none;
}
.contact .content form textarea.main-input {
  height: 200px;
}
.contact .content form input[type="submit"] {
  background-color: var(--main-color);
  color: white;
  padding: 20px;
  border: none;
  display: flex;
  margin-left: auto;
  text-transform: uppercase;
  cursor: pointer;
}
.contact .content .info {
  flex-basis: 25%;
}
@media (max-width: 767px) {
  .contact .content .info {
    order: -1;
    text-align: center;
  }
}
.contact .content .info h4 {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
}
.contact .content .info .phone {
  display: block;
  color: #777;
  margin-bottom: 10px;
}
.contact .content .info h4:nth-of-type(2) {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .contact .content .info h4:nth-of-type(2) {
    margin-top: 30px;
  }
}
.contact .content .info address {
  color: #777;
  line-height: 2;
}
@media (max-width: 767px) {
  .contact .content .info address {
    margin-bottom: 40px;
  }
}
/* End Contact */
/* Start Footer */
.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;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}
.footer .container {
  position: relative;
}
.footer img {
  margin-bottom: 20px;
}
.footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  font-size: 22px;
  width: fit-content;
  margin: 20px auto;
}
.footer .social-icons i {
  padding: 10px 15px;
}
.footer .copyright {
  margin-top: 60px;
}
.footer .copyright span {
  font-weight: bold;
  color: var(--main-color);
}
