@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Epilogue:regular,500,600,700,800,900&display=swap");
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: none;
  -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;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  width: 100%;
}

button,
select,
option {
  cursor: pointer;
}

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

/* Variables */
/* background-color: #28293E; */
/* Percent */
/* REM */
/* EM */
/* Adaptive Value */
/* Icon styles */
/* Styles for image (contain) */
/* Styles for image (cover) */
/* Styles for card */
/* тут загальні компоненти, бем блоки, заголовки, кнопки */
/*=============*/
/* верхня частина секції з заголовком */
.section-heading__label {
  color: #ef6d58;
  line-height: 2;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-heading__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1px;
}

.section-heading__title:not(:last-child) {
  margin-bottom: 36px;
}

/*=============*/
/* кнопка */
.main-button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 18px 30px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
}

.main-button--header {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}

.main-button--secondary {
  background-color: #ef6d58;
}

.main-button span {
  position: relative;
  z-index: 2;
}

.main-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 30%;
  height: 200%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.6));
  -webkit-transform: skew(-30deg) translate(-100%, -25%);
      -ms-transform: skew(-30deg) translate(-100%, -25%);
          transform: skew(-30deg) translate(-100%, -25%);
  will-change: left;
}

.main-button:hover::before {
  left: 150%;
  -webkit-transition: left 1s;
  transition: left 1s;
}

.main-button--center {
  margin: 0 auto;
}

/*============*/
.btn {
  /* text-align: center; */
}

.btn__link {
  text-align: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  color: #ef6d58;
}

/*============*/
.block-content {
  position: relative;
}

.block-content__icon {
  width: 148px;
  height: 148px;
  position: absolute;
  top: 22px;
  left: 278px;
  z-index: -1;
}

.block-content__icon--rotate {
  -webkit-animation: rotate-element 30s linear infinite;
          animation: rotate-element 30s linear infinite;
}

@-webkit-keyframes rotate-element {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-element {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes color-element {
  0% {
    color: #ef6d58;
  }
  50% {
    color: #c17b74;
  }
  100% {
    color: #6a6c8e;
  }
}
@keyframes color-element {
  0% {
    color: #ef6d58;
  }
  50% {
    color: #c17b74;
  }
  100% {
    color: #6a6c8e;
  }
}
.block-content__label {
  color: #ef6d58;
  font-size: 16px;
  position: relative;
  line-height: 2; /* 200% */
  letter-spacing: 3px;
  text-transform: uppercase;
}

.block-content__title {
  color: #ffffff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.11111;
  letter-spacing: -2px;
}

.block-content__label--center,
.block-content__title--center {
  /* justify-content: center; */
}

.block-content__name {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.block-content__text {
  max-width: 470px;
  height: 66px;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.64);
}

.block-content__button {
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.block-content__button--secondary {
  background-color: #ef6d58;
}

.block-content__link {
  line-height: 2;
  position: relative;
  color: #ffffff;
  line-height: 2;
  padding: 0 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.block-content__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #ef6d58;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media (any-hover: hover) {
  .block-content__button:hover {
    color: #ef6d58;
    background: #ffffff;
    border: 0.2px solid #ef6d58;
    -webkit-box-shadow: 1px 2px 5px #a01e38;
            box-shadow: 1px 2px 5px #a01e38;
  }
  .block-content__link:hover {
    color: #ef6d58;
    -webkit-transition: font-weight 0.3s;
    transition: font-weight 0.3s;
  }
  .block-content__link:hover::after {
    width: 100%;
  }
}
.block-content__actions {
  -webkit-margin-after: 108px;
          margin-block-end: 108px;
}

.block-content__actions--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 46px;
     -moz-column-gap: 46px;
          column-gap: 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-content__more--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.more-block {
  position: relative;
}

.more-block__picture {
  max-width: 48px;
  max-height: 48px;
}

.more-block__img {
  width: 100%;
  height: 100%;
}

.more-block__content {
  position: relative;
}

.more-block__text {
  color: rgba(255, 255, 255, 0.64);
  line-height: 2;
}

.more-block__info {
  position: relative;
  line-height: 2;
  top: -4px;
  left: 6px;
  color: #ffffff;
}

/* ---------------- */
/* block */
/* ---- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 240, 240, 0.7)), to(rgba(240, 240, 240, 0.7))), url("../img/concrete-1646788_1920.jpg") 0 0/cover no-repeat;
  background: linear-gradient(rgba(240, 240, 240, 0.7), rgba(240, 240, 240, 0.7)), url("../img/concrete-1646788_1920.jpg") 0 0/cover no-repeat;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3.75rem;
  padding-block: 0.25rem;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0.9;
}

.header__logo {
  max-width: 100%;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-header {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  border-color: transparent;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1.33333;
}

.logo-header__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.logo-header__img {
  width: 3rem;
  height: 3rem;
}

.logo-header__name {
  font-size: 16px;
  max-width: 120px;
  font-weight: 600;
  padding-inline: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.logo-header__name--main {
  -webkit-padding-start: 32px;
          padding-inline-start: 32px;
  font-weight: 800;
  font-size: 32px;
  max-width: none;
}

.logo-header__link:hover {
  color: rgb(100, 48, 163);
  border-color: initial;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.logo-header__link--exersice {
  color: rgba(42, 50, 197, 0.5843137255);
  text-decoration: underline;
}

.logo-header__number {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.11111;
  letter-spacing: -0.125rem;
  -webkit-padding-start: 24px;
          padding-inline-start: 24px;
}

/* --- main ---- */
.main {
  padding-inline: 0.9375rem;
}

.main__container {
  /* width: 108.75rem; */
  padding: 4.375rem 1.25rem 3.125rem 1.25rem;
}

.main-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.main-list__item {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  border: 0.0625rem solid rgba(156, 88, 239, 0.4);
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
  background-color: rgb(225, 225, 225);
  border-radius: 0.5rem;
}

li > img {
  width: 8rem;
  height: 4rem;
}

.main-list__link {
  position: relative;
  color: rgb(156, 88, 239);
  line-height: 1.5;
  padding: 0 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.main-list__link span {
  color: #000000;
}

.main__title {
  position: relative;
  color: #ef6d58;
  line-height: 1.5;
  padding: 0 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.main-list__item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 bottom;
     object-position: 0 bottom;
  width: 10rem;
  height: 5rem;
  aspect-ratio: 128/64;
  overflow: hidden;
  border-radius: 0.5rem;
  /* align-items: end; */
}

.main-list__link:hover {
  color: rgb(100, 48, 163);
  font-weight: 700;
  -webkit-transition: font-weight 0.3s;
  transition: font-weight 0.3s;
}

.main-list__item:hover {
  -webkit-box-shadow: 0.5rem 0.25rem 0.25rem rgb(40, 41, 62);
          box-shadow: 0.5rem 0.25rem 0.25rem rgb(40, 41, 62);
  border-radius: 0.5rem;
  /* transform: rotateY(180deg); */
  -webkit-transform: translateY(-0.0625rem);
      -ms-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main__script {
  padding-inline: 2rem;
}

/* --- main ---- */
.main {
  padding-inline: 0.9375rem;
}

.main__container {
  /* width: 108.75rem; */
  padding: 4.375rem 1.25rem 3.125rem 1.25rem;
}

.grid__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(17.5rem, 1fr));
  gap: 0.5rem;
}
.grid__items--3 {
  grid-template-columns: repeat(3, 1fr);
  font-size: 12px;
}
.grid__items--4 {
  grid-template-columns: repeat(4, 1fr);
  font-size: 12px;
}

.grid__item {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  border: 0.0625rem solid rgba(156, 88, 239, 0.4);
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
  background-color: rgb(225, 225, 225);
  border-radius: 0.5rem;
}

li > img {
  width: 8rem;
  height: 4rem;
}

.grid__link {
  position: relative;
  color: rgb(156, 88, 239);
  line-height: 1.5;
  padding: 0 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.main__title {
  position: relative;
  color: #ef6d58;
  line-height: 1.5;
  padding: 0 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.grid__item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 bottom;
     object-position: 0 bottom;
  width: 10rem;
  height: 5rem;
  aspect-ratio: 128/64;
  overflow: hidden;
  border-radius: 0.5rem;
  /* align-items: end; */
}

.grid__link:hover {
  color: rgb(100, 48, 163);
  font-weight: 500;
  -webkit-transition: font-weight 0.3s;
  transition: font-weight 0.3s;
}

.grid__item:hover {
  -webkit-box-shadow: 0.5rem 0.25rem 0.25rem rgb(40, 41, 62);
          box-shadow: 0.5rem 0.25rem 0.25rem rgb(40, 41, 62);
  border-radius: 0.5rem;
  /* transform: rotateY(180deg); */
  -webkit-transform: translateY(-0.0625rem);
      -ms-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main__script {
  padding-inline: 2rem;
}

.grid__link--activ {
  color: #ef6d58;
}

.grid__link--activ:hover {
  color: #ef6d58;
}

.grid__link--activ::after {
  content: " - НА ПЕРЕВІРКУ";
  color: #ef6d58;
}

/* --- main ---- */
.tab-55 {
  max-width: 500px;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.tab-55:not(:last-child) {
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
}

.tab-56 {
  border: 1px solid #610707;
  border-collapse: collapse;
  text-align: center;
  font-size: 20px;
}

.td-56 {
  border: 1px solid #e95b5b;
  padding: 15px;
}

.tab-59 {
  display: inline-block;
  margin-inline: 10px;
}

.tab-507 {
  font-size: 20px;
  font-weight: 700;
}

hr {
  width: 200px;
  border-bottom: 1px solid #e95b5b;
}

.img-512-0 {
  border-radius: 6px;
  inline-size: 75px;
  block-size: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #ffffff;
}

.img-512 {
  border-radius: 12px;
  inline-size: 200px;
  block-size: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #ffffff;
}

[class*=ex-] {
  inline-size: 100px;
  font-size: 8px;
  font-weight: 600;
}

.ex-602 {
  text-align: center;
}

.span-color {
  color: #ef6d58;
  font-weight: 800;
  font-size: 20px;
}

/* Основні стилі */
body {
  font-family: "Gilroy", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  background: url("../img/concrete-1646788_1920.jpg") 0 0/cover no-repeat;
}

.wrapper {
  min-height: 100%;
  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;
  background: rgba(240, 240, 240, 0.7);
}

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

/* --------------------- */
[class*=__container] {
  max-width: 75rem;
  padding-inline: 0.9375rem;
  margin: 0 auto;
}

.wrapper__title {
  font-size: 1.25rem;
  border-bottom: 0.0625rem solid black;
  padding-block: 0.625rem;
}

label {
  font-size: 16px;
}

input {
  border: 1px solid #000000;
  width: 100%;
  padding: 5px;
}