.text-gray {
  color: #969AB0;
}

.text-dark {
  color: #182030;
}

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;
  font-family: "Figtree";
}

html, body {
  background-color: #F6F7F8;
  color: #182030;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
  display: block;
}

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;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 0 12px;
}

a {
  text-decoration: none;
  color: #182030;
}

img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.smt-banner {
  background-image: url("../img/banner.webp");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: #fff;
}
.smt-banner .content .date {
  margin-bottom: 8px;
}
.smt-banner .content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.smt-banner .content .text {
  line-height: 24px;
  margin-bottom: 40px;
}
.smt-banner .content .message {
  line-height: 24px;
  margin-bottom: 60px;
}
.smt-banner .content .buttons {
  display: flex;
  gap: 24px;
}
@media (max-width: 576px) {
  .smt-banner .content .buttons {
    flex-direction: column;
    gap: 12px;
  }
}
.smt-banner .content .last-date {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 0.24);
  font-size: 14px;
}
.smt-banner .content .last-date span {
  font-size: 16px;
  font-weight: 600;
}

.smt-main {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.smt-card {
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.smt-card .smt-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
}
.smt-card .smt-card-head .smt-card-title {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .smt-card .smt-card-head .smt-card-title {
    font-size: 20px;
  }
}
.smt-card .smt-card-content {
  padding: 0 32px 32px 32px;
}
.smt-card.introduction .smt-card-head {
  cursor: pointer;
}
.smt-card.introduction .smt-card-head .img-chevron {
  transition: 0.3s;
}
.smt-card.introduction .smt-card-head.open .img-chevron {
  transform: rotate(180deg);
}
.smt-card.introduction .smt-card-content img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.smt-card.detail-item .smt-card-head {
  cursor: pointer;
}
@media (max-width: 576px) {
  .smt-card.detail-item .smt-card-head {
    flex-direction: column;
    position: relative;
  }
}
.smt-card.detail-item .smt-card-head .left {
  flex: 1;
}
@media (max-width: 576px) {
  .smt-card.detail-item .smt-card-head .left {
    width: 100%;
  }
}
.smt-card.detail-item .smt-card-head .left .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.smt-card.detail-item .smt-card-head .left .detail {
  font-size: 14px;
}
.smt-card.detail-item .smt-card-head .right {
  text-align: right;
}
@media (max-width: 576px) {
  .smt-card.detail-item .smt-card-head .right {
    width: 100%;
    text-align: left;
  }
}
.smt-card.detail-item .smt-card-head .right .price {
  font-size: 20px;
  font-weight: 600;
  color: #3850FF;
  margin-bottom: 12px;
}
.smt-card.detail-item .smt-card-head .right .cycle {
  text-transform: uppercase;
}
.smt-card.detail-item .smt-card-head .img-chevron {
  transform: rotate(180deg);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .smt-card.detail-item .smt-card-head .img-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}
.smt-card.detail-item .smt-card-head.open .img-chevron {
  transform: translateY(-50%) rotate(360deg);
}
.smt-card.detail-item .smt-card-content-hide {
  display: none;
}
.smt-card.detail-item .smt-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.smt-card.detail-item .smt-card-content .desc {
  font-size: 14px;
  line-height: 24px;
}
.smt-card.detail-item .smt-card-content .field .field-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.smt-card.detail-item .smt-card-content .field .files {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.smt-card.detail-item .smt-card-content .field .files .file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}
.smt-card.detail-item .smt-card-content .field .files .file:hover {
  transform: translateY(-4px);
}
.smt-card.detail-item .smt-card-content .field .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 16px;
}
.smt-card.detail-item .smt-card-content .field .images .img-item {
  width: 100%;
  height: 130px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.2s;
}
.smt-card.detail-item .smt-card-content .field .images .img-item:hover {
  transform: scale(1.03);
}
.smt-card.summary {
  padding: 32px;
}
.smt-card.summary .head {
  margin-bottom: 32px;
}
.smt-card.summary .head .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.smt-card.summary .table-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.smt-card.summary .table-pricing .item-tg {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.smt-card.summary .table-pricing .item-tg .left {
  font-size: 14px;
}
.smt-card.summary .table-pricing .item-tg .right {
  text-align: right;
}
.smt-card.summary .table-pricing .item-tg.total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid #F6F7F8;
}
.smt-card.summary .table-pricing .item-tg.total .left {
  font-size: 16px;
  font-weight: 500;
}
.smt-card.summary .table-pricing .item-tg.total .right .price-total {
  font-size: 24px;
  color: #3850FF;
  font-weight: 600;
  margin-bottom: 8px;
}
.smt-card.summary .table-pricing .item-tg.total .right .alt {
  font-size: 13px;
}
.smt-card.summary .button-area {
  text-align: right;
  margin-top: 48px;
}
.smt-card.contact {
  padding: 32px;
}
.smt-card.contact .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 24px;
}
@media (max-width: 786px) {
  .smt-card.contact .grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.smt-card.contact .grid .title {
  font-size: 13px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  margin-bottom: 12px;
}
.smt-card.contact .grid p, .smt-card.contact .grid a {
  font-size: 14px;
  line-height: 24px;
}
.smt-card.contact .grid a {
  transition: 0.3s;
}
.smt-card.contact .grid a:hover {
  color: #3850FF;
}

.smt-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.smt-details .smt-details-head .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.smt-details .smt-details-head p {
  line-height: 24px;
}

.btn {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn.btn-blue {
  background-color: #3850FF;
  color: #fff;
}
.btn.btn-blue:hover {
  background-color: #2d3edb;
  box-shadow: 0 8px 20px rgba(56, 80, 255, 0.3);
}

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