header {
  width: 100%;
  height: 83.34px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  transition: 0.4s;
  background-color: #fff;
  z-index: 10;
}
header .site__logo {
  cursor: pointer;
  width: 338px;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 24px;
}
header .site__logo p {
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
  color: #0499e2;
}
header .site__logo p span {
  color: #121212;
}
header nav {
  width: 572px;
  height: fit-content;
  display: flex;
  gap: 32px;
}
header nav a {
  text-decoration: none;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.4s;
}
header nav a img {
  transition: 0.4s;
}
header nav a:hover {
  color: #0499e2;
}
header nav a:hover img {
  transform: translate(-10px);
}
header .contact {
  width: 338px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  text-decoration: none;
}
header .contact p {
  color: #121212;
  font-size: 20px;
  line-height: 48px;
  font-weight: 700;
  transition: 0.4s;
}
header .contact:hover p {
  color: #0499e2;
}
header .burger__menu {
  display: none;
}

.shadow__header {
  box-shadow: 0 1px 16px hsla(0, 0%, 0%, 0.1);
}

@media screen and (max-width: 1024px) {
  header {
    width: 100%;
    height: 75.34px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
  }
  header .site__logo {
    z-index: 11;
    cursor: pointer;
    width: 294px;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  header .site__logo p {
    font-size: 28px;
    line-height: 48px;
    font-weight: 700;
    color: #0499e2;
  }
  header .site__logo p span {
    color: #121212;
  }
  header .overlay {
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  header nav {
    position: absolute;
    z-index: 9;
    background-color: #fff;
    transition: 0.4s;
    left: 0;
    right: 0;
    top: -100px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  header nav a {
    position: relative;
    padding: 24px 0;
    width: 75%;
    text-decoration: none;
    color: #121212;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 16px;
    transition: 0.4s;
  }
  header nav a img {
    transition: 0.4s;
  }
  header nav a a {
    width: fit-content;
  }
  header nav a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    height: 100%;
    border-bottom: 1px solid #e8e8e8;
  }
  header nav a:nth-child(2):after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    height: 100%;
    border-bottom: 0px solid transparent;
  }
  header nav a:hover {
    color: #0499e2;
  }
  header nav a:hover img {
    transform: translate(-10px);
  }
  header nav .nav__overlay {
    transition: 0.4s;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
  }
  header .show {
    top: 75.34px;
    background-color: #fff;
    z-index: 1;
  }
  header .show::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background-color: hsla(0, 0%, 0%, 0.3);
  }
  header .contact {
    position: absolute;
    top: 75.34px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #f3f3f3;
    text-decoration: none;
  }
  header .contact p {
    color: #121212;
    font-size: 20px;
    line-height: 48px;
    font-weight: 700;
    transition: 0.4s;
  }
  header .contact:hover p {
    color: #0499e2;
  }
  header .burger__menu {
    z-index: 11;
    display: flex;
    padding: 8px;
  }
}
main {
  padding: 83.34px 0 0;
}
main .hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
main .hero .hero__container {
  width: 85%;
  display: flex;
  gap: 48px;
}
main .hero .hero__container .hero__container-left {
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .hero .hero__container .hero__container-left div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .hero .hero__container .hero__container-left div h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}
main .hero .hero__container .hero__container-left div p {
  font-weight: 300;
}
main .hero .hero__container .hero__container-left div a {
  background-color: #ccebff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
main .hero .hero__container .hero__container-left div a p {
  color: #121212;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
main .hero .hero__container .hero__container-left div a img {
  transition: 0.4s;
}
main .hero .hero__container .hero__container-left div a:hover img {
  transform: translateX(-10px);
}
main .hero .hero__container .hero__container-left > a {
  background-color: #0099ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-decoration: none;
  gap: 24px;
}
main .hero .hero__container .hero__container-left > a p {
  transition: 0.4s;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}
main .hero .hero__container .hero__container-left > a img {
  transition: 0.8s;
}
main .hero .hero__container .hero__container-left > a:hover p {
  transform: scale(1.05);
}
main .hero .hero__container .hero__container-left > a:hover img {
  transform: rotate(360deg);
}
main .hero .hero__container .hero__container-right {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 276px;
}
main .hero .hero__container .hero__container-right > img {
  height: 228px;
}
main .hero .hero__container .hero__container-right .hero__socials {
  position: relative;
  display: flex;
  justify-content: space-around;
  height: 48px;
}
main .hero .hero__container .hero__container-right .hero__socials a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
main .hero .hero__container .hero__container-right .hero__socials a p {
  color: #0099ff;
}
main .hero .hero__container .hero__container-right .hero__socials::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 70%;
  background-color: #e8e8e8;
}
main .image__border img {
  object-fit: cover;
  width: 100%;
}
main .services {
  padding: 96px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .services .services__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
main .services .services__container .services__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .services .services__container .services__title h2 {
  font-weight: 600;
  font-size: 24px;
}
main .services .services__container .services__cards {
  max-width: 85%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
main .services .services__container .services__cards .services__card {
  border: 4px solid rgba(0, 153, 255, 0.2);
  border-radius: 20px;
  width: 300px;
  min-height: 376px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-top {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-top
  .services__card-price {
  margin-top: 8px;
  font-weight: 500;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-top
  .services__card-price
  span:first-child {
  text-decoration: line-through;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-top
  .services__card-price
  span:last-child {
  color: red;
  font-weight: 700;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-top
  > span {
  height: 20px;
  color: #0099ff;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-top
  .promo {
  height: 28px;
  width: 100%;
  font-weight: 600;
  line-height: 24px;
  background-color: #0099ff;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-bottom {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 0;
  justify-content: space-between;
  height: 100%;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-bottom
  .services__card-content {
  padding: 16px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-bottom
  .services__card-content
  h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-bottom
  .services__card-content
  p {
  font-weight: 400;
  text-align: justify;
  line-height: 24px;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-bottom
  .services__card-contact {
  transition: 0.4s;
  font-weight: 700;
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
  gap: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  text-decoration: none;
  color: white;
}
main
  .services
  .services__container
  .services__cards
  .services__card
  .services__card-bottom
  .services__card-contact:hover {
  transform: scale(0.95);
}
main .support {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
  padding: 48px 0;
}
main .support .support__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .support .support__container .support__dropdowns {
  width: 900px;
}
main .support .support__container .support__dropdowns .supporter {
  display: flex;
  flex-direction: column;
  position: relative;
}
main
  .support
  .support__container
  .support__dropdowns
  .supporter
  .supporter__header {
  border-bottom: 1px solid #e8e8e8;
  transition: 0.4s;
  cursor: pointer;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main
  .support
  .support__container
  .support__dropdowns
  .supporter
  .supporter__header
  p {
  font-weight: 700;
}
main
  .support
  .support__container
  .support__dropdowns
  .supporter
  .supporter__header
  img {
  transition: 0.4s;
}
main
  .support
  .support__container
  .support__dropdowns
  .supporter
  .supporter__header:hover {
  background-color: #e8e8e8;
}
main
  .support
  .support__container
  .support__dropdowns
  .supporter
  .supporter__dropdown {
  transition: 0.4s;
  height: 0;
  padding: 0;
}
main
  .support
  .support__container
  .support__dropdowns
  .supporter
  .supporter__dropdown
  p {
  display: none;
}
main .support .support__container .support__dropdowns .supporter .active {
  transition: 0.4s;
  padding: 16px 24px;
  height: fit-content;
  border-bottom: 1px solid #e8e8e8;
}
main .support .support__container .support__dropdowns .supporter .active p {
  display: flex;
}
main .support .support__container .support__dropdowns .supporter .close {
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  main .hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }
  main .hero .hero__container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 48px;
  }
  main .hero .hero__container .hero__container-left {
    width: 90%;
    height: 272px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main .hero .hero__container .hero__container-left div {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  main .hero .hero__container .hero__container-left div h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
  }
  main .hero .hero__container .hero__container-left div p {
    font-weight: 300;
  }
  main .hero .hero__container .hero__container-left div a {
    background-color: #ccebff;
    text-decoration: none;
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  main .hero .hero__container .hero__container-left div a p {
    color: #121212;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
  }
  main .hero .hero__container .hero__container-left div a img {
    transition: 0.4s;
  }
  main .hero .hero__container .hero__container-left div a:hover img {
    transform: translateX(-10px);
  }
  main .hero .hero__container .hero__container-left > a {
    background-color: #0099ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-decoration: none;
    gap: 24px;
  }
  main .hero .hero__container .hero__container-left > a p {
    transition: 0.4s;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
  }
  main .hero .hero__container .hero__container-left > a img {
    transition: 0.8s;
  }
  main .hero .hero__container .hero__container-left > a:hover p {
    transform: scale(1.05);
  }
  main .hero .hero__container .hero__container-left > a:hover img {
    transform: rotate(360deg);
  }
  main .hero .hero__container .hero__container-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 282px;
  }
  main .hero .hero__container .hero__container-right > img {
    width: 100%;
    height: 179px;
  }
  main .hero .hero__container .hero__container-right .hero__socials {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 90%;
    height: 103px;
  }
  main .hero .hero__container .hero__container-right .hero__socials a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  main .hero .hero__container .hero__container-right .hero__socials a p {
    color: #0099ff;
  }
  main .hero .hero__container .hero__container-right .hero__socials::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 1px;
    background-color: #e8e8e8;
  }
  main .services {
    padding: 96px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main .services .services__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  main .services .services__container .services__title {
    width: 85%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  main .services .services__container .services__title h2 {
    font-weight: 600;
    font-size: 24px;
  }
  main .services .services__container .services__cards {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  main .services .services__container .services__cards .services__card {
    border: 4px solid rgba(0, 153, 255, 0.2);
    border-radius: 20px;
    width: 300px;
    min-height: 376px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-top {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-top
    .services__card-price {
    margin-top: 8px;
    font-weight: 500;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-top
    .services__card-price
    span:first-child {
    text-decoration: line-through;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-top
    .services__card-price
    span:last-child {
    color: red;
    font-weight: 700;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-top
    > span {
    height: 20px;
    color: #0099ff;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-top
    .promo {
    height: 28px;
    width: 100%;
    font-weight: 600;
    line-height: 24px;
    background-color: #0099ff;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-bottom {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 0;
    justify-content: space-between;
    height: 100%;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-bottom
    .services__card-content {
    padding: 16px 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-bottom
    .services__card-content
    h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-bottom
    .services__card-content
    p {
    height: 164px;
    font-weight: 400;
    text-align: justify;
    line-height: 24px;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-bottom
    .services__card-contact {
    transition: 0.4s;
    padding: 8px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 8px;
    gap: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    text-decoration: none;
    color: white;
  }
  main
    .services
    .services__container
    .services__cards
    .services__card
    .services__card-bottom
    .services__card-contact:hover {
    transform: scale(0.95);
  }
  main .support {
    width: 100%;
    padding: 48px 0;
  }
  main .support .support__container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main .support .support__container .support__dropdowns {
    width: 90%;
  }
  main .support .support__container .support__dropdowns .supporter {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  main
    .support
    .support__container
    .support__dropdowns
    .supporter
    .supporter__header {
    border-bottom: 1px solid #e8e8e8;
    transition: 0.4s;
    cursor: pointer;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  main
    .support
    .support__container
    .support__dropdowns
    .supporter
    .supporter__header
    p {
    font-weight: 700;
  }
  main
    .support
    .support__container
    .support__dropdowns
    .supporter
    .supporter__header
    img {
    transition: 0.4s;
  }
  main
    .support
    .support__container
    .support__dropdowns
    .supporter
    .supporter__header:hover {
    background-color: #e8e8e8;
  }
  main
    .support
    .support__container
    .support__dropdowns
    .supporter
    .supporter__dropdown {
    transition: 0.4s;
    height: 0;
    padding: 0;
  }
  main
    .support
    .support__container
    .support__dropdowns
    .supporter
    .supporter__dropdown
    p {
    display: none;
  }
  main .support .support__container .support__dropdowns .supporter .active {
    transition: 0.4s;
    padding: 16px 24px;
    height: fit-content;
    border-bottom: 1px solid #e8e8e8;
  }
  main .support .support__container .support__dropdowns .supporter .active p {
    display: flex;
  }
  main .support .support__container .support__dropdowns .supporter .close {
    transform: rotate(45deg);
  }
}
footer {
  width: 100%;
}
footer .footer__top {
  padding: 66px 96px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
footer .footer__top .site__logo {
  position: relative;
  cursor: pointer;
  width: 338px;
  height: 224px;
  display: flex;
  align-items: center;
  gap: 24px;
}
footer .footer__top .site__logo p {
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
  color: #0499e2;
}
footer .footer__top .site__logo p span {
  color: #121212;
}
footer .footer__top .footer__services::before {
  content: "";
  position: absolute;
  background-color: #e8e8e8;
  top: 0;
  left: -130%;
  width: 1px;
  height: 100%;
}
footer .footer__top .footer__services::after {
  content: "";
  position: absolute;
  background-color: #e8e8e8;
  top: 0;
  right: -100%;
  width: 1px;
  height: 100%;
}
footer .footer__top .footer__services {
  position: relative;
  width: 116px;
  height: 218px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer__top .footer__services p {
  color: rgba(18, 18, 18, 0.5019607843);
}
footer .footer__top .footer__services a {
  transition: 0.4s;
  text-decoration: none;
  color: #121212;
}
footer .footer__top .footer__services a:hover {
  color: #0099ff;
}
footer .footer__top .footer__socials {
  position: relative;
  width: 231px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer__top .footer__socials > p {
  color: rgba(18, 18, 18, 0.5019607843);
}
footer .footer__top .footer__socials a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .footer__top .footer__socials a p {
  transition: 0.4s;
  color: #121212;
}
footer .footer__top .footer__socials a img {
  transition: 0.8s;
}
footer .footer__top .footer__socials a:hover p {
  color: #0099ff;
}
footer .footer__top .footer__socials a:hover img {
  transform: rotate(360deg);
}
footer .footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  gap: 24px;
  background-color: #e9f4ff;
}
footer .footer__bottom p {
  color: rgba(18, 18, 18, 0.5019607843);
}
footer .footer__bottom p:last-child {
  color: #121212;
}

@media screen and (max-width: 1024px) {
  footer {
    width: 100%;
    padding: 16px 0 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footer__top {
    padding: 24px 0;
    width: 90%;
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
  }
  footer .footer__top .site__logo {
    position: relative;
    cursor: pointer;
    width: 338px;
    height: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  footer .footer__top .site__logo p {
    font-size: 28px;
    line-height: 48px;
    font-weight: 700;
    color: #0499e2;
  }
  footer .footer__top .site__logo p span {
    color: #121212;
  }
  footer .footer__top .site__logo::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    right: -30%;
    width: 0px;
    height: 0;
  }
  footer .footer__top .footer__services::after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    right: -100%;
    width: 1px;
    height: 100%;
  }
  footer .footer__top .footer__services {
    width: 116px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  footer .footer__top .footer__services p {
    color: rgba(18, 18, 18, 0.5019607843);
  }
  footer .footer__top .footer__services a {
    transition: 0.4s;
    text-decoration: none;
    color: #121212;
  }
  footer .footer__top .footer__services a:hover {
    color: #0099ff;
  }
  footer .footer__top .footer__socials {
    position: relative;
    width: 231px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  footer .footer__top .footer__socials > p {
    color: rgba(18, 18, 18, 0.5019607843);
  }
  footer .footer__top .footer__socials a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  footer .footer__top .footer__socials a p {
    transition: 0.4s;
    color: #121212;
  }
  footer .footer__top .footer__socials a img {
    transition: 0.8s;
  }
  footer .footer__top .footer__socials a:hover p {
    color: #0099ff;
  }
  footer .footer__top .footer__socials a:hover img {
    transform: rotate(360deg);
  }
  footer .footer__top .footer__socials::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    left: -60%;
    width: 0px;
    height: 0;
  }
  footer .footer__bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    gap: 24px;
    background-color: #e9f4ff;
  }
  footer .footer__bottom p {
    color: rgba(18, 18, 18, 0.5019607843);
  }
  footer .footer__bottom p:last-child {
    color: #121212;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

main .works {
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .works .works__container {
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px 0;
}
main .works .works__container > h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
}
main .works .works__container .works__cards {
  display: flex;
  gap: 24px;
}
main .works .works__container .works__cards .works__card {
  width: 400px;
  height: 572px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
main .works .works__container .works__cards .works__card img {
  width: 100%;
}
main .works .works__container .works__cards .works__card .works__card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main
  .works
  .works__container
  .works__cards
  .works__card
  .works__card-content
  h1 {
  font-weight: 500;
}
main .works__services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .works__services .works__services-container {
  padding: 24px 0;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
main .works__services .works__services-container .works__services-top {
  padding: 0 0 24px;
  width: 342px;
  height: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e8e8e8;
}
main .works__services .works__services-container .works__services-top h1 {
  font-size: 38px;
  font-weight: 700;
  height: 48px;
}
main
  .works__services
  .works__services-container
  .works__services-top
  .works__services-content {
  height: 51px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
main
  .works__services
  .works__services-container
  .works__services-top
  .works__services-content
  h2 {
  font-weight: 500;
}
main .works__services .works__services-container .works__services-bottom {
  display: flex;
  gap: 48px;
}
main .works__services .works__services-container .works__services-bottom a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #0099ff;
  transition: 0.4s;
}
main .works__services .works__services-container .works__services-bottom a img {
  transition: 0.4s;
}
main
  .works__services
  .works__services-container
  .works__services-bottom
  a:hover {
  text-decoration: none;
  color: #121212;
}
main
  .works__services
  .works__services-container
  .works__services-bottom
  a:hover
  img {
  transform: translate(-2px);
}

@media screen and (max-width: 1024px) {
  main .works {
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main .works .works__container {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px 0;
  }
  main .works .works__container > h1 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
  }
  main .works .works__container .works__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  main .works .works__container .works__cards .works__card {
    width: 100%;
    height: max-content;
    gap: 12px;
    display: flex;
    flex-direction: column;
  }
  main .works .works__container .works__cards .works__card img {
    width: 100%;
    object-fit: cover;
  }
  main
    .works
    .works__container
    .works__cards
    .works__card
    .works__card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  main
    .works
    .works__container
    .works__cards
    .works__card
    .works__card-content
    h1 {
    font-weight: 500;
  }
  main .works__services {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main .works__services .works__services-container {
    padding: 24px 0;
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  main .works__services .works__services-container .works__services-top {
    padding: 0 0 24px;
    width: 342px;
    height: 107px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e8e8e8;
  }
  main .works__services .works__services-container .works__services-top h1 {
    font-size: 38px;
    font-weight: 700;
    height: 48px;
  }
  main
    .works__services
    .works__services-container
    .works__services-top
    .works__services-content {
    height: 51px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  main
    .works__services
    .works__services-container
    .works__services-top
    .works__services-content
    h2 {
    font-weight: 500;
  }
  main .works__services .works__services-container .works__services-bottom {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  main .works__services .works__services-container .works__services-bottom a {
    height: 60px;
    display: flex;
    justify-content: space-between;
    gap: 0px;
    align-items: center;
    color: #0099ff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s;
    border-bottom: 1px solid #e8e8e8;
  }
  main
    .works__services
    .works__services-container
    .works__services-bottom
    a
    img {
    transition: 0.4s;
  }
  main
    .works__services
    .works__services-container
    .works__services-bottom
    a:last-child {
    border-color: transparent;
  }
  main
    .works__services
    .works__services-container
    .works__services-bottom
    a:hover {
    text-decoration: none;
    color: #121212;
  }
  main
    .works__services
    .works__services-container
    .works__services-bottom
    a:hover
    img {
    transform: translate(-2px);
  }
}
main .survey-container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding: 48px 0;
  justify-content: center;
}
main .survey-container .survey__card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #e8eaed;
  background: #fff;
}
main .survey-container .survey__card .survey-indicator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
main .survey-container .survey__card .survey-indicator span {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
main .survey-container .survey__card .survey-indicator .survey__lines {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: space-between;
  width: 100%;
}
main
  .survey-container
  .survey__card
  .survey-indicator
  .survey__lines
  .survey__line {
  height: 10px;
  border-radius: 8px;
  background-color: #e5f2ff;
  width: 100%;
}
main .survey-container .survey__card .survey-indicator .survey__lines .active {
  background-color: #0171f8;
}
main .survey-container .survey__card .border {
  height: 1px;
  width: 100%;
  background: #e8e8e8;
}
main .survey-container .survey__card select {
  width: 100%;
  padding: 16px;
  border: 1px solid #d8dadf;
  border-radius: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
main .survey-container .survey__card button {
  border-radius: 10px;
  background: #0171f8;
  display: flex;
  padding: 8px 36px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}

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