/* ===== base ===== */
:root {
  --accent: #ff7900;
  --primary: #1e1e1e;
  --gray: #6f6f6f;
  --desc: #49515b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--primary);
  line-height: 1.4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.hide {
  display: none !important;
}
.container {
  width: min(1280px, 90%);
  margin-inline: auto;
}

.mobile-menu {
  display: none;
}

/* ===== header ===== */
.head {
  background-color: #292828;
  height: 50px;
}
.head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}
.head__icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.head__icon_wrapper:hover {
  background-color: #dbdbdb;
}
.head__left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.head__icon_wrapper > img {
  width: 12px;
}
.head__item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.head__item a {
  color: #fff !important;
  font-weight: 400;
  margin: 0;
}
.head__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.head__right a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}

.header {
  padding: 18px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo__mobile {
  display: none;
}
.burger {
  display: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s;
  font-size: 16px;
  color: #2f2a2a;
}
.nav a:hover {
  border: 2px solid #ff7900;
}
.nav a span {
  margin-left: 8px;
}

/* ===== hero ===== */
.hero {
  background-color: #424040;
  color: #fff;
  line-height: 1;
  height: 745px;
  display: flex;
  align-items: center;
}
.hero__title {
  font-size: 118px;
  font-weight: 700;
  margin: 0;
  line-height: 118px;
}
.hero__subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 30px;
  margin: 0 0 20px;
  font-weight: 600;
}
.hero__desc {
  font-family: "Rubik", sans-serif;
  font-size: 25px;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 32px;
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hero__image {
  width: 383px;
  margin-top: -100px;
}

/* ===== buttons ===== */
.btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  font-size: 25px;
  color: #fff;
}
.btn:hover {
  opacity: 0.9;
}
.btn--primary {
  background: #fff;
  color: var(--primary);
}
.btn--accent {
  background: var(--accent);
  color: #fff !important;
}
.btn__round {
  border-radius: 50px;
}
.btn__hero {
  padding: 22px 96px;
  margin-top: 45px;
}

/* ===== services ===== */
.services {
  height: 1630px;
  background-color: #f1f1f1;
  padding: 120px 0;
  position: relative;
}
.services__container {
  position: relative;
  z-index: 1;
}
.section-title {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  font-weight: 600;
}
.section-title__margin {
  margin-top: 15px;
}
.section-title span {
  color: var(--accent);
}
.section-subtitle {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
  color: #4a4949;
}
.white {
  color: #fff;
}
.black {
  color: #424040;
}
.center {
  text-align: center;
}
.section-title span.white {
  color: #fff;
}
.services__content {
  margin-top: 95px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.services__card {
  width: calc(33% - 15px);
  min-height: 570px;
  background: white;
  padding: 40px 45px 30px 30px;
  box-shadow: 0 4px 20px #f1f1f1;
  clip-path: polygon(0 0, calc(100% - 90px) 0, 100% 90px, 100% 100%, 0% 100%);
  border-radius: 10px;
}
.services__card_header {
  display: flex;
  flex-direction: column;
}
.services__card_header > img {
  height: 56px;
  margin: 0 auto;
}
.services__card_title {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  min-height: 84px;
}
.services__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: linear-gradient(to right, #ffffff, #ffd7b3);
  border-radius: 10px;
}
.services__item > img {
  width: 17px;
}
.services__item > span {
  font-weight: 500;
  font-size: 16px;
  color: var(--desc);
}
.services__desc {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  color: var(--desc);
  line-height: 19px;
}
.services__shape {
  position: absolute;
  z-index: 0;
}
.services__angle {
  top: 0;
  left: 0;
}
.services__angle_down {
  bottom: 0;
  right: 0;
}
.services__shape_left {
  top: 24%;
  left: 0;
}
.services__shape_right {
  top: 36%;
  right: 0;
  height: 225px;
}

/* ===== about ===== */

.about {
  position: relative;
  height: 550px;
  background-color: #444444;
}

.about__bg {
  position: absolute;
  top: -423px;
  right: 0;
  width: 100%;
}
.about__content {
  z-index: 1;
  position: relative;
  padding-top: 25px;
}
.about__content > .about__content_grid {
  position: relative;
  display: grid;
  grid-template-columns: 6fr 6fr;
  /* grid-template-columns: 525px 7fr; */
  gap: 30px;
}
.about .section-subtitle {
  text-align: center;
  margin-bottom: 15px;
}
.about .section-title {
  text-align: center;
}
.about__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.about__btn {
  font-size: 25px;
  padding: 12px 70px;
}
.about__desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}
.about__desc > p {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}

.about__right {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.about__right_content {
  position: relative;
  z-index: 2;
  padding: 20px 30px;
  height: 240px;
  width: 472px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about__right > div {
  position: relative;
}
.about__right_photo {
  height: 274px;
  width: 226px;
  background-color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__right_photo > img {
  width: 185px;
}
.about__stats {
  display: flex;
  padding-left: 76px;
  gap: 30px;
}
.about__stats > div {
  display: flex;
  flex-direction: column;
}
.about__stats span {
  font-size: 16px;
  font-weight: 500;
  color: #5e656e;
  margin-top: -12px;
}
.about__stats span.about__stats_num {
  font-size: 47px;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}
.about__users_wrapper > span {
  font-size: 17px;
  font-weight: 500;
  color: #5e656e;
  margin-top: 20px;
  display: block;
}
.about__users {
  display: flex;
  align-items: center;
}
.about__users > div {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.about__users > img {
  border-radius: 50%;
  margin-left: -10px;
}
.about__users > img:first-of-type {
  margin-left: 0;
}
.btn__about {
  position: absolute;
  right: 0;
  top: 0px;
  border-radius: 10px;
  width: 166px;
  height: 59px;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__shape {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  min-width: 472px;
}
.about__global_icon {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: 16px;
}
.about__line {
  position: absolute;
  z-index: 0;
  bottom: -65px;
  left: 0;
  min-width: 370px;
}

/* ===== why ===== */

.why {
  position: relative;
  padding-bottom: 70px;
  background-color: #f1f1f1;
}

.why__bg {
  position: absolute;
  top: -48px;
  right: 0;
  width: 100%;
}
.why__shape_line {
  position: absolute;
  z-index: 0;
  top: -42px;
  left: 0;
}
.why__shape_lineRight {
  position: absolute;
  top: unset;
  left: unset;
  bottom: 0;
  right: 0;
}

.why__content {
  z-index: 1;
  position: relative;
  padding-top: 90px;
}
.why__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}
.why__card {
  width: calc(33% - 20px);
  min-height: 317px;
  background: white;
  padding: 30px;
  box-shadow: 0 4px 20px #f1f1f1;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.why__card_icon {
  width: 50px;
}

.why__card_iconWrapper {
  width: 76px;
  height: 76px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4f0fe;
  box-shadow: 0 0 21px 0px rgba(57, 105, 159, 0.14);
}
.why__card_title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  margin: 0;
  color: #2e2e2e;
  text-align: center;
}
.why__card_desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  color: var(--desc);
  text-align: center;
}

/* ===== trust ===== */
.trust {
  position: relative;
  padding: 40px 0;
  background-color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust__img {
  width: 210px;
}

/* ===== contact ===== */
.contact {
  position: relative;
  padding: 50px 0;
  background-color: #fff;
}
.section-title__contact {
  margin-top: 25px;
}
.section-title__mobile {
  display: none;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 65px;
}
.contact__form_row {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 20px;
}
.contact__form_inputWrapper {
  position: relative;
  height: 60px;
}
.contact__form_input {
  height: 60px;
  padding: 10px 10px 10px 50px;
  border-radius: 8px;
  border: 2px solid #e3f0ff;
  font-size: 16px;
  width: 100%;
  font-weight: 500;
  color: var(--desc);
  font-family: "Poppins", sans-serif;
}
.contact__form_input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #676767;
}
.t-input-block input::placeholder {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #676767 !important;
}
.contact__form_inputIcon {
  position: absolute;
  left: 20px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn__form {
  margin: 0 auto;
  margin-top: 5px;
  border: none;
  height: 60px;
  width: 310px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ===== footer ===== */
.footer {
  padding: 40px 0;
  background: #3c3c3c;
  height: 130px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__inner span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.footer__inner p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.footer__inner a {
  color: var(--accent) !important;
  text-decoration: underline !important;
}
.t-input-block {
  position: relative;
}
.t-input-block textarea {
  resize: none !important;
}
.t-input-block::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(https://lh3.googleusercontent.com/d/102ZjzSECbXfbsrO6Lc0CEMQY8ISdggZg)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.t-input-group:nth-child(2) > .t-input-block::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(https://lh3.googleusercontent.com/d/1grCTFCMFZIXGoipifgedni9a-rod2L42)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.t-input-group:nth-child(3) > .t-input-block::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(https://lh3.googleusercontent.com/d/1f8Qxw9Y5ByUpLk0UlS0F5kLhc20jB98y)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.t-input-group:nth-child(4) > .t-input-block::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(https://lh3.googleusercontent.com/d/13ydDamqtqw8Ll-vTxhHtad7ul5LKAF-E)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.t-input-group:nth-child(5) > .t-input-block::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 29px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(https://lh3.googleusercontent.com/d/18b9jsC5CIePRIIBpJE0kKN10FSSxBeHm)
    no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.t-input {
  padding-left: 45px !important;
  margin: 0 !important;
}
.t-form__successbox {
  font-weight: 900 !important;
}
@media (max-width: 1950px) {
  .why__bg {
    top: -40px;
  }
}
@media (max-width: 1600px) {
  .why__bg {
    top: -25px;
  }
  .why__shape_line {
    top: -27px;
  }
}
@media (max-width: 1400px) {
  .about__content {
    padding-top: 0;
  }
  .about__content > .about__content_grid {
    grid-template-columns: 12fr;
  }
  .why__bg {
    top: -20px;
  }

  .services {
    height: auto;
    padding: 75px 0;
  }

  .services__card {
    width: calc(50% - 15px);
  }
  .services__shape {
    display: none;
  }
  .why {
    padding: 95px 0;
  }
  .why__bg {
    display: none;
  }
  .why__shape_line {
    display: none;
  }
  .why__content {
    padding: 0;
  }
  .about {
    height: auto;
  }
  .about__bg {
    display: none;
  }
  .about__content {
    padding: 85px 0;
  }
}
@media (max-width: 991px) {
  .header {
    background-color: #424040;
  }
  .nav {
    display: none;
  }
  .logo {
    display: none;
  }
  .logo__mobile {
    display: block;
  }
  .burger {
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ff7900;
    cursor: pointer;
  }
  .burger:hover {
    background-color: #4a4949;
  }
  .burger:active {
    background-color: #4a4949;
  }

  .menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #000;
    z-index: 1000;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: var(--accent);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .menu-header .logo {
    display: block;
    width: 150px;
    margin: -10px 0 0 -20px;
  }

  .close-button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: -90px;
  }

  .menu-nav a {
    color: #fff !important;
    text-decoration: none;
    font-size: 32px;
    padding-left: 0;
  }

  .menu-footer {
    font-size: 12px;
    background-color: #222222;
    margin: 0 -20px -21px -20px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .menu-footer a {
    color: #fff;
    text-decoration: underline;
  }
  .hero {
    height: auto;
    padding: 95px 0;
    margin-top: -1px;
  }
  .hero__title {
    font-size: 100px;
    line-height: 100px;
    text-align: center;
  }
  .hero__subtitle {
    font-size: 30px;
    text-align: center;
    margin-bottom: 80px;
  }
  .hero__desc {
    font-size: 35px;
    line-height: 52px;
    text-align: center;
    margin-top: 60px;
  }
  .hero__desc br {
    display: none;
  }
  .hero__content {
    flex-direction: column;
    align-items: center;
  }
  .hero__content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__image {
    margin: 0;
    margin-top: 50px;
  }
  .btn__hero {
    margin-top: 95px;
  }

  .section-title {
    font-size: 50px;
    line-height: 60px;
  }
  .section-title__margin {
    margin-top: 15px;
  }
  .section-title.gray span {
    color: var(--gray);
  }
  .section-subtitle__margin {
    margin-bottom: 25px;
  }
  .section-subtitle {
    font-size: 30px;
  }
  .about__right {
    display: none;
  }
  .about__content > .about__content_grid {
    /* display: block; */
    gap: 40px;
  }
  .about .section-subtitle {
    text-align: center;
  }
  .about .section-title {
    text-align: center;
  }
  .about__desc > p {
    text-align: center;
    font-size: 17px;
    line-height: 25px;
  }

  .why .section-subtitle {
    text-align: center;
  }
  .why .section-title {
    text-align: center;
  }
  .why__card {
    width: calc(50% - 15px);
  }

  .trust {
    flex-direction: column-reverse;
  }
  .trust img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .services__card {
    width: 100%;
  }
  .why__card {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 150px;
  }
  .burger {
    width: 50px;
    height: 50px;
  }
  .burger > img {
    width: 20px;
  }
  .hero {
    padding: 50px 0;
  }
  .hero__title {
    font-size: 47px;
    line-height: 57px;
  }
  .hero__subtitle {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  .hero__desc {
    font-size: 20px;
    line-height: 28px;
    margin-top: 25px;
  }
  .btn__hero {
    margin-top: 60px;
    padding: 19px 58px;
  }
  .hero__image {
    width: 80%;
    min-width: 290px;
  }
  .section-title {
    font-size: 28px;
    line-height: 36px;
  }
  .section-subtitle {
    font-size: 18px;
    line-height: 27px;
  }
  .section-subtitle__margin {
    margin-bottom: 15px;
  }
  .section-title__mobile {
    display: block;
  }
  .services {
    height: auto;
    padding: 50px 0;
  }
  .services__content {
    margin-top: 50px;
  }
  .about .section-title {
    font-size: 45px;
    line-height: 45px;
    text-transform: uppercase;
  }
  .about .section-subtitle {
    margin-bottom: 15px;
  }
  .about__content {
    padding: 50px 0;
    padding-bottom: 20px;
  }
  .about__btn {
    display: none;
  }
  .why {
    padding: 50px 0;
  }
  .why .section-title {
    font-size: 45px;
    line-height: 45px;
    text-transform: uppercase;
  }
  .why .section-subtitle {
    margin-bottom: 28px;
  }
  .trust .section-title {
    text-align: center;
    font-size: 61px;
    line-height: 61px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .footer {
    background-color: #222222;
  }
  .footer span {
    text-align: center;
  }
  .footer__inner {
    flex-direction: column;
    gap: 10px;
  }
  .uc-contact .t-section__title {
    padding-bottom: 35px !important;
  }
  .uc-contact .t-section__title span:nth-last-of-type(-n + 2) {
    display: none !important;
  }
  .uc-contact .t-section__title span:first-of-type {
    line-height: 50px !important;
  }
  .t-title_xs {
    font-size: 45px !important;
    line-height: 45px !important;
  }
  .t-submit {
    width: 72% !important;
    height: 57px !important;
  }
}
