@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

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

.button {
  margin-top: 25px;
  border-radius: 0;
  padding: 13px 50px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  color: #191919;
}

.text-center h1 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  color: #191919;
}
.text-center p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #666666;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
header {
  width: 90%;
  margin: auto;
  margin-top: 20px;
  border-radius: 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 16px 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  height: 64px;
  transition: width 0.5s ease-in-out, margin-top 0.5s ease-in-out, border-radius 0.2s ease-in-out;
}
header .logo {
  max-width: 130px;
}
header .navbar {
  gap: 60px;
}
header .navbar a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #191919;
  height: 64px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #fff;
}
header .navbar a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  transition: 0.5s all ease-in-out;
  top: 0;
  left: 0;
  background-color: #191919;
}
header .navbar a:hover::before {
  width: 100%;
  background-color: #eee;
}
header .nav_toggle {
  display: none;
}

#home {
  padding-bottom: 50px;
  position: relative;
}
#home .image {
  background-image: url(./images/header.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 700px;
}
#home .info {
  position: absolute;
  top: 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 200px;
}
#home .info h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 60px;
  color: #ffffff;
  max-width: 460px;
}
#home .info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #ffffff;
  margin-top: 25px;
}
#home .info .header-btn {
  background: #fff;
  margin-top: 25px;
  border-radius: 0;
  padding: 13px 50px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  color: #191919;
}

#about {
  padding-top: 60px;
  padding-bottom: 60px;
}
#about .about_container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
#about .about_container .content h3 {
  color: #feb633;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
#about .about_container .content h2 {
  color: #191919;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
#about .about_container .content p {
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
}
#about .about_container .content .about-btn {
  margin-top: 15px;
  border-radius: 0;
  padding: 13px 30px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: #191919;
  color: #ffffff;
}
#about .about_container .image img {
  max-width: 100%;
  width: 80%;
}

#services {
  padding-top: 60px;
  padding-bottom: 60px;
}
#services .boxs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
#services .boxs .box {
  flex: 1 1 21rem;
  display: flex;
  justify-content: normal;
  align-items: center;
  border: 1px solid;
  gap: 25px;
  margin-left: 15px;
  margin-top: 15px;
  padding-left: 15px;
  border-left-width: thick;
}
#services .boxs .box .image img {
  width: 65px;
}
#services .boxs .box .content h3 {
  font-size: 18px;
  line-height: 26px;
  color: #191919;
  font-weight: bold;
  padding-top: 15px;
  margin: 0;
}
#services .boxs .box .content p {
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  font-weight: normal;
}

#info {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
#info .image {
  margin-top: 15px;
  background-image: url(./images/bg-service.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 600px;
  position: relative;
}
#info .image img {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100%;
}
#info .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
}
#info .content h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #feb633;
}
#info .content h2 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  color: #ffffff;
  width: 32%;
}
#info .content hr {
  height: 3px;
  background: white;
  border-radius: 15px;
  width: 15%;
  opacity: 1;
}
#info .content p {
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  font-weight: 400;
  width: 40%;
}
#info .content .info-btn {
  padding: 13px 30px;
}

#Projects {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
#Projects .skills {
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#Projects .skills .image {
  flex: 1 1 38rem;
}
#Projects .skills .image img {
  max-width: 100%;
  width: 80%;
}
#Projects .skills .content h2 {
  font-size: 22px;
  line-height: 32px;
  color: #191919;
  font-weight: 700;
}
#Projects .skills .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #666666;
  width: 57%;
}
#Projects .skills .content .skill {
  margin-top: 10px;
}
#Projects .skills .content .skill h4 {
  font-size: 14px;
  line-height: 26px;
  color: #191919;
  font-weight: 600;
  margin: 0;
}
#Projects .skills .content .skill .the_progress {
  position: relative;
  background-color: rgba(238, 238, 238, 0.5882352941);
  height: 10px;
  border-radius: 15px;
}
#Projects .skills .content .skill .the_progress span {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  background-color: #191919;
  transition: 0.5s all ease-in-out;
}

#stats {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 15px;
  background-image: url(./images/bg-achievement.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
}
#stats .content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}
#stats .content .state {
  text-align: center;
}
#stats .content .state h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  color: #ffffff;
}
#stats .content .state h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
}

#person {
  padding-top: 60px;
  padding-bottom: 60px;
}
#person .info {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
#person .info .image {
  width: 100%;
}
#person .info .image img {
  width: 60%;
}
#person .info .content h2 {
  font-size: 35px;
  font-weight: 700;
  color: #191919;
}
#person .info .content p {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
}
#person .info .content h3 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #191919;
}
#person .info .content p:last-of-type {
  font-size: 15px;
}
#person .info .content img {
  max-width: 100%;
  width: 20%;
}

#articles {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 15px;
  background-image: url(./images/bg-ctaVideo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 500px;
}
#articles .info {
  padding-top: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
#articles .info h2 {
  font-size: 34px;
  line-height: 48px;
  font-weight: 600;
  color: #ffffff;
}
#articles .info p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff;
}

#working {
  padding-top: 60px;
  padding-bottom: 60px;
}
#working .boxs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#working .boxs .box {
  text-align: center;
}
#working .boxs .box img {
  width: 30%;
  margin-bottom: 10px;
}
#working .boxs .box h3 {
  line-height: 28px;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
}
#working .boxs .box p {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

#process {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-image: url(./images/bg-cta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 500px;
}
#process .info {
  text-align: center;
  padding-top: 100px;
}
#process .info h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  color: #ffffff;
}
#process .info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
  margin-top: 25px;
}
#process .info .process-btn {
  background: #fff;
  margin-top: 25px;
  border-radius: 0;
  padding: 13px 50px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  color: #191919;
}

#design {
  padding-top: 60px;
  padding-bottom: 60px;
}
#design .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin-top: 50px;
}
#design .content .content1 .box img, #design .content .content2 .box img {
  width: 80px;
  margin-bottom: 15px;
}
#design .content .content1 .box h3, #design .content .content2 .box h3 {
  font-size: 18px;
  line-height: 28px;
  color: #191919;
  font-weight: 600;
}
#design .content .content1 .box p, #design .content .content2 .box p {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  font-weight: 400;
}
#design .content .image img {
  margin-bottom: 20px;
}

#clients {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-image: url(./images/bg-clients.png);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
}
#clients .client {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
#clients .client img {
  margin-bottom: 20px;
}

#Team {
  padding-top: 60px;
  padding-bottom: 60px;
}
#Team .teams {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 15px;
  flex-wrap: wrap;
}
#Team .teams .team {
  text-align: center;
  margin-bottom: 20px;
}
#Team .teams .team h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #191919;
  margin-top: 20px;
  margin-bottom: 0;
}
#Team .teams .team p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #666666;
  margin: 0;
  margin-bottom: 6px;
}
#Team .teams .team .social img {
  width: 25px;
  margin-left: 5px;
}

#testimonials {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-image: url(./images/bg-testimonial.png);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  background-position: center;
}
#testimonials .info {
  text-align: center;
}
#testimonials .info h1 {
  font-size: 34px;
  line-height: 48px;
  color: #191919;
  font-weight: 600;
}
#testimonials .info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #191919;
}
#testimonials .info img {
  border-radius: 50%;
  margin: 20px 0 20px 0;
}
#testimonials .info h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #191919;
}
#testimonials .info h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #191919;
}

#protfolio {
  padding-top: 60px;
  padding-bottom: 60px;
}
#protfolio .contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
#protfolio .contents .content {
  text-align: center;
  margin-top: 20px;
}
#protfolio .contents .content img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}
#protfolio .contents .content h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #191919;
  margin-top: 20px;
}
#protfolio .contents .content h5 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #7f8c8d;
}

#text {
  background-color: #191919;
  max-height: 200px;
  max-width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
#text .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#text .info h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  color: #ffffff;
}

#plans {
  padding-top: 60px;
  padding-bottom: 60px;
}
#plans .plan1 {
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
#plans .plan1 .plan.one, #plans .plan1 .plan.two {
  border: 1px solid #eee;
  padding: 50px;
  margin-bottom: 10px;
}
#plans .plan1 .plan.one h3, #plans .plan1 .plan.two h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #191919;
}
#plans .plan1 .plan.one h1, #plans .plan1 .plan.two h1 {
  font-size: 54px;
  line-height: 64px;
  font-weight: 600;
  color: #191919;
}
#plans .plan1 .plan.one h5, #plans .plan1 .plan.two h5 {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  color: #191919;
}
#plans .plan1 .plan.one ul li, #plans .plan1 .plan.two ul li {
  margin-top: 15px;
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
  color: #666666;
}
#plans .plan1 .plan.one .plan-btn, #plans .plan1 .plan.two .plan-btn {
  background: #191919;
  color: #fff;
  padding: 13px 35px;
  margin-bottom: 5px;
}
#plans .plan1 .plan.one ul li:nth-child(3), #plans .plan1 .plan.one ul li:nth-child(4) {
  text-decoration: line-through;
}
#plans .plan2 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#plans .plan2 .plan.one, #plans .plan2 .plan.two, #plans .plan2 .plan.three {
  border: 1px solid #eee;
  padding: 50px;
  margin-bottom: 10px;
}
#plans .plan2 .plan.one h3, #plans .plan2 .plan.two h3, #plans .plan2 .plan.three h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #191919;
}
#plans .plan2 .plan.one h1, #plans .plan2 .plan.two h1, #plans .plan2 .plan.three h1 {
  font-size: 54px;
  line-height: 64px;
  font-weight: 600;
  color: #191919;
}
#plans .plan2 .plan.one h5, #plans .plan2 .plan.two h5, #plans .plan2 .plan.three h5 {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  color: #191919;
}
#plans .plan2 .plan.one ul li, #plans .plan2 .plan.two ul li, #plans .plan2 .plan.three ul li {
  margin-top: 15px;
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
  color: #666666;
}
#plans .plan2 .plan.one .plan-btn, #plans .plan2 .plan.two .plan-btn, #plans .plan2 .plan.three .plan-btn {
  background: #191919;
  color: #fff;
  padding: 13px 35px;
  margin-bottom: 5px;
}
#plans .plan2 .plan.one ul li:nth-child(3), #plans .plan2 .plan.one ul li:nth-child(4) {
  text-decoration: line-through;
}

#contact {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-image: url(./images/bg-cta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 500px;
}
#contact .info {
  text-align: center;
  padding-top: 130px;
}
#contact .info h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 46px;
  color: #ffffff;
}
#contact .info .contact-btn {
  background: #fff;
  margin-top: 25px;
  border-radius: 0;
  padding: 13px 50px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  color: #191919;
}

#blog {
  padding-top: 60px;
  padding-bottom: 60px;
}
#blog .boxs {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
#blog .boxs .box {
  margin-bottom: 20px;
}
#blog .boxs .box img {
  max-width: 100%;
  border-radius: 10px;
}
#blog .boxs .box h3 {
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  color: #7f8c8d;
  margin-top: 15px;
}
#blog .boxs .box h2 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #191919;
}
#blog .boxs .box p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #666666;
  max-width: 227px;
}
#blog .boxs .box .blog-btn {
  background-color: #191919;
  color: #fff;
  padding: 13px 30px;
  margin: 0;
}

#footer {
  padding: 60px 0px;
  background-color: #191919;
  max-width: 100%;
}
#footer .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 40px;
}
#footer .info .content img {
  width: 130px;
}
#footer .info .content img + p {
  color: #939393;
  margin: 25px 0;
  max-width: 170px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
#footer .info .content .icons {
  display: flex;
  gap: 7px;
}
#footer .info .content .icons svg {
  width: 20px;
  height: 20px;
  padding: 5px;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 50%;
}
#footer .info .content.information {
  margin: 15px 0;
}
#footer .info .content.information h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
}
#footer .info .content.information p:nth-of-type(1) {
  color: #939393;
  margin-top: 25px;
  max-width: 170px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
#footer .info .content.information p:nth-of-type(2) {
  color: #939393;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 22px;
}
#footer .info .content.information p:nth-of-type(3) {
  color: #939393;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 22px;
}
#footer .info .content.Links {
  margin: 15px 0;
}
#footer .info .content.Links h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
}
#footer .info .content.Links ul li {
  color: #939393;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
#footer hr {
  background-color: #939393;
}
#footer .copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: #939393;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  header img {
    max-width: 100%;
  }
  header .nav_toggle {
    display: inline-block;
    font-size: 32px;
    border: 0;
    color: #000;
    background-color: transparent;
    cursor: pointer;
  }
  header #nav_toggle-close {
    display: none;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    gap: 0;
    width: 100%;
    display: none;
  }
  header .navbar a {
    display: block;
    width: 100%;
  }
  #about .about_container {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
  #about .about_container .image img {
    width: 100%;
  }
  #services .boxs .box {
    flex: 1 1 20rem;
  }
  #info .image img {
    right: 0;
  }
  #info .content {
    left: 5%;
    top: 56%;
  }
  #Projects .skills .image {
    width: 50%;
    flex: auto;
  }
  #Projects .skills .content {
    width: 50%;
  }
  #person .info {
    gap: 20px;
  }
  #person .info .image img {
    width: 100%;
  }
  #Team .teams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .links {
    margin-right: 0 !important;
  }
  #about .about_container {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
  #about .about_container .image img {
    width: 100%;
  }
  #services .boxs .box {
    flex: 1 1 20rem;
  }
  #info .image img {
    right: 0;
  }
  #info .content {
    left: 5%;
    top: 56%;
  }
  #Projects .skills .image {
    width: 50%;
    flex: auto;
  }
  #Projects .skills .content {
    width: 50%;
  }
  #person .info {
    gap: 20px;
  }
  #person .info .image img {
    width: 100%;
  }
  #Team .teams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #plans .plan2 {
    justify-content: space-evenly;
  }
}
@media (min-width: 350px) and (max-width: 767px) {
  header img {
    max-width: 100%;
  }
  header .nav_toggle {
    display: inline-block;
    font-size: 32px;
    border: 0;
    color: #000;
    background-color: transparent;
    cursor: pointer;
  }
  header #nav_toggle-close {
    display: none;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    gap: 0;
    width: 100%;
    display: none;
  }
  header .navbar a {
    display: block;
    width: 100%;
  }
  #home .info {
    padding-top: 100px;
  }
  #home .info .header-btn {
    padding: 13px 27px;
  }
  #about .about_container {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }
  #about .about_container .image {
    margin-top: 20px;
  }
  #about .about_container .image img {
    width: 100%;
  }
  #services .boxs .box {
    flex: 1 1 20rem;
    justify-content: center;
    padding: 0;
  }
  #info .image img {
    top: 70%;
  }
  #info .content {
    top: 23%;
    text-align: center;
    transform: translateY(-30%);
  }
  #info .content h2 {
    width: 100%;
  }
  #info .content hr {
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  #info .content p {
    width: 100%;
  }
  #info .content .info-btn {
    margin: 0;
  }
  #Projects .skills .image {
    width: 100%;
  }
  #Projects .skills .image img {
    width: 100%;
  }
  #Projects .skills .content {
    width: 100%;
    margin-top: 20px;
  }
  #person .info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #person .info .image {
    width: 100%;
  }
  #person .info .image img {
    width: 100%;
  }
  #articles .info {
    padding-top: 100px;
  }
  #working .boxs {
    flex-wrap: wrap;
  }
  #process .info {
    padding-top: 70px;
  }
  #design .content {
    display: block;
  }
  #Team .teams {
    display: flex;
  }
  #protfolio .contents {
    grid-template-columns: 1fr;
  }
  #text {
    padding-top: 20px;
  }
  #text .info {
    justify-content: center;
  }
  #text .info h1 {
    text-align: center;
  }
  #plans .plan1, #plans .plan2 {
    justify-content: center;
    display: block;
  }
  #contact .info {
    padding-top: 80px;
  }
  #footer .info {
    flex-direction: column;
  }
  .content {
    text-align: center;
  }
  .content img {
    width: 130px;
  }
  .content img + p {
    color: #939393;
    margin: auto;
    margin: 25px 0;
    max-width: 170px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }
  .content.information {
    margin-top: 25px !important;
  }
  .content.information h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
  }
  .content.information p:nth-of-type(1) {
    margin: auto;
    margin-top: 0 !important;
    color: #939393;
    max-width: 170px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
  }
  .content.Links {
    margin: 15px 0;
  }
  .content.Links h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
  }
  .content.Links ul li {
    color: #939393;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
}/*# sourceMappingURL=style.css.map */