/* Index page */ /* Breakpoints and media mixins */
.main-screen {
  background-position: center;
  background-color: #1B63EA;
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(20vh, 198px) 0;
  color: #FFFFFF;
  background-image: url("../img/components/main-screen/header-image.webp");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .main-screen {
    background-image: url("../img/components/main-screen/header-image@2x.webp");
  }
}
@media screen and (max-width: 1000px) {
  .main-screen {
    padding: 95px 0 113px;
  }
}
.main-screen h1 {
  max-width: 971px;
  margin: 0 auto 16px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .main-screen h1 {
    font-size: 1.25rem;
  }
}
.main-screen h2 {
  font-family: Merriweather, Times, serif;
  font-size: 1.125rem;
  max-width: 524px;
  margin: 0 auto 49px;
  text-align: center;
  font-weight: 300;
  line-height: 160%;
  text-transform: none;
  letter-spacing: normal;
}
.main-screen .buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* Breakpoints and media mixins */
.why {
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  max-width: 1150px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .why {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.why ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 119px;
  grid-row-gap: 55px;
  list-style: none;
  margin: 0 0 72px 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .why ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .why ul {
    grid-template-columns: auto;
  }
}
.why ul img {
  display: block;
  margin-bottom: 20px;
}
.why p {
  color: #1B68FF;
  text-align: center;
  font-size: 1.125rem;
  max-width: 806px;
  margin: 2em auto;
}
.why::after {
  content: "";
  background-color: #1B68FF;
  height: 1px;
  display: block;
  width: 806px;
  margin: 120px auto;
}
@media screen and (max-width: 1000px) {
  .why::after {
    width: auto;
    margin: 60px -5px;
  }
}

/* Breakpoints and media mixins */
.technology {
  margin-bottom: 120px;
}

@media screen and (max-width: 1000px) {
  .technology {
    margin-bottom: 60px;
  }
}
.technology h2 {
  margin-bottom: 100px;
}

@media screen and (max-width: 1000px) {
  .technology h2 {
    margin-bottom: 40px;
  }
}

.technology h3 {
  color: #1B68FF;
  min-width: 171px;
  max-width: 171px;
  padding-top: 34px;
}
.technology h3 > i {
  display: none;
}
@media screen and (max-width: 1000px) {
  .technology h3 {
    color: #333;
    position: relative;
    cursor: pointer;
    max-width: none;
    padding-top: 0;
    margin-bottom: 50px;
  }
  .technology h3.is-active {
    color: #1B68FF;
  }
  .technology h3 > i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .technology h3 > i > svg {
    fill: #333;
  }
  .technology h3.is-active > i > svg {
    fill: #1B68FF;
    transform: rotate(180deg);
  }
}
.technology ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .technology ul {
    display: none;
    gap: 80px;
  }
  .technology ul.is-active {
    display: flex;
  }
}
.technology li {
  font-size: 1rem;
  font-family: Lato, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  padding: 66px 10px 10px;
  background-repeat: no-repeat;
  background-position: center 10px;
  text-align: center;
  min-width: 100px;
}
.technology__section {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.technology__section:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .technology__section {
    display: block;
  }
}

/* Breakpoints and media mixins */ /* Contact list component */
.contacts-list address {
  font-style: normal;
  font-weight: 300;
  max-width: 339px;
}

.contacts-list address a {
  text-decoration: none !important;
  line-height: 1.75;
  color: white;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.contacts-list address a:hover {
  opacity: 0.8;
}

.contacts-list address a .icon {
  display: inline-block;
  width: 20px;
  height: 21px;
  vertical-align: middle;
  margin-right: 6px;
  fill: white;
}

.contacts-list address hr {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #E0E0E0;
}

.contacts-list address > div:not(:last-child) {
  margin-bottom: 12px;
}

/* Contacts block (not page) */ /* Breakpoints and media mixins */
.form {
  background-color: #fff;
  padding: 30px;
  color: #333;
  box-shadow: 0 0 15px rgba(1, 76, 223, 0.15);
}
@media screen and (max-width: 1000px) {
  .form {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.form label:not(.button) {
  font-size: 0.875rem;
  font-family: Lato, Helvetica, Arial, sans-serif;
  display: block;
  margin-bottom: 8px;
  color: #797979;
  line-height: 125%;
}
.form__error {
  color: #FF5732;
  margin-top: 8px;
  display: none;
  font-size: 0.875rem;
  font-family: Lato, Helvetica, Arial, sans-serif;
}
.has-error + .form__error {
  display: block;
}
.form__row {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
}
.form__row:not(:last-child) {
  margin-bottom: 40px;
}
.form__row > .form__item {
  flex-grow: 1;
  flex-shrink: 1;
}
@media screen and (max-width: 1200px) {
  .form__row {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .form__row {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .form__row {
    flex-direction: column;
  }
}
.form input[type=file] {
  display: none;
}
.form input[type=email],
.form input[type=password],
.form input[type=text] {
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.125;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #1B68FF;
  padding: 12px 10px;
  width: 100%;
  transition: all 0.15s ease;
  background-color: #FAFCFF;
}
.form input[type=email].has-error,
.form input[type=password].has-error,
.form input[type=text].has-error {
  background-color: #FFEFEC;
  border-color: #FF5732;
}
.form input[type=email]:focus,
.form input[type=password]:focus,
.form input[type=text]:focus {
  outline: none !important;
}
.form textarea {
  font-size: 0.875rem;
  width: 100%;
  font-family: Lato, Helvetica, Arial, sans-serif;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #1B68FF;
  padding: 12px 10px;
  line-height: 1.125;
  min-height: 176px;
  resize: none;
  transition: all 0.15s ease;
  background-color: #FAFCFF;
}
.form textarea:focus {
  outline: none !important;
}
.form__title {
  color: #333;
  font-size: 1.375rem;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.form__title > span {
  color: #1B68FF;
}
.form__subtitle {
  font-size: 1rem;
  font-family: Lato, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 500;
}
.form__file-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  opacity: 0.7;
  margin-left: 12px;
}

.contacts {
  background-color: #1B68FF;
  padding: 82px 0;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .contacts {
    padding-bottom: 0;
  }
}
.contacts h2 {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 30px;
  letter-spacing: 0;
}
.contacts h3 {
  font-size: 1.375rem;
  line-height: 140%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .contacts__content {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contacts > .container {
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  max-width: 1150px;
  padding-left: 50px;
  padding-right: 50px;
  display: grid;
  grid-template-columns: 339px auto;
  grid-column-gap: 146px;
}
@media screen and (max-width: 767px) {
  .contacts > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .contacts > .container {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 1000px) {
  .contacts > .container {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: auto;
  }
}
.contacts p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 296px;
}

/* Breakpoints and media mixins */
.projects {
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  max-width: 1150px;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .projects {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .projects {
    padding-left: 0;
    padding-right: 0;
  }
}
.projects::after {
  content: "";
  background-color: #1B68FF;
  height: 1px;
  display: block;
  width: 806px;
  margin: 120px auto;
}
@media screen and (max-width: 1000px) {
  .projects::after {
    width: auto;
    margin: 60px 10px;
  }
}
.projects__button {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.projects__list {
  display: grid;
  grid-auto-rows: 339px;
}

.project {
  display: grid;
  grid-template-areas: "wrapper more" "wrapper pic";
  color: white;
  padding: 44px 40px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .project {
    grid-template-areas: "wrapper more" "pic pic";
    grid-row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .project {
    padding: 27px 15px 0;
  }
}
.project .more {
  grid-area: more;
  justify-self: end;
  align-self: start;
  color: white;
  text-transform: uppercase;
  font-family: Lato, Helvetica, Arial, sans-serif;
  transition: color 0.15s linear;
  padding-right: 43px;
  display: inline-block;
  background: url("../img/components/projects/more.svg") right center no-repeat;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .project .more {
    text-indent: -9999px;
    overflow: hidden;
  }
}
.project .more:hover {
  color: rgba(255, 255, 255, 0.7);
}
.project .title {
  align-self: end;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  text-transform: uppercase;
  line-height: 130%;
  margin-bottom: 12px;
  font-weight: 400;
}
.project p {
  font-weight: 300;
  line-height: 175%;
  margin: 0;
  max-width: 398px;
}
.project picture {
  grid-area: pic;
  align-self: end;
  justify-self: end;
  margin-bottom: -52px;
}
@media screen and (max-width: 767px) {
  .project picture {
    justify-self: center;
    margin-bottom: -8px;
  }
  .project picture > .pic-sphere {
    width: 363px;
    height: 129px;
  }
  .project picture > .pic-suppi {
    width: 345px;
    height: 122px;
  }
  .project picture > .pic-veritas {
    width: 345px;
    height: 122px;
  }
}
.project .wrapper {
  grid-area: wrapper;
  align-self: center;
}

/* Breakpoints and media mixins */
.services {
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  max-width: 1150px;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .services {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: auto 447px;
  grid-column-gap: 20%;
  margin-top: 50px; /*was 120px*/
  margin-bottom: 120px;
  position: relative;
  height: 700px; /*didn't have this*/
}
@media screen and (max-width: 1000px) {
  .services__grid {
    height: auto;
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.services__grid::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 700px; /*didn't have this*/
  bottom: 0;
  right: 567px;
  width: 1px;
  background-color: #1B68FF;
}
@media screen and (max-width: 1000px) {
  .services__grid::before {
    display: none;
  }
}
.services__name {
  font-size: 1.375rem;
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 140%;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
  transition: color 0.15s ease;
  position: relative;
}
.services__name::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #1B68FF;
  position: absolute;
  left: -140px;
  top: 0.7em;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 1000px) {
  .services__name::before {
    display: none;
  }
}
.services__name:not(:last-child) {
  margin-bottom: 60px;
}
.services__name.is-active {
  color: #1B68FF;
}
.services__name.is-active::before {
  opacity: 1;
}
.services__name > i {
  display: none;
}
@media screen and (max-width: 1000px) {
  .services__name:not(:last-child) {
    margin-bottom: 40px;
  }
  .services__name > i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .services__name > i > svg {
    fill: #333;
  }
  .services__name.is-active > i > svg {
    fill: #1B68FF;
    transform: rotate(180deg);
  }
}
.services__card {
  opacity: 0;
  position: absolute;
  width: 447px;
  top: 0;
  right: 0;
  transition: opacity 0.17s ease;
}
.services__card.is-active {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .services__card {
    width: auto;
    position: static;
    opacity: 1;
    display: none;
    margin-bottom: 64px;
  }
  .services__card.is-active {
    opacity: 1;
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .services__card-container {
    display: none;
  }
}
.services__list {
  list-style: none;
  padding: 0;
  margin: 72px 0 0 0;
}
.services__list li {
  font-weight: 300;
  padding-left: 26px;
  position: relative;
  line-height: 175%;
}
.services__list li:not(:last-child) {
  margin-bottom: 24px;
}
.services__list li::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #1B68FF;
  position: absolute;
  left: 0;
  top: 0.7em;
}
.services__text {
  margin-bottom: 78px;
  font-weight: 300;
  line-height: 175%;
}
/**/
.goal_text {
  margin-bottom: 25px;
}

.services::after {
  content: "";
  background-color: #1B68FF;
  height: 1px;
  display: block;
  width: 806px;
  margin: 120px auto;
}

@media screen and (max-width: 1000px) {
  .services::after {
    width: 100%;
    margin: 60px auto;
  }
}

#margin-top{
  margin-top: 50px;
}
