body {
  > main {
    padding-top: 160px;
    padding-bottom: 110px;

    > .operator {
      width: 110px;
      margin-bottom: 30px;
    }

    > .phone-number {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 30px;

      > span {
        direction: ltr;
        letter-spacing: 3px;
        font-size: 76px;
        font-weight: 800;
        color: #353535;
      }

      > .bracket {
        width: 30px;
      }

      > .bracket:nth-child(1) {
        transform: rotate(180deg);
      }
    }

    > .labels {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;

      > .label {
        position: relative;
        padding: 8px 22px;
        background-color: #6a9ac2;
        text-align: center;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        border-radius: 9999px;

        &:hover {
          > .tooltip {
            visibility: visible;
            opacity: 1;
          }
        }

        > .tooltip {
          all: unset;
          position: absolute;
          right: 50%;
          top: 35px;
          z-index: 1;
          transform: translateX(50%);
          width: max-content;
          padding: 5px 12px;
          background-color: #ffffff;
          text-align: center;
          color: #b1b1b1;
          font-size: 13px;
          border-radius: 4px;
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          visibility: hidden;
          opacity: 0;
          transition: 0.4s;

          &::after {
            content: '';
            position: absolute;
            right: 50%;
            top: -8px;
            transform: rotate(45deg) translateX(50%);
            z-index: 2;
            width: 10px;
            height: 10px;
            background-color: #ffffff;
          }
        }
      }
    }

    > .price {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 100px;

      > img {
        width: 40px;
        margin-top: 5px;
      }
      > span {
        font-size: 54px;
        font-weight: 700;
        color: #535353;

        > span {
          font-size: 36px;
        }
      }
    }

    > .number-type {
      margin-bottom: 100px;

      > .title {
        display: block;
        font-size: 32px;
        font-weight: 600;
        color: #535353;
        margin-bottom: 10px;
      }

      > .items {
        > .item {
          > .box {
            display: flex;
            flex-direction: column;
            gap: 20px;
            background-color: #7e94a2;
            padding: 15px;
            border-radius: 10px;

            > .title {
              color: #ffffff;
              font-size: 20px;
              font-weight: 600;
              text-decoration: underline;
              text-underline-offset: 10px;
            }

            > .number {
              direction: ltr;
              width: fit-content;
              padding: 10px 15px;
              margin-right: auto;
              background-color: #ffffff;
              color: #808285;
              font-size: 20px;
              font-weight: 600;
              border-radius: 6px;
            }
          }
        }
      }
    }

    > .expert {
      margin-bottom: 100px;

      > .title {
        display: block;
        font-size: 32px;
        font-weight: 600;
        color: #535353;
        margin-bottom: 30px;
      }

      > .profile {
        > .image {
          > img {
            border: 5px solid #7e94a2;
            border-radius: 9999px;
          }
        }

        > .info {
          > .name {
            color: #434343;
            font-size: 28px;
            font-weight: 600;

            > a {
              margin-right: 5px;
              color: #6a9ac2;
              font-size: 18px;
              text-decoration-line: 20px;
            }
          }

          > .phone-number {
            color: #808285;
            font-size: 20px;
            font-weight: 600;

            > span {
              margin-right: 5px;
              letter-spacing: 1px;
            }
          }
        }
      }
    }

    > .successful-projects {
      > .title {
        display: block;
        font-size: 32px;
        font-weight: 600;
        color: #535353;
        margin-bottom: 24px;
      }

      > .table-responsive {
        overflow-x: auto;

        &::-webkit-scrollbar {
          height: 10px;
        }
        &::-webkit-scrollbar-track {
          background: #d3d3d3;
        }
        &::-webkit-scrollbar-thumb {
          background: #6a9ac2;
        }
        &::-webkit-scrollbar-thumb:hover {
          background: #555;
        }

        > .table {
          display: flex;
          flex-direction: column;
          align-items: center;
          width: 100%;
          min-width: 270px;
          margin-bottom: 10px;

          > .head {
            width: 100%;
            padding: 14px 20px;
            background-color: #6a9ac2;
            border-radius: 8px 8px 0 0;

            > div {
              display: flex;
              align-items: center;
              gap: 10px;

              > * {
                all: unset;
              }
              > img {
                width: 24px;
              }
              > span {
                color: #ffffff;
                font-size: 19px;
                font-weight: 500;
              }
            }
          }

          > .items {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;

            > .item {
              width: 100%;
              background-color: #ffffff;
              padding: 10px 20px;
              text-decoration: none;
              border-right: solid 2px #6a9ac2;
              border-left: solid 2px #6a9ac2;
              border-bottom: solid 2px #6a9ac2;
              transition: 0.3s;

              &:hover {
                background-color: #e3f3ff;
              }

              &:last-of-type {
                border-radius: 0 0 8px 8px;
              }

              > div {
                background-color: transparent;

                > * {
                  all: unset;
                }
                > span {
                  color: #606060;
                  font-size: 19px;
                  font-weight: 600;
                }

                &.price {
                  > span {
                    font-size: 21px;
                    > span {
                      font-size: 17px;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    > main {
      > .operator {
        width: 80px;
        margin-bottom: 30px;
      }

      > .phone-number {
        gap: 10px;
        margin-bottom: 20px;

        > span {
          letter-spacing: 1.5px;
          font-size: 30px;
        }

        > .bracket {
          width: 14px;
        }
      }

      > .labels {
        gap: 8px;

        > .label {
          padding: 7px 14px;
          font-size: 11px;

          > .tooltip {
            font-size: 12px;
          }
        }
      }

      > .price {
        gap: 8px;
        margin-bottom: 70px;


        > img {
          width: 22px;
          margin-top: 3px;
        }
        > span {
          font-size: 24px;

          > span {
            font-size: 18px;
          }
        }
      }

      > .number-type {
        margin-bottom: 70px;

        > .title {
          font-size: 20px;
          margin-bottom: 3px;
        }

        > .items {
          > .item {
            > .box {
              gap: 16px;
              padding: 10px;
              border-radius: 6px;

              > .title {
                font-size: 15px;
                text-underline-offset: 7px;
              }

              > .number {
                padding: 5px 10px;
                font-size: 15px;
                border-radius: 4px;
              }
            }
          }
        }
      }

      > .expert {
        margin-bottom: 70px;

        > .title {
          font-size: 20px;
          margin-bottom: 20px;
        }

        > .profile {
          > .image {
            > img {
              border-width: 3px;
            }
          }
          > .info {
            > .name {
              font-size: 18px;

              >a{
                display: block;
                margin-top: 5px;
                font-size: 13px;
              }
            }

            >.phone-number{
              font-size: 15px;

              >span{
                margin-right: 2px;
                letter-spacing: 0.5px;
              }
            }
          }
        }
      }

      > .successful-projects {
        > .title {
          font-size: 20px;
          margin-bottom: 16px;
        }
        > .table-responsive {
          > .table {
            > .head {
              padding: 10px 5px;

              > div {
                gap: 7px;

                > span {
                  font-size: 15px;
                }
                > img {
                  width: 19px;
                }
              }
            }
            > .items {
              > .item {
                padding: 4px 5px;

                > div {
                  > span {
                    font-size: 15px !important;

                    > span {
                      margin-right: 1px;
                      font-size: 14px !important;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
