@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700;900&display=swap');

:root {
  --color-black: hsl(0, 0%, 10%);
  --color-darks: hsl(0, 0%, 25%);
  --color-greys: hsl(0, 0%, 60%);
  --color-light: hsl(0, 0%, 95%);
  --color-white: hsl(0, 0%, 100%);
  --color-green-100: hsl(152, 24%, 45%);
  --color-green-200: hsl(152, 24%, 40%);
  --color-green-300: hsl(152, 24%, 35%);
  --display-100: clamp(0.88rem, calc(0.8rem + 0.38vw), 1rem);
  --display-200: clamp(1rem, calc(0.96rem + 0.18vw), 1.13rem);
  --display-300: clamp(1.2rem, calc(1.11rem + 0.43vw), 1.5rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: var(--display-200);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-black);
  background-color: var(--color-white);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-transform: unset;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.container {
  height: auto;
  padding: 0 1.25rem;
}

.brand {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: var(--color-black);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  margin: 0 auto;
  background-color: var(--color-white);
  /* -webkit-box-shadow: var(--shadow-medium);
  box-shadow: var(--shadow-medium); */
}

.navbar {
  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: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-column-gap: 2.4375rem;
  column-gap: 2.4375rem;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

.navbar-content {
  display: flex;
  width: auto;
  align-items: end;
  column-gap: 2rem;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  z-index: 10;
  /* overflow-y: auto; */
  background-color: var(--color-white);
  -webkit-box-shadow: var(--shadow-medium);
  box-shadow: var(--shadow-medium);
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.menu.is-active {
  top: 0;
  left: 0;
}

.menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.25rem;
  margin: 1.25rem;
}

.menu-link {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #939393;
}

.current-link {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;

  color: #FF9700;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.menu-link:hover {
  color: #FF9700;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.menu-block {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: var(--display-100);
  font-weight: 500;
  line-height: 1.25;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  white-space: nowrap;
  margin-left: auto;
  padding: 0.65rem 1.35rem;
  border-radius: 3rem;
  color: var(--color-white);
  background-color: var(--color-green-300);
  -webkit-box-shadow: var(--shadow-medium);
  box-shadow: var(--shadow-medium);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.content-container {
  padding: 6rem 1.25rem 0 1.25rem;
  height: 100vh;
}

.content,
.portfolio-content {
  height: 100%;
  display: grid;
}

.first-content {
  position: relative;
}

.second-content,
.contact-second-content {
  display: none;
}

.title span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 26px;
  color: #9E9E9E;
  text-transform: uppercase;
}

.sub-title {
  margin-top: 3px;
}

.sub-title span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 45px;
  line-height: 70px;
  letter-spacing: -1.85714px;
  color: #000000;
}

.about-title,
.portfolio-title {
  margin-top: 0rem;
}

.about-title span,
.portfolio-title span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 70px;
  letter-spacing: 2px;
  color: #000000;
}

.name {
  color: #FF9700 !important;
}

.hire-btn {
  display: flex;
  margin-top: 35px;
}

.hire-btn a {
  background-color: #FF9700;
  display: flex;
  width: auto;
  padding: 21px 31px;
  column-gap: 10px;
  align-items: center;
}

.hire-btn a span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  color: #FFFFFF;
}

.hire-btn a::after {
  content: '';
  background-image: url('../img/arrow.svg');
  background-size: 23px 23px;
  height: 23px;
  width: 23px;

  position: relative;
  right: 0;
  transition: right ease 0.5s;
}

.hire-btn a:hover::after {
  content: "";
  right: -6px;
}

.information {
  width: 100%;
  position: relative;
  animation: myfirst 1s;
}

@keyframes myfirst {
  0% {
    bottom: 0px;
    top: 100px;
  }

  100% {
    bottom: 100px;
    top: 0px;
  }
}

.amount-client {
  margin-top: 35px;
}

.project-done {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
}

.about-project-done {
  margin-top: 2rem;
  display: flex;
  gap: 5rem;
}

.amount span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 29px;
  color: #000;
}

.about-amount span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 70px;
  letter-spacing: 2px;
  color: #000000;
}

.about-amount-sub-title span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}

.amount-sub-title {
  margin-top: 3px;
}

.amount-sub-title span,
.content-email a {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #000;
}

.contact span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 35px;
  color: #000;
}

.about-desc span,
.contact a {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  letter-spacing: 1.5px;
}

.contact a:hover {
  color: #FF9700;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.about-second-content,
.contact-grid-container {
  margin-top: 2rem;
}

.about-work-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-submit-btn {
  display: flex;
}


.contact-success-submit-btn {
  display: none;
}

.contact-error-submit-btn {
  display: none;
}


.contact-submit-btn button {
  background-color: #FF9700;
  display: flex;
  width: auto;
  padding: 21px 31px;
  column-gap: 10px;
  align-items: center;
  color: #fff;

  width: 100%;
  justify-content: center;
}

.contact-success-submit-btn span {
  background-color: #15a800;
  display: flex;
  width: auto;
  padding: 21px 31px;
  column-gap: 10px;
  align-items: center;
  color: #fff;

  width: 100%;
  justify-content: center;
}

.contact-error-submit-btn span {
  background-color: #b3070f;
  display: flex;
  width: auto;
  padding: 21px 31px;
  column-gap: 10px;
  align-items: center;
  color: #fff;

  width: 100%;
  justify-content: center;
}

.work-card {
  box-shadow: 0 0 5px 0 rgb(205 205 205 / 65%);
  display: flex;
  column-gap: 1rem;
  padding: 16px 20px;
  border-radius: 10px;
  width: 100%;
}

.work-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50px;
  background-color: #FF9700;
}

.work-img img {
  width: 55%;
  height: 55%;
}

.work-content,
.contact-first-grid {
  display: grid;
}

.contact-first-grid {
  gap: 1rem;
}

.work-content span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000;
}

.work-content span:nth-child(2) {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #000;
}

.about-second-content-desc {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.about-second-desc span {
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 9px;

  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 24px;
  text-align: center;
  color: #000000;
}

.portfolio-card-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 2rem 0;
  gap: 4rem;
}

.portfolio-card {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
}

.portfolio-card-img {
  position: relative;
}

.portfolio-visit-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.portfolio-visit-container:hover>.portfolio-visit {
  display: flex;
}

.portfolio-visit {
  background: #00000030;
  border-radius: 5px;
  display: none;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.visit-content {
  border-radius: 50px;
  background-color: #ff9700;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visit-content span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.portfolio-card-img img {
  object-fit: cover;
  height: 20rem;
  width: 100%;
  border-radius: 5px;
}

.portfolio-card-title {
  margin: 0.8rem 0 0 0;
  padding: 0 1.5rem;
}

.portfolio-card-title a {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #939393;
}

.portfolio-card-subTitle {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.portfolio-card-subTitle a {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
}

.contact-name input,
.contact-subject input,
.contact-email input,
.contact-message textarea {
  width: 100%;
  padding: 20px;
}

.contact-grid-container {
  display: grid;
  gap: 1rem;
}

.contact-info {
  display: flex;
  gap: 3rem;
}


@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 1.75rem;
    column-gap: 1.75rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }

  .boreder-container {
    width: 100%;
    border-bottom: 2px solid #CDCDCD;
  }

  .content-container {
    padding: 4rem 0 0 1.25rem;
  }

  .title {
    width: 100%;
    position: relative;
    animation: mySec 1s;
  }

  @keyframes mySec {
    0% {
      left: -130px;
      right: 0px;
    }

    100% {
      left: 0px;
      right: 130px;
    }
  }

  .first-content {
    border-left: 2px solid #CDCDCD;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    padding: 0rem 5rem;
  }

  .about-first-content,
  .portfolio-first-content {
    border-left: 2px solid #CDCDCD;
    margin-top: 2rem;
    padding: 0rem 5rem;
  }

  .sub-title span {
    font-size: 65px;
  }

  .about-second-content {
    display: none;
  }

  .about-project-done {
    margin-top: 3rem;
    gap: 7rem;
  }

  .about-title {
    margin-top: 5rem;
  }

  .about-desc {
    width: 100%;
    max-width: 28rem;
  }

  .about-work-card {
    margin-top: 5rem;
  }

  .work-card {
    width: unset;
  }

  .portfolio-card {
    width: unset;
    border-radius: unset;
    box-shadow: none;
    max-width: 19rem;
  }
}

@media only screen and (min-width: 54.125rem) {
  .content {
    grid-template-columns: 1fr 0.8fr;
    column-gap: 2rem;
  }

  .first-content,
  .about-first-content {
    padding: 0 0 0 8rem;
    margin-top: 2rem;
  }

  .second-content {
    display: block;
    background-image: url('../img/main.JPG');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .contact-second-content {
    display: block;
    background-image: url('../img/space.jpeg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .about-second-content {
    display: block;
  }

  .about-second-content-desc {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-right: 5rem;
  }

  .contact-first-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-submit-btn,
  .contact-success-submit-btn,
  .contact-error-submit-btn {
    justify-content: flex-end;
  }

  .contact-submit-btn button,
  .contact-success-submit-btn span,
  .contact-error-submit-btn span {
    width: unset;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 1.75rem;
  height: auto;
  border: none;
  outline: none;
  visibility: visible;
}

.burger-line {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 2px;
  margin: 6px auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: var(--color-black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

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