@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Start Global Rulws */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --main-color: #fff;
  --main-color-alt: #c90707;
  --secondary-color: #13f0ff;
  --section-background-one: #1e1e1e;
  --section-background-two: #1a223d;
  --section-background-three: #22224a;
  --main-transition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--section-background-one);
  color: #fff;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 269px) {
  body {
    width: 50vh;
  }
}
@media (min-width: 768px) {
  .container {
    width: 758px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1380px;
  }
}
/* End Global Rulws */
/* Statr Scroll Top*/
.scroller {
  background-color: var(--secondary-color);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 0;
  height: 4px;
}
/* End Scroll Top*/
/* Start Components */
/*Start bottom  */
.up {
  position: fixed;
  bottom: 10px;
  right: -35px;
  background-color: var(--main-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--main-transition);
  z-index: 3;
}
.up:hover {
  transform: rotate(360deg);
}
.up i {
  color: var(--main-color-alt);
  font-size: 30px;
  border-radius: 25px;
}
.up.show {
  right: 10px;
}
/*End bottom  */
.main-heading {
  text-align: center;
}
.main-heading .main-title {
  margin: 0 auto 10px;
  border: 2px solid #333333;
  color: var(--main-color-alt);
  padding: 10px 20px;
  font-size: 30px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: var(--main-transition);
  text-transform: uppercase;
}
.main-heading .main-title::before,
.main-heading .main-title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--secondary-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 335px) {
  .main-heading .main-title::before,
  .main-heading .main-title::after {
    display: none;
  }
}
.main-heading .main-title::before {
  left: -30px;
}
.main-heading .main-title::after {
  right: -30px;
}
.main-heading .main-title:hover::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}
.main-heading .main-title:hover::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}
.main-heading .main-title:hover {
  color: #fff;
  border: 2px solid #fff;
  transition-delay: 0.5s;
}
.main-heading p {
  color: #777;
  line-height: 2;
  width: 550px;
  max-width: 100%;
  margin: 0 auto 100px;
}
span {
  color: var(--main-color-alt);
}
.spikes {
  position: relative;
}
.spikes::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  background-image: linear-gradient(
      135deg,
      var(--section-background-one) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, var(--section-background-one) 25%, transparent 25%);
  background-size: 35px 35px;
}
.dots {
  background-image: url(../imgs/dots.png);
  height: 186px;
  width: 204px;
  background-repeat: no-repeat;
  position: absolute;
  transition: 0.9s;
}
.dots-up {
  top: 200px;
  right: 0;
}
.dots-down {
  bottom: 200px;
  left: 0;
}
.dots-up:hover {
  right: 20px;
}
.dots-down {
  bottom: 200px;
  left: 0;
}
.dots-down:hover {
  left: 20px;
}
/* End Components */
/* Start Header */
header {
  background-color: #222223;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
header .logo {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 800;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  header .logo {
    height: 50px;
  }
}
header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
header .content .language {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 6px;
}
header .content .language i {
  font-size: 28px;
  color: #585858;
  transition: var(--main-transition);
  cursor: pointer;
}
header .content .language:hover i {
  color: var(--main-color);
}
header .language .ul-language {
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #222223;
  position: absolute;
  right: 0;
  min-width: 200px;
  top: calc(100% + 15px);
  border-radius: 2px 15px 2px 15px;
  display: none;
  z-index: 999;
}
header .language .ul-language::before {
  content: "";
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #f6f6f6ce transparent;
  position: absolute;
  right: 5px;
  top: -20px;
}
#nav_checked:checked ~ #ul-language {
  display: block;
}
header .language .ul-language li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: var(--main-color);
  transition: 0.5s;
  letter-spacing: 1.5px;
}
header .language .ul-language li a:hover {
  padding-left: 25px;
}
header .language .ul-language li:not(:last-child) a {
  border-bottom: 1px solid #686868a6;
}
header .links-up {
  margin-top: 5px;
}
header .links-up .button i {
  color: #585858;
  font-size: 28px;
  transition: 0.3s;
}
header .links-up:hover .button i {
  color: var(--main-color);
}
#nav_check:checked ~ #mega-menu {
  opacity: 5;
  z-index: 999;
  top: calc(100% + 1px);
}
#nav_check:checked ~ .button i {
  color: var(--main-color);
}
header .links-up .mega-menu {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px;
  background-color: #222223;
  z-index: -1;
  border-bottom: 1px solid var(--secondary-color);
  display: flex;
  gap: 40px;
  top: calc(100% + 50px);
  transition: top var(--main-transition), opacity var(--main-transition);
  opacity: 0;
}
@media (max-width: 767px) {
  header .links-up .mega-menu {
    flex-direction: column;
    gap: 0;
    padding: 5px;
  }
}
header .links-up .mega-menu .image img {
  max-width: 100%;
}
@media (max-width: 991px) {
  header .links-up .mega-menu .image img {
    display: none;
  }
}
header .links-up .mega-menu img {
  margin-top: -20px;
  width: 300px;
}
header .links-up .mega-menu .links {
  min-width: 200px;
  flex: 1;
}
header .links-up .mega-menu .links li {
  position: relative;
}
header .links-up .mega-menu .links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--section-background-one);
  z-index: -1;
  transition: var(--main-transition);
}
header .links-up .mega-menu .links li:not(:last-child) {
  border-bottom: 1px solid #686868a6;
}
@media (max-width: 767px) {
  header .links-up .mega-menu .links:first-of-type li:last-of-type {
    border-bottom: 1px solid #686868a6;
  }
}
header .links-up .mega-menu .links li:hover::before {
  width: 100%;
}
header .links-up .mega-menu .links li a {
  color: var(--secondary-color);
  display: block;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}
header .links-up .mega-menu .links li a i {
  margin-right: 10px;
}
/* End Header */
/* Start landing */
.landing {
  position: relative;
  background-color: var(--section-background-one);
}
.landing .container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 57px);
}
@media (max-width: 991px) {
  .landing .container {
    flex-direction: column;
  }
}
.landing .intro-text {
  flex: 1;
}
@media (max-width: 991px) {
  .landing .intro-text {
    margin-top: 55px;
  }
}
.landing .intro-text h4 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.12rem;
  color: var(--secondary-color);
}
.landing .intro-text h1 {
  font-size: 4.8em;
  margin: 22px 0;
  font-weight: 800;
}
@media (max-width: 767px) {
  .landing .intro-text h1 {
    font-size: 2.2em;
  }
}
.landing .intro-text h3 {
  font-size: 1.5em;
  margin-bottom: 44px;
}
.landing .intro-text .btn {
  background-color: var(--main-color-alt);
  color: var(--main-color);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  padding: 16px 18px;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: 0.5s ease;
  border: 2px solid transparent;
  letter-spacing: 2.5px;
}
@media (max-width: 767px) {
  .landing .intro-text .btn {
    padding: 10px 14px;
    font-weight: 600;
  }
}
.landing .intro-text .btn:hover {
  background-color: transparent;
  border: 2px solid var(--main-color-alt);
}
.landing .intro-text .social {
  margin-top: 44px;
}
.landing .intro-text .social a {
  color: azure;
  font-size: 1.7em;
  margin-right: 30px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.landing .intro-text .social a:hover {
  transform: rotate(360deg);
}
.landing .image img {
  position: relative;
  width: 600px;
  max-width: 100%;
  animation: up-and-down 5s linear infinite;
}
.landing .down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--secondary-color);
  transition: var(--main-transition);
}
.landing .down:hover {
  color: var(--main-color-alt);
}
.landing .down i {
  animation: bouncing 1.5s infinite;
}
/* End landing */
/* Start About */
.about {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background-two);
}
.about .about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about .image img {
  width: 600px;
  max-width: 100%;
  transition: 0.5s ease;
}
.about .about-content img:hover {
  transform: scale(1.1);
}
.about .about-content .text {
  flex-basis: calc(80% - 550px);
}
.about .about-content .text p {
  font-weight: bold;
  line-height: 2;
  color: var(--secondary-color);
}
.about .about-content .text p:last-child {
  border-top: 1px solid var(--main-color);
  padding-top: 15px;
}
@media (max-width: 1400px) {
  .about .about-content {
    flex-direction: column;
    text-align: center;
  }
}
/* End About*/
/* Start Features */
.features {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background-one);
  position: relative;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .features .container {
    grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  }
}
.features .box {
  text-align: center;
  border: 1px solid var(--main-color);
  background-color: var(--section-background-three);
  z-index: 1;
  border-radius: 2px;
}
.features .box .img-holder {
  position: relative;
  overflow: hidden;
}
.features .box .img-holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
}
.features .box .img-holder::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0px 0px 170px 500px;
  border-color: transparent transparent var(--section-background-three)
    transparent;
  transition: var(--main-transition);
}
.features .box .img-holder img {
  max-width: 100%;
}
.features .box:hover .img-holder::after {
  border-width: 170px 500px 170px 0;
}
.features .box h2 {
  position: relative;
  font-size: 30px;
  margin: auto;
  width: fit-content;
}
.features .box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 15px;
  height: 5px;
  width: calc(100% - 30px);
}
.features .box p {
  line-height: 2;
  font-size: 20px;
  margin: 30px 0;
  padding: 25px;
  color: var(--secondary-color);
}
.features .box a {
  display: block;
  border: 3px solid transparent;
  width: fit-content;
  margin: 0 auto 30px;
  font-weight: bold;
  font-size: 22px;
  padding: 10px 30px;
  border-radius: 6px;
  transition: var(--main-transition);
  cursor: pointer;
}
.features .quality .img-holder::before {
  background-color: rgb(244 64 54 / 60%);
}
.features .quality h2::after {
  background-color: #f44036;
}
.features .quality a {
  color: #f44036;
  border-color: #f44036;
  background: linear-gradient(
    to right,
    #f44036 50%,
    var(--section-background-two) 50%
  );
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .time .img-holder::before {
  background-color: rgb(0 150 136 / 60%);
}
.features .time h2::after {
  background-color: #009688;
}
.features .time a {
  color: #009688;
  border-color: #009688;
  background: linear-gradient(
    to right,
    #009688 50%,
    var(--section-background-two) 50%
  );
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .passion .img-holder::before {
  background-color: rgb(3 169 244 / 60%);
}
.features .passion h2::after {
  background-color: #03a9f4;
}
.features .passion a {
  color: #03a9f4;
  border-color: #03a9f4;
  background: linear-gradient(
    to right,
    #03a9f4 50%,
    var(--section-background-two) 50%
  );
  background-size: 200% 100%;
  background-position: right bottom;
}
.features .box:hover a {
  background-position: left bottom;
  color: white;
}
/* End Features */
/* Start Gallery */
.gallery {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background-two);
}
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .gallery .container {
    grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  }
}
.gallery .box {
  box-shadow: 0 2px 15px rgb(0 0 0 / 65%);
  background-color: var(--section-background-two);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--main-transition),
    box-shadow var(--main-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 100%);
}
.gallery .box img {
  width: 100%;
  height: 220px;
  max-width: 100%;
}
.gallery .box .content {
  padding: 20px;
}
.gallery .box .content h3 {
  margin: 0;
}
.gallery .box .content p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #777;
}
.gallery .box .info {
  padding: 20px;
  border-top: 1px solid #333333;
}
.gallery .box .info a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery .box .info a {
  color: var(--secondary-color);
}
.gallery .box .info i {
  color: var(--secondary-color);
}
.gallery .box:hover .info i {
  animation: moving-arrow 0.6s linear infinite;
}
/* End gallery */
/* Start Testimonials */
.testimonials {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-color: var(--section-background-one);
}
.testimonials .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .testimonials .container {
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  }
}
.testimonials .box {
  padding: 20px;
  background-color: var(--section-background-two);
  box-shadow: 0 2px 4px rgb(0 0 0 /60%);
  border-radius: 6px;
  position: relative;
  transition: var(--main-transition);
}
.testimonials .box:hover {
  transform: translateY(-10px);
}
.testimonials .box img {
  position: absolute;
  right: -10px;
  top: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid var(--section-background-one);
  transition: all 0.3s ease-in-out;
}
.testimonials .box:hover img {
  transform: rotate(360deg);
}
.testimonials .box h3 {
  margin: 0 0 10px;
}
.testimonials .box .title {
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}
.testimonials .box .rate .filled {
  color: #ffc107;
}
.testimonials .box p {
  line-height: 1.5;
  color: var(--secondary-color);
  margin-top: 10px;
  margin-bottom: 0;
}
/* End Testimonials */
/* Start Skills */
.our-skills {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.our-skills .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.our-skills .container img {
  width: 600px;
  max-width: 100%;
  transition: var(--main-transition);
  z-index: 1;
}
.our-skills .container img:hover {
  transform: scale(0.9);
}
.our-skills .skills {
  flex: 1;
}
.our-skills .skill h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-skills .skill h3 span {
  font-size: 12px;
  border: 1px solid var(--main-color);
  padding: 3px 5px;
  border-radius: 4px;
  color: var(--secondary-color);
  background-color: #333333;
}
.our-skills .skill .the-progress {
  height: 30px;
  background-color: #333333;
  position: relative;
}
.our-skills .skill .the-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--secondary-color);
  transition: 0.9s;
}
/* End Skills */
/* Start contact */
.contact {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
}
.contact .image {
  background-image: url(../imgs/discount-background1.jpg);
  background-size: cover;
  color: white;
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: change-background 10s linear infinite;
  border-radius: 28px;
}
@media (max-width: 991px) {
  .contact .image {
    border-radius: 0;
  }
}
.contact .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e1ef0;
  z-index: -1;
  border-radius: 24px;
}
@media (max-width: 991px) {
  .contact .image {
    flex-basis: 100%;
  }
  .contact .image::before {
    border-radius: 0;
  }
}
.contact .form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 50%;
}
@media (max-width: 991px) {
  .contact .form {
    flex-basis: 100%;
  }
}
.contact .form .input {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
  border: none;
  border: 1px solid #ccc;
  background-color: transparent;
  color: var(--main-color);
  caret-color: var(--main-color);
}
.contact .form textarea.input {
  resize: none;
  height: 200px;
}
.contact .form .input:focus {
  outline: none;
}
.contact .form .submit {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--main-color-alt);
  color: white;
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: var(--main-transition);
  border: 1px solid var(--main-color-alt);
}
.contact .form .submit:hover {
  background-color: transparent;
}
.contact .content {
  text-align: center;
  padding: 0 20px;
}
.contact .content h2 {
  font-size: 40px;
  letter-spacing: 2.5px;
}
.contact .content p {
  line-height: 1.6;
  font-size: 18px;
  max-width: 500px;
  color: var(--secondary-color);
}
.contact .content img {
  width: 400px;
  max-width: 100%;
  background-color: var(--main-color-alt);
  border-radius: 84px;
}
/* End contact */
/* Start  footer */
footer {
  padding-bottom: 10px;
  margin-top: 80px;
  background-color: #191919;
  text-align: center;
}
@media (max-width: 767px) {
  footer {
    border-radius: 55% 0 0;
  }
}
footer .container img {
  width: 65px;
  margin: 30px 0 1px;
}
footer p:not(:last-child) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid #777;
  font-size: 22px;
  width: fit-content;
  margin: 20px auto;
}
footer .social-links a {
  text-decoration: none;
  margin-left: 5px;
  margin-bottom: 5px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
footer .social-links a:hover {
  transform: rotate(360deg);
}
footer .social-links a i {
  background: var(--section-background-one);
  height: 38px;
  line-height: 38px;
  width: 38px;
  border-radius: 50%;
  color: azure;
  text-align: center;
  font-size: 17px;
  box-shadow: 0 0 1px #555 inset;
}
footer .Right a {
  text-decoration: none;
  color: #ff0000;
}
footer .container a img {
  width: 100px;
  margin: 0px 0 -5px;
}
.Right {
  margin-top: 30px;
}
.Right span {
  font-weight: bold;
}
/* End  footer */
/* Start  Animation */
@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40%,
  60% {
    transform: translateY(-15px);
  }
}
@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}
@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}
@keyframes moving-arrow {
  100% {
    transform: translateX(10px);
  }
}
@keyframes change-background {
  0%,
  100% {
    background-image: url(../imgs/discount-background1.jpg);
  }
  50% {
    background-image: url(../imgs/discount-background2.jpg);
  }
}
/* End  Animation */
::-webkit-scrollbar {
  background-color: #323233;
  width: 10px;
}
::-webkit-scrollbar-corner {
  background-color: #585858;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb {
  background: #585858;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #aaaaaa93;
}
::-webkit-scrollbar-thumb:active {
  background: #aaaaaa;
}
