.highlight {
  background-image: linear-gradient(120deg, rgb(255, 107, 0) 0%, rgb(255, 184, 0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 32%;
  background-position: 0 80%;
}

.introduction {
  background-color: #111;
  padding: 80px 0 120px 0;
}
.introduction .txt .title {
  font-size: 102px;
}
.introduction .txt .description {
  margin-bottom: 48px;
}
.introduction .txt .description p {
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-white);
  font-weight: 400;
}
.introduction .txt .btns button {
  padding: 0 48px;
  line-height: 64px;
  height: 60px;
  font-size: 24px;
}

.about-us {
  padding: 102px 0;
  background-color: #0a0a0a;
}
.about-us .top {
  margin-bottom: 48px;
}
.about-us .all {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 6px;
  grid-column-gap: 6px;
}
.about-us .all .one {
  border-top: solid 4px;
  background-color: #111111;
}
.about-us .all .one .inner {
  height: 240px;
}
.about-us .all .one:nth-child(1) {
  border-color: #ff6b00;
}
.about-us .all .one:nth-child(2) {
  border-color: #ffb800;
}
.about-us .all .one:nth-child(3) {
  border-color: #ff8c42;
}

.our-services {
  background-color: #111111;
  padding: 102px 0;
}
.our-services .top {
  margin-bottom: 48px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 48px;
  grid-column-gap: 48px;
}
.services .one {
  background-color: #1a1a1a;
  position: relative;
  border-radius: 0 0 16px 16px;
  padding: 32px 28px 36px 32px;
}
.services .one:before {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #ff6b00, #ffb800);
}
.services .one .inner {
  height: 100%;
}
.services .one .i {
  height: 60px;
  width: 60px;
  background-color: #2c2c2e;
}
.services .one .i svg {
  height: 24px;
  width: 24px;
  max-width: 24px;
  max-height: 24px;
  display: block;
}
.services .one .i svg path {
  fill: var(--color-primary);
}
.services .one .lm svg {
  transition: all 0.2s;
  height: 10px;
  width: auto;
  display: block;
}
.services .one .lm svg path {
  fill: var(--color-accent);
}
.services .one:hover .lm svg {
  margin-left: 4px;
}

.our-case-studies {
  background-color: #0a0a0a;
  padding: 102px 0;
}
.our-case-studies .top {
  margin-bottom: 60px;
}

.case-studies {
  max-width: 980px;
  margin: 0 auto;
}
.case-studies .one {
  background-color: #1a1a1a;
  margin-bottom: 80px;
}
.case-studies .one:last-child {
  margin-bottom: 0;
}
.case-studies .one .lm svg {
  transition: all 0.2s;
  height: 10px;
  width: auto;
  display: block;
}
.case-studies .one .lm svg path {
  fill: var(--color-accent);
}
.case-studies .one .desc {
  padding: 48px;
}
.case-studies .one:nth-child(2n) .row {
  flex-direction: row-reverse;
}
.case-studies .one:hover .lm svg {
  margin-left: 4px;
}

.case-study-content {
  padding: 102px 0;
  background-color: #0a0a0a;
}
.case-study-content .top {
  margin-bottom: 48px;
}
.case-study-content .left .description p {
  font-size: 24px;
  margin-bottom: 32px;
  color: var(--color-light);
}

.case-study-stats {
  padding: 102px 0;
  background-color: #111111;
}
.case-study-stats .top {
  margin-bottom: 48px;
}
.case-study-stats .all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 12px;
  grid-column-gap: 12px;
}
.case-study-stats .all .one {
  border-top: solid 4px;
  background-color: #1a1a1a;
}
.case-study-stats .all .one .inner {
  height: 232px;
}
.case-study-stats .all .one:nth-child(1), .case-study-stats .all .one:nth-child(4) {
  border-color: #ff6b00;
}
.case-study-stats .all .one:nth-child(2), .case-study-stats .all .one:nth-child(5) {
  border-color: #ffb800;
}
.case-study-stats .all .one:nth-child(3), .case-study-stats .all .one:nth-child(6) {
  border-color: #ff8c42;
}

.case-study-summary {
  background-color: #0a0a0a;
  padding: 120px 0;
}

.case-study-contact {
  padding: 102px 0;
  background-color: #111111;
}
.case-study-contact .left {
  padding-right: 120px;
}
.case-study-contact .left .top {
  margin-bottom: 68px;
}
.case-study-contact .left .icon svg {
  width: 100%;
  height: auto;
  display: block;
}
.case-study-contact .left .icon svg path {
  fill: #1a1a1a;
}

.why-choose-us {
  background-color: #111111;
  padding: 102px 0;
}
.why-choose-us .top {
  margin-bottom: 48px;
}
.why-choose-us .reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 28px;
  grid-column-gap: 28px;
}
.why-choose-us .reasons .one {
  background-color: #1a1a1a;
  border-radius: 0 16px 16px 0;
  padding: 24px 24px 28px 28px;
  position: relative;
}
.why-choose-us .reasons .one:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #ff6b00, #ffb800);
}
.why-choose-us .reasons .one .i {
  height: 60px;
  width: 60px;
  background-color: #2c2c2e;
}
.why-choose-us .reasons .one .i svg {
  height: 24px;
  width: 24px;
  max-width: 24px;
  max-height: 24px;
  display: block;
}
.why-choose-us .reasons .one .i svg path {
  fill: var(--color-primary);
}
.common-landing {
  padding: 180px 0 102px 0;
  background-color: #111111;
}
.common-landing .main-img {
  margin-top: 60px;
}

.our-blogs {
  padding: 80px 0;
  background-color: #f5f5f7;
}
.our-blogs .blogs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 60px;
  grid-column-gap: 48px;
}
.our-blogs .blogs .blog .img {
  border-radius: 12px;
}
.our-blogs .blogs .blog .img img {
  display: none;
}
.our-blogs .blogs .blog .desc .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.our-blogs .blogs .blog .desc .content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.our-blogs .blogs .blog .desc .rm {
  color: #e05500;
}
.our-blogs .blogs .blog .desc .rm svg path {
  fill: #e05500;
}
.our-blogs .blogs .blog:hover .desc .rm {
  color: #ff8c42;
}
.our-blogs .blogs .blog:hover .desc .rm svg path {
  fill: #ff8c42;
}

.pagination {
  gap: 8px;
}
.pagination a,
.pagination span {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #e5e5ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 14px;
}
.pagination .current {
  background-color: #ffb800;
  color: white;
}
.pagination:has(span) {
  padding-top: 60px;
}

.blog-content {
  padding: 80px 0;
  background-color: #f5f5f7;
}
.blog-content .inner {
  max-width: 760px;
}
.blog-content .text-editor-render {
  color: #636366;
}
.blog-content .text-editor-render h1,
.blog-content .text-editor-render h2,
.blog-content .text-editor-render h3,
.blog-content .text-editor-render h4,
.blog-content .text-editor-render h5,
.blog-content .text-editor-render h6 {
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.blog-content .text-editor-render hr {
  border-color: #8e8e93;
}

.recent-posts {
  padding: 80px 0;
}
.recent-posts .all {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 48px;
  grid-column-gap: 48px;
}
.recent-posts .all .desc {
  padding: 20px 20px 28px 24px;
}
.recent-posts .all .desc .i {
  height: 60px;
  width: 60px;
  background-color: #2c2c2e;
}
.recent-posts .all .desc .i svg {
  height: 24px;
  width: 24px;
  max-width: 24px;
  max-height: 24px;
  display: block;
}
.recent-posts .all .desc .i svg path {
  fill: var(--color-primary);
}
.recent-posts .all .desc-case-study {
  padding: 28px;
}

.text-editor-render h1,
.text-editor-render h2 {
  line-height: 1.2;
}
.text-editor-render h3,
.text-editor-render h4 {
  line-height: 1.3;
}
.text-editor-render h5,
.text-editor-render h6 {
  line-height: 1.4;
}
.text-editor-render h1 {
  font-size: 4rem;
  margin: 4rem 0 2rem;
}
.text-editor-render h2 {
  font-size: 2.625rem;
  margin: 2.625rem 0 1.3125rem;
}
.text-editor-render h3 {
  font-size: 1.75rem;
  margin: 1.75rem 0 0.875rem;
}
.text-editor-render h4 {
  font-size: 1.375rem;
  margin: 1.375rem 0 0.6875rem;
}
.text-editor-render h5 {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
}
.text-editor-render h6 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
}
.text-editor-render p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.6rem 0;
}
.text-editor-render a {
  color: #ff6b00;
}
.text-editor-render a:hover {
  text-decoration: underline;
}
.text-editor-render ul,
.text-editor-render ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.text-editor-render li {
  list-style: unset;
  margin: 0.25rem 0;
}
.text-editor-render hr {
  outline: none;
  border: none;
  border-top: 1px dashed;
  margin: 2rem 0;
  border-color: rgba(255, 255, 255, 0.12);
}
.text-editor-render a {
  text-decoration: underline;
}
.text-editor-render a:hover {
  text-decoration: none;
}
.text-editor-render img {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
}

.contact-page {
  padding: 180px 0 120px 0;
  background-color: #111111;
}
.contact-page .left {
  padding-right: 120px;
}
.contact-page .left .top {
  margin-bottom: 68px;
}
.contact-page .left .icon svg {
  width: 100%;
  height: auto;
  display: block;
}
.contact-page .left .icon svg path {
  fill: #1a1a1a;
}

.form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 16px;
  grid-column-gap: 12px;
}
.form form p {
  grid-column: span 2;
  position: relative;
}
.form form p:nth-child(1), .form form p:nth-child(2), .form form p:nth-child(3), .form form p:nth-child(4), .form form p:nth-child(5) {
  grid-column: span 1;
}
.form form .req {
  color: red;
}
.form form .opt {
  color: var(--color-light);
}
.form form .wpcf7-spinner {
  position: absolute;
  bottom: 10px;
  right: 12px;
  margin: 0;
  background-color: var(--color-tertiary);
  color: var(--color-accent);
}
.form label {
  font-size: 11px;
  color: #636366;
  text-transform: uppercase;
}
.form label input,
.form label select,
.form label textarea {
  margin-top: 8px;
}
.form label label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form label label input {
  margin: 0;
}
.form .check-options {
  grid-column: span 2;
  padding-bottom: 12px;
}
.form .check-options label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.form .check-options span.wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}
.form .check-options label {
  gap: 12px;
}
.form .check-options label span {
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: none;
  color: var(--color-light);
}
.form .check-options input {
  margin: 0;
}

.contact-info {
  padding: 102px 0;
  background-color: #0a0a0a;
}
.contact-info .all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-row-gap: 48px;
  grid-column-gap: 48px;
}
.contact-info .all .one .i {
  height: 60px;
  width: 60px;
  background-color: #2c2c2e;
}
.contact-info .all .one .i svg {
  height: 24px;
  width: 24px;
  max-width: 24px;
  max-height: 24px;
  display: block;
}
.contact-info .all .one .i svg path {
  fill: var(--color-primary);
}/*# sourceMappingURL=pages.css.map */