@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:regular,600,700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  line-height: 1;
  height: 100%;
}

/* ! Form */
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  color: inherit;
  background-color: transparent;
}

button,
select,
option {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #37393f;
}

.wrapper {
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

[class*=__container] {
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.header {
  position: fixed;
  width: 100%;
  background-color: #ffffff;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 130px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 999.98px) {
  .header__container {
    min-height: 80px;
  }
}
@media (max-width: 509.98px) {
  .header__container {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 3;
}
.header__lable {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 25px;
}
@media (max-width: 509.98px) {
  .header__lable {
    display: none;
  }
}
.header__accent-lable {
  color: #6b77e5;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1099.98px) {
  .header__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (max-width: 999.98px) {
  .header__list {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    padding: 90px 15px 30px 15px;
    background-color: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
    text-align: right;
    row-gap: 25px;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }
  .header__list::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    height: 80px;
    width: 100%;
    z-index: 2;
    background-color: #0c626d;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }
}
.header__item--relative {
  position: relative;
}
@media (any-hover: hover) {
  .header__item:hover .header__link {
    color: #6b77e5;
  }
  .header__item:hover .header__sub-menu {
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .header__item:hover .header__link--active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media (max-width: 999.98px) {
  .header__item .header__link--active {
    display: block;
  }
}
.header__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 999.98px) {
  .header__link {
    font-size: 27px;
    font-weight: 500;
  }
}
.header__link--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__link--active::after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../img/header/sub-menu-arrow.svg) no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 999.98px) {
  .header__link--active::after {
    display: none;
  }
}
.header__sub-menu {
  position: absolute;
  width: 130px;
  top: 100%;
  left: 0;
  -webkit-transform: translate(0px, 10px);
      -ms-transform: translate(0px, 10px);
          transform: translate(0px, 10px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media (max-width: 999.98px) {
  .header__sub-menu {
    position: relative;
    padding-top: 10px;
    top: 0;
    width: 100%;
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    visibility: visible;
    opacity: 1;
  }
}
.header__action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-menu {
  padding-top: 15px;
}
.sub-menu__list {
  background-color: #6b77e5;
  padding: 10px 15px;
  border-radius: 8px;
}
@media (max-width: 999.98px) {
  .sub-menu__list {
    background-color: #0c626d;
  }
}
.sub-menu__item:not(:last-child) {
  margin-bottom: 5px;
}
@media (any-hover: hover) {
  .sub-menu__item:hover .sub-menu__link {
    color: #ffffff;
    text-decoration: underline;
  }
}
.sub-menu__link {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 999.98px) {
  .sub-menu__link {
    color: #ffffff;
    font-size: 20px;
  }
}

.action {
  z-index: 3;
}

.button {
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 21px 35px;
  background-color: #6b77e5;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #4f59b2;
}
@media (max-width: 999.98px) {
  .button {
    padding: 15px 20px;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 999.98px) {
  .icon-menu {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
    height: 18px;
    position: relative;
  }
  .icon-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #37393f;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .icon-menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #37393f;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .icon-menu span {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background-color: #37393f;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.menu-open .icon-menu span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.menu-open .icon-menu::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  margin-top: -1px;
}
.menu-open .icon-menu::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  margin-bottom: -1px;
}
.menu-open body {
  overflow: hidden;
}
.menu-open .header__list,
.menu-open .header__list::before {
  left: 0;
}

.page__project {
  padding-top: 260px;
  padding-bottom: 150px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 759px) {
  .page__project {
    padding-top: 130px;
    padding-bottom: 75px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page__project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.page__project-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 434/501;
  -o-object-fit: cover;
     object-fit: cover;
}

.project__top-text {
  font-weight: 500;
  color: #37393f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.project__top-text::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #40ddb6;
}
.project__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 856.98px) {
  .project__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 491.98px) {
  .project__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.project__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.21;
  color: #37393f;
  max-width: 555px;
}
@media (max-width: 590.98px) {
  .project__title {
    font-size: 30px;
  }
}
@media (max-width: 491.98px) {
  .project__title {
    text-align: center;
    font-size: 25px;
  }
}
.project__link {
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
  padding: 21px 45px;
  background-color: #40ddb6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.project__link:hover {
  background-color: #329c81;
}

.footer {
  background-color: #37393f;
}
.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;
  min-height: 100px;
}
.footer__link {
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
}
.footer__link:hover {
  text-decoration: underline;
}