*, *::before, *::after, html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.header {
  z-index: 2;
  margin-top: 92px;
  padding-top: 100px;
  width: 100%;
  height: 500px;
  text-align: center;
  background-color: #f6f6f6;
}

.header h1 {
  margin-bottom: 60px;
  color: #10cab7;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  font-size: 55.43px;
}

.header p {
  margin: 0 auto;
  line-height: 1.6;
  color: #2c4755;
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  max-width: 400px;
}

a, a:visited, a:focus {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

.burger {
  z-index: 10;
  width: 35px;
  height: 30px;
}

.burger .line-1 {
  border-radius: 20px;
  width: 100%;
  height: 4px;
  background-color: #2c4755;
  margin-bottom: 9px;
  -webkit-transition: background-color,-webkit-transform .5s ease-in-out;
  transition: background-color,-webkit-transform .5s ease-in-out;
  transition: background-color,transform .5s ease-in-out;
  transition: background-color,transform .5s ease-in-out,-webkit-transform .5s ease-in-out;
}

.burger .line-2 {
  width: 20px;
  height: 4px;
  background-color: #2c4755;
  border-radius: 20px;
  margin-left: auto;
  margin-bottom: 9px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: width .3s ease , background-color,-webkit-transform .5s ease-in-out;
  transition: width .3s ease , background-color,-webkit-transform .5s ease-in-out;
  transition: width .3s ease , background-color,transform .5s ease-in-out;
  transition: width .3s ease , background-color,transform .5s ease-in-out , -webkit-transform .5s ease-in-out;
}

.burger .line-3 {
  border-radius: 20px;
  width: 100%;
  height: 4px;
  background-color: #2c4755;
  -webkit-transition: background-color,-webkit-transform .5s ease-in-out;
  transition: background-color,-webkit-transform .5s ease-in-out;
  transition: background-color,transform .5s ease-in-out;
  transition: background-color,transform .5s ease-in-out,-webkit-transform .5s ease-in-out;
}

.burger:hover .line-2 {
  width: 100%;
}

.burger.open .line-1 {
  -webkit-transform: rotate(45deg) translate(8px, 10px);
          transform: rotate(45deg) translate(8px, 10px);
  background-color: white;
}

.burger.open .line-2 {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  background-color: transparent;
}

.burger.open .line-3 {
  -webkit-transform: rotate(-45deg) translate(8px, -10px);
          transform: rotate(-45deg) translate(8px, -10px);
  background-color: white;
}

nav {
  z-index: 1000;
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 92px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  z-index: 22;
}

nav .navbar__links {
  padding-top: 30px;
  display: none;
  position: absolute;
  left: calc(50% + 30px);
  width: 545px;
  height: 900px;
  padding-left: 62px;
  background-color: #2c4755;
  -webkit-transition: display .5s ease-in-out;
  transition: display .5s ease-in-out;
}

nav .navbar__links p {
  color: #637988;
  font-size: 14.55px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  margin-top: 50px;
}

nav .navbar__links h3 {
  padding-top: 40px;
  color: #637988;
  font-size: 21px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}

nav .navbar__links ul {
  padding-top: 25px;
}

nav .navbar__links ul li {
  padding-bottom: 15px;
}

nav .navbar__links ul li a {
  color: #fff;
  font-size: 29px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

nav .navbar__links ul li a:hover {
  color: #10cab7;
}

.navbar__links.open {
  display: block;
}

.navbar {
  width: 1070px;
  height: 92px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.features {
  position: relative;
  width: 100%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features h4 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 4;
  color: #2c4755;
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

.features p {
  text-align: center;
  color: #575757;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400px;
  max-width: 350px;
  line-height: 2.133;
}

.features .feature-1 {
  background-color: white;
  width: 640px;
  min-height: 100%;
}

.features .feature-2 {
  background-color: white;
  width: 640px;
  min-height: 100%;
}

.features .feature-3 {
  background-color: white;
  width: 640px;
  min-height: 100%;
  padding-top: 5px;
}

.features .feature-3 img {
  padding-bottom: 16px;
}

.features .feature-1, .features .feature-2, .features .feature-3 {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 8px #00000000;
          box-shadow: 0px 0px 8px #00000000;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-box-shadow,-webkit-transform .3s ease;
  transition: -webkit-box-shadow,-webkit-transform .3s ease;
  transition: box-shadow,transform .3s ease;
  transition: box-shadow,transform .3s ease,-webkit-box-shadow,-webkit-transform .3s ease;
}

.features .feature-1:hover, .features .feature-2:hover, .features .feature-3:hover {
  z-index: 5;
  -webkit-box-shadow: 0px 2px 8px #00000033;
          box-shadow: 0px 2px 8px #00000033;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.services {
  position: relative;
  width: 100%;
  height: 835px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .services-container {
  display: -ms-grid;
  display: grid;
  height: 420px;
  width: 800px;
  margin-top: 180px;
  margin-left: 170px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  gap: 40px;
}

.services .services-container .service-1, .services .services-container .service-2, .services .services-container .service-3, .services .services-container .service-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services .services-container .service-1 img, .services .services-container .service-2 img, .services .services-container .service-3 img, .services .services-container .service-4 img {
  padding-top: 4px;
  padding-right: 40px;
}

.services .services-container .service-1 h4, .services .services-container .service-2 h4, .services .services-container .service-3 h4, .services .services-container .service-4 h4 {
  color: #1f2021;
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  margin-bottom: 30px;
}

.services .services-container .service-1 p, .services .services-container .service-2 p, .services .services-container .service-3 p, .services .services-container .service-4 p {
  color: #4d4c4c;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 2;
}

.services .shape {
  position: relative;
  right: 170px;
  bottom: 20%;
}

.services .shape .rectangle {
  position: absolute;
  right: 0;
  width: 100px;
  height: 435px;
  background-color: #2c4755;
}

.services .shape .square {
  position: absolute;
  top: 52.5px;
  right: 40px;
  width: 300px;
  height: 330px;
  background-color: #f6f6f6;
  -webkit-box-shadow: 0px 2px 10px #0000003a;
          box-shadow: 0px 2px 10px #0000003a;
  z-index: 2;
}

.portfolio {
  display: -ms-grid;
  display: grid;
  width: 100%;
  height: 725px;
  place-content: center;
  background-color: #fafafa;
}

.portfolio .portfolio-container {
  display: -ms-grid;
  display: grid;
  width: 1500px;
  height: 500px;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 500px;
      grid-template-rows: 500px;
  gap: 50px;
}

.portfolio .portfolio-container .projects {
  -webkit-box-shadow: 0px 0px 4px #00000033;
          box-shadow: 0px 0px 4px #00000033;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.portfolio .portfolio-container .projects:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.portfolio .portfolio-container .project-img {
  width: 500px;
  height: 370px;
  background-color: #f6f6f6;
}

.portfolio .portfolio-container .project-heading {
  width: 500px;
  height: 130px;
  padding-top: 20px;
  padding-left: 30px;
}

.portfolio .portfolio-container .project-heading h4 {
  color: #1f2021;
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

.portfolio .portfolio-container .project-heading p {
  padding-top: 10px;
  color: #4d4c4c;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 565px;
}

.about .shape {
  position: relative;
  -webkit-transform: translateY(-220px);
          transform: translateY(-220px);
  left: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about .shape .rectangle {
  position: absolute;
  top: 0;
  left: 0;
}

.about .shape .square {
  position: absolute;
  top: 52px;
  left: 15px;
  z-index: 5;
}

.about .shape .l-shape {
  position: absolute;
  top: 30px;
  left: 265px;
}

.about .about-heading {
  position: relative;
  right: 180px;
}

.about .about-heading h4 {
  max-width: 600px;
  color: #334752;
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  line-height: 2;
  z-index: 10;
}

.about .about-heading p {
  z-index: 10;
  max-width: 600px;
  color: #575757;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 2.133;
}

.about .about-heading hr {
  width: 271px;
  height: 3px;
  margin-top: 50px;
  margin-bottom: 20px;
  border: none;
  border-radius: 20px;
  background-color: #10cab7;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 500px;
  background-color: #fafafa;
}

.contact .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact h4 {
  margin-bottom: 18px;
  color: #2c4755;
  font-size: 55.43px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

.contact h5 {
  margin-bottom: 25px;
  color: #10cab7;
  font-size: 50px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

.contact p {
  margin-right: 35px;
  color: #334752;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}

.contact img {
  padding-right: 30px;
}

footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  background-color: #2c4755;
}

footer p {
  color: white;
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

footer p span {
  color: #10cab7;
}

html {
  scroll-behavior: smooth;
}
/*# sourceMappingURL=style.css.map */