@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@100;200;300;400;500;600;700&display=swap");
/*#region i dont know*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --headerHeight: 70px;
  --backgroundColor: #232946;
  --textColor: #ffffff;
  --info-wrapper-bg: #006fff;
  --header: #ffd803;
  --pill: #21d4fd;
  --text: #ffffff;
  --primary-text: #ffffff;
  --secondary-text: #33ff00;
  --tertiary-text: #94a1b2;
  --bg-1: #ffffff;
  --bg-2: #a9d5e0;
  --text-1: #01410f;
  --text-2: #505050;
  --text-3: #000000;
  --header-bg: #ffffff;
  --header-text: #1a5222;
  --header-height: 4rem;
  --header-index: 10;
  --main-heading-font-size: 4rem;
}

::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: #33ff00;
}

::selection {
  color: white;
  background: #33ff00;
}

body {
  background: var(--backgroundColor);
  padding: 0 10% 2rem;
  color: var(--primary-text);
  font-family: "roboto";
  overflow-x: hidden;
}

.main-container {
  position: relative;
}

@keyframes orbit {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(100%, 0%);
  }
}
@keyframes rotate {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(-200deg);
  }
}
@keyframes rocket {}
.home-right-container {
  background: transparent;
  position: absolute;
  height: 100vh;
  width: 100%;
  z-index: 3;
}
.home-right-container svg {
  position: absolute;
  bottom: 10%;
  right: 0;
  overflow: visible;
  height: 80%;
}
.home-right-container .astronaut {
  z-index: 3;
  animation: orbit 100s, rotate 100s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.home-right-container .astronaut path {
  z-index: 3;
}
.home-right-container .rocket {
  animation: rocket 20s;
}

/*#endregion*/
/* #region header */
.main-header {
  width: 100%;
  height: var(--headerHeight);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.main-header .navbar {
  display: none;
  align-items: center;
  justify-content: space-evenly;
  width: 35%;
}
.main-header .navbar .nav-item {
  text-decoration: none;
  color: white;
  padding: 0 20px;
  margin: auto 0;
}
.main-header .social-media-icons {
  display: flex;
  justify-content: space-between;
  height: 30px;
  width: 150px;
}
.main-header .social-media-icons a img {
  width: 25px;
}

/* #endregion header */
/* #region home content */
.home-section {
  width: 100%;
  height: 100%;
}

.home-section > div {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 5rem;
}

.home-section div .text-content-wrapper {
  width: 100%;
  text-align: left;
}

.text-content-wrapper {
  width: 100%;
}
.text-content-wrapper .intro {
  display: flex;
  align-items: center;
}
.text-content-wrapper .intro span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #33ff00;
}
.text-content-wrapper .intro div {
  content: " ";
  width: 4rem;
  height: 1px;
  background: grey;
  margin: 0 0.6rem;
}
.text-content-wrapper .heading {
  margin-top: 0.5rem;
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -3px;
  margin-left: -2px;
}
.text-content-wrapper .heading .heading-keyword {
  position: relative;
  display: block;
  height: var(--main-heading-font-size);
  overflow: hidden;
}
.text-content-wrapper .heading .heading-keyword .keyword-container {
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-5rem);
  display: flex;
  align-items: center;
}
.text-content-wrapper .heading .heading-keyword .keyword-container span {
  width: 100%;
}
.text-content-wrapper .heading .heading-keyword .keyword-container.current {
  transition: transform 1s;
  transform: translateY(0);
}
.text-content-wrapper .heading .heading-keyword .keyword-container.push-down {
  transition: transform 1s;
  transform: translateY(5rem);
}
.text-content-wrapper .subheading {
  font-size: 0.7rem;
  font-weight: 500;
  color: #94a1b2;
  letter-spacing: 1px;
}

.svg-container {
  width: 100%;
  padding: 0 5%;
}
.svg-container svg:hover {
  border: none;
}

#bg {
  z-index: -1;
}

.rocket-image {
  width: 80%;
  padding-top: 100px;
  padding-left: 50px;
}

.rocket-svg {
  overflow: visible;
}

/* #endregion home content */
/* #region project section */
.projects-section {
  margin-top: 4rem;
}
.projects-section .projects-section-header {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.projects-section .projects-wrapper {
  position: relative;
}

.projects-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
.projects-row .row-project {
  width: 45%;
}
.projects-row .row-project .row-project-image {
  width: 100%;
  aspect-ratio: 10/6;
  background: #ffffff;
}
.projects-row .row-project .row-project-description > * {
  margin-bottom: 0.7rem;
}
.projects-row .row-project .row-project-description .row-project-type {
  margin-top: 1.3rem;
  font-weight: 700;
  font-size: 0.7rem;
  font-family: "josefin slab";
  color: #939393;
}
.projects-row .row-project .row-project-description .row-project-title {
  font-family: "josefin sans";
  font-size: 2rem;
  font-weight: 700;
}
.projects-row .row-project .row-project-description .row-project-details {
  font-size: 0.9rem;
  line-height: 1.1rem;
  font-weight: 400;
  color: #e3e3e3;
  font-family: "Josefin Slab";
}
.projects-row .row-project .row-project-description .row-project-visit-btn {
  margin-top: 1rem;
  display: block;
  width: fit-content;
  background-color: transparent;
  border: white 2px solid;
  border-radius: 50px;
  color: white;
  font-size: 0.8rem;
  padding: 12px 30px;
  text-decoration: none;
}
.projects-row .row-project .row-project-description .row-project-visit-btn:hover {
  background-color: white;
  color: var(--backgroundColor);
}
.projects-row .row-project .row-project-description .row-project-visit-btn:focus {
  outline: none;
}

.project-shopify {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.project-shopify .project-shopify-image {
  background-color: white;
  width: 100%;
  margin-left: 3rem;
}
.project-shopify .project-shopify-image img {
  width: 100%;
  display: block;
}
.project-shopify .project-shopify-info {
  background: transparent;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.project-shopify .project-shopify-info .project-title {
  margin-bottom: 1rem;
  font-family: "josefin sans";
  font-size: 2rem;
  font-weight: 700;
}
.project-shopify .project-shopify-info .project-description {
  font-size: 0.9rem;
  line-height: 1.1rem;
  font-weight: 400;
  color: #e3e3e3;
  font-family: "Josefin Slab";
}

.project-responsive {
  width: 100%;
  background: transparent;
  aspect-ratio: 19/12;
  margin-bottom: 8rem;
}
.project-responsive .project-responsive-image {
  position: relative;
  height: 80%;
  width: 100%;
  margin: 0 auto;
  background: white;
  transition: width 2s;
}
.project-responsive .project-responsive-image#mobile {
  width: 28%;
}
.project-responsive .project-responsive-image#tablet {
  width: 45%;
}
.project-responsive .project-responsive-image#lapimage {
  width: 100%;
}
.project-responsive .project-responsive-info {
  position: relative;
  height: 20%;
  background: #232946;
  padding: 1.5rem 0 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.project-responsive .project-responsive-info .project-title {
  font-family: "josefin sans";
  font-size: 2rem;
  font-weight: 700;
}
.project-responsive .project-responsive-screen-changer {
  z-index: 100;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
}
.project-responsive .project-responsive-screen-changer button {
  padding: 6px 26px;
  text-align: center;
  border: none;
  background: var(--backgroundColor);
  border: 1px solid #858585;
}
.project-responsive .project-responsive-screen-changer button:nth-child(1) {
  border-right: none;
  border-image-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.project-responsive .project-responsive-screen-changer button:nth-child(3) {
  border-left: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.project-responsive .project-responsive-screen-changer button svg {
  width: 30px;
}
.project-responsive .project-responsive-screen-changer button svg#lappy {
  width: 40px;
}
.project-responsive .project-responsive-screen-changer button svg path {
  stroke: #232946;
  stroke-width: 5px;
}
.project-responsive .project-responsive-screen-changer button.active {
  background: #dfdfdf;
}
.project-responsive .project-responsive-screen-changer button.active svg path {
  fill: #232946;
  stroke: #dfdfdf;
  stroke-width: 5px;
}

/* #endregion project section */
/*#region my services section*/
.services-section {
  width: 100%;
  padding: 0 5%;
}
.services-section .section-header {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.services-section .cards-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 50px;
}

.card {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: white;
  text-align: center;
  transition: transform 1s;
  padding: 0.5rem 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 0 0 rgba(255, 255, 255, 0.25);
}
.card .card-icon-container {
  border-radius: 1000px;
  margin: 0 auto 1.5rem;
  background-color: #aaaaaa;
  width: 4rem;
  height: 4rem;
}
.card .card-icon-container img {
  width: 2rem;
  display: none;
  background-color: transparent;
}
.card .card-title {
  height: 100%;
  margin-bottom: 0.6rem;
  display: block;
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "josefin sans";
}
.card .card-description {
  height: 100%;
  display: block;
  color: #797979;
  font-size: 0.65rem;
}

/*#endregion my services section*/
/*#region footer*/
.footer {
  padding: 0 5%;
  padding-top: 9rem;
}
.footer .section-header {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 4rem;
}
.footer .contacts-container {
  display: flex;
  justify-content: space-between;
}
.footer .copyright-text {
  width: fit-content;
  color: #5f5f5f;
  font-size: 0.7rem;
  font-weight: 500;
  margin: 5rem auto 0;
}

.email,
.phone {
  width: 100%;
  display: flex;
}
.email > *,
.phone > * {
  display: flex;
  justify-content: center;
  align-items: center;
  border: #4d5167 1px solid;
  margin-right: 10px;
  padding: 10px;
}

.email-icon,
.phone-icon {
  width: 60px;
  aspect-ratio: 1/1;
}

.email-address,
.phone-number {
  padding: 0 30px;
  position: relative;
}
.email-address::after,
.phone-number::after {
  cursor: pointer;
  content: "Click to copy!!";
  color: #5f5f5f;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 500;
  transition: background-color 300ms;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
.email-address:hover::after,
.phone-number:hover::after {
  transition: opacity 300ms;
  opacity: 1;
}
.email-address span,
.phone-number span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.phone {
  justify-content: flex-end;
}
.phone .number {
  letter-spacing: 5px;
}

/*#endregion*/
.responsive-project-container {
  font-size: 0.85rem;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.responsive-project-container .side-navbar {
  position: absolute;
  left: 0;
  height: 100%;
  background-color: white;
  color: var(--header-text);
  z-index: 100;
  width: 50%;
  max-width: 250px;
  padding: 1.7rem 10px;
  transform: translateX(-100%);
  transition: transform 1000ms;
}
.responsive-project-container .side-navbar.show {
  transform: translateX(0);
}
.responsive-project-container .side-navbar .close-navbar-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
}
.responsive-project-container .side-navbar .close-navbar-btn img {
  display: block;
  font-size: 0rem;
}
.responsive-project-container .side-navbar .close-navbar-btn:hover {
  cursor: pointer;
  background-color: #c3c3c3;
}
.responsive-project-container .side-navbar span {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
}
.responsive-project-container .side-navbar span:hover {
  cursor: pointer;
}
.responsive-project-container .header {
  height: var(--header-height);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--header-bg);
  color: var(--header-text);
  border-bottom: 1px solid lightgray;
  z-index: var(--header-index);
  padding: 0 10px;
}
.responsive-project-container .header .ham-icon {
  display: none;
}
.responsive-project-container .header .logo {
  font-size: 1.8em;
  font-family: "pacifico";
}
.responsive-project-container .header .logo:hover {
  cursor: pointer;
}
.responsive-project-container .header .navbar {
  margin-left: 35%;
}
.responsive-project-container .header .navbar span {
  margin-left: 1em;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
}
.responsive-project-container .header .navbar span:hover {
  cursor: pointer;
}
.responsive-project-container .header .sign-in {
  font-weight: 700;
  font-size: 0.9em;
}
.responsive-project-container .header .sign-in:hover {
  cursor: pointer;
}
.responsive-project-container .main-container {
  min-height: calc(100% - var(--header-height));
  padding: var(--header-height) 10%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.responsive-project-container .image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.responsive-project-container .image-container img {
  width: 60%;
}
.responsive-project-container .image-container .dots {
  display: flex;
  position: absolute;
  bottom: -1rem;
}
.responsive-project-container .image-container .dots span {
  border: 1px solid #4c4c4c;
  border-radius: 50%;
  background-color: transparent;
  width: 8px;
  height: 8px;
  margin-right: 5px;
}
.responsive-project-container .image-container .dots span.active {
  background-color: #4c4c4c;
}
.responsive-project-container .product-info-container {
  width: 100%;
}
.responsive-project-container .product-info-container > * {
  margin-bottom: 0.5em;
}
.responsive-project-container .product-info-container .title {
  font-size: 2.5em;
  font-family: "nunito";
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}
.responsive-project-container .product-info-container .ratings-container {
  margin-left: 5px;
  display: flex;
  align-items: center;
}
.responsive-project-container .product-info-container .ratings-container * {
  margin-right: 2px;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-2);
}
.responsive-project-container .product-info-container .ratings-container img {
  width: 1em;
  display: block;
}
.responsive-project-container .product-info-container .price {
  font-size: 2em;
  font-weight: 500;
  color: var(--text-2);
}
.responsive-project-container .product-info-container .size-dropdown {
  width: 10.6em;
  padding: 1.15em;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--text-2);
  color: var(--text-2);
  font-size: 0.75em;
  font-weight: 500;
}
.responsive-project-container .product-info-container .size-dropdown:focus {
  outline: none;
}
.responsive-project-container .product-info-container .quantity-cart-wrapper {
  margin-top: 20px;
  display: flex;
}
.responsive-project-container .product-info-container .quantity-container {
  width: 8em;
  padding: 0.3em 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--text-2);
  border-radius: 10px;
}
.responsive-project-container .product-info-container .quantity-container button {
  background: transparent;
  border: none;
  font-size: 0px;
}
.responsive-project-container .product-info-container .quantity-container button:focus {
  outline: none;
}
.responsive-project-container .product-info-container .quantity-container .quantity {
  color: var(--text-2);
  font-weight: 600;
}
.responsive-project-container .product-info-container .add-to-cart-btn {
  width: 5em;
  margin-left: 2em;
  display: flex;
}
.responsive-project-container .product-info-container .add-to-cart-btn:hover {
  cursor: pointer;
}
.responsive-project-container .product-info-container .add-to-cart-btn span {
  font-size: 0.8em;
  font-weight: 700;
  color: var(--text-2);
}
.responsive-project-container .product-info-container .add-to-cart-btn img {
  margin-left: 1px;
}
.responsive-project-container .product-info-container .product-description {
  width: 60%;
  margin-top: 1.7em;
  font-weight: 600;
  font-family: "josefin slab";
}
.responsive-project-container .product-info-container .product-description p {
  color: var(--text-1);
}

.style-tablet .responsive-project-container {
  overflow-y: scroll;
}
.style-tablet .responsive-project-container .header {
  justify-content: space-between;
}
.style-tablet .responsive-project-container .header .ham-icon {
  display: block;
}
.style-tablet .responsive-project-container .header .logo {
  margin-left: 1rem;
}
.style-tablet .responsive-project-container .header .navbar {
  display: none;
}
.style-tablet .responsive-project-container .header .sign-in {
  margin-right: 1rem;
}
.style-tablet .responsive-project-container .main-container {
  flex-direction: column;
  padding: 10% 15%;
}
.style-tablet .responsive-project-container .main-container .image-container img {
  width: 100%;
}
.style-tablet .responsive-project-container .main-container .product-info-container {
  margin-top: 1rem;
}
.style-tablet .responsive-project-container .main-container .product-info-container .title {
  font-size: 1.7rem;
}
.style-tablet .responsive-project-container .main-container .product-info-container .product-description {
  width: 80%;
}

.style-mobile .responsive-project-container {
  overflow-y: scroll;
}
.style-mobile .responsive-project-container .header {
  justify-content: space-between;
}
.style-mobile .responsive-project-container .header .ham-icon {
  display: block;
}
.style-mobile .responsive-project-container .header .logo {
  font-size: 1.3rem;
  margin-left: 1rem;
  font-weight: 700;
}
.style-mobile .responsive-project-container .header .navbar {
  display: none;
}
.style-mobile .responsive-project-container .header .sign-in {
  margin-right: 1rem;
  font-size: 0.7rem;
}
.style-mobile .responsive-project-container .main-container {
  flex-direction: column;
  padding: 10% 10%;
}
.style-mobile .responsive-project-container .main-container .image-container img {
  width: 100%;
}
.style-mobile .responsive-project-container .main-container .product-info-container {
  margin-top: 1rem;
  padding: 0 0.5rem;
}
.style-mobile .responsive-project-container .main-container .product-info-container > * {
  margin-bottom: 1rem;
}
.style-mobile .responsive-project-container .main-container .product-info-container .title {
  font-size: 1.5rem;
}
.style-mobile .responsive-project-container .main-container .product-info-container .product-description {
  width: 100%;
}

@media screen and (max-width: 650px) {
  body {
    padding: 0 5% 2rem;
  }

  .project-shopify {
    flex-direction: column;
    align-items: center;
  }
  .project-shopify .project-shopify-image {
    margin-left: 0;
  }
  .project-shopify .project-shopify-info {
    width: 100%;
    margin-top: 1rem;
  }

  .projects-row {
    flex-direction: column;
    margin-bottom: 0 !important;
  }
  .projects-row .row-project {
    width: 100% !important;
    margin-bottom: 5rem;
  }

  .project-responsive {
    padding: 0 1rem;
    margin-top: 5rem !important;
  }
  .project-responsive .project-responsive-image {
    width: 100% !important;
    aspect-ratio: 9/13 !important;
    height: auto !important;
  }
  .project-responsive .project-responsive-screen-changer {
    overflow: visible;
    display: none;
  }

  .responsive-project-container {
    overflow-y: scroll;
  }
  .responsive-project-container .header {
    justify-content: space-between;
  }
  .responsive-project-container .header .ham-icon {
    display: block;
  }
  .responsive-project-container .header .logo {
    font-size: 1.3rem;
    margin-left: 1rem;
    font-weight: 700;
  }
  .responsive-project-container .header .navbar {
    display: none;
  }
  .responsive-project-container .header .sign-in {
    margin-right: 1rem;
    font-size: 0.7rem;
  }
  .responsive-project-container .main-container {
    flex-direction: column;
    padding: 10% 10%;
  }
  .responsive-project-container .main-container .image-container img {
    width: 100%;
  }
  .responsive-project-container .main-container .product-info-container {
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  .responsive-project-container .main-container .product-info-container > * {
    margin-bottom: 1rem;
  }
  .responsive-project-container .main-container .product-info-container .title {
    font-size: 1.5rem;
  }
  .responsive-project-container .main-container .product-info-container .product-description {
    width: 100%;
  }

  .services-section .cards-container {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 850px) {
  .home-section > div {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
  }
  .home-section > div .text-content-wrapper {
    text-align: center;
  }
  .home-section > div .text-content-wrapper .intro {
    justify-content: center;
  }

  .projects-section {
    margin-top: 0rem;
  }

  .svg-container {
    height: fit-content;
    margin-top: 4rem;
    padding: 0;
  }

  .responsive-project-container {
    overflow-y: scroll;
  }
  .responsive-project-container .header {
    justify-content: space-between;
  }
  .responsive-project-container .header .ham-icon {
    display: block;
  }
  .responsive-project-container .header .logo {
    margin-left: 1rem;
  }
  .responsive-project-container .header .navbar {
    display: none;
  }
  .responsive-project-container .header .sign-in {
    margin-right: 1rem;
  }
  .responsive-project-container .main-container {
    flex-direction: column;
    padding: 10% 15%;
  }
  .responsive-project-container .main-container .image-container img {
    width: 100%;
  }
  .responsive-project-container .main-container .product-info-container {
    margin-top: 1rem;
  }
  .responsive-project-container .main-container .product-info-container .title {
    font-size: 1.7rem;
  }
  .responsive-project-container .main-container .product-info-container .product-description {
    width: 80%;
  }

  .project-responsive .project-responsive-image {
    width: 100% !important;
    aspect-ratio: 9/11 !important;
    height: auto !important;
  }
  .project-responsive .project-responsive-screen-changer {
    display: none;
  }
}
@media screen and (max-width: 950px) {
  body {
    padding: 0 5% 2rem;
  }

  .projects-row {
    margin-bottom: 5rem;
  }
  .projects-row .row-project {
    width: 48%;
  }

  .project-responsive {
    margin-top: 10rem;
  }
  .project-responsive .project-responsive-screen-changer {
    overflow: visible;
  }
  .project-responsive .project-responsive-screen-changer button {
    padding: 0px 10px;
  }

  .services-section .cards-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer .contacts-container {
    flex-direction: column;
  }
  .footer .contacts-container .phone {
    justify-content: flex-start;
    margin-top: 2rem;
  }
  .footer .contacts-container .email-icon, .footer .contacts-container .phone-icon {
    width: 45px;
  }
  .footer .contacts-container .email-address, .footer .contacts-container .phone-number {
    padding: 0 10px;
  }
  .footer .copyright-text {
    padding-bottom: 1REM;
  }
}
@media screen and (max-width: 1081px) {
  .svg-container {
    padding: 0;
  }

  .responsive-project-container {
    overflow: scroll;
  }
}

/*# sourceMappingURL=styles.css.map */
