@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --ltn__body-font: "Inter", sans-serif;
  --font-kanit:"Kanit", sans-serif;
  --black: #000000;
  --white:#fff;
  --color-1:#999999;
  --color-2:#868892;
  --color-3:#00dbd9;
  --border-1:#121212;
  --border-2:#2c2c2c;
  --border-3:#126bfb;
  --border-4:#373f4b;
  --border-5:#5f5f6a;
  --background-1:#126bfb;
  --background-2:#121212;
  --background-3:#514f57;
  --background-4:#f1f2fd;
  --background-5:#110e19;
  --background-6:#1e1b24;
  --background-7:#1d6ffb;
  --background-8:#001;
  --background-9:#0b0b0b;
  --background-10:#1d1d25;
  --transition: all .3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ltn__body-font) !important;
  color: var(--black);
  position: relative;
  z-index: 999;
}

.padding20 {
  padding: 20px 0;
}

.padding40 {
  padding: 40px 0;
}

.padding60 {
  padding: 60px 0;
}

.padding80 {
  padding: 80px 0;
}

.padding120 {
  padding: 120px 0;
}

.background-1 {
  background: url(../images/bg-liness.webp) no-repeat center center fixed var(--black);
  background-size: cover;
}

.background-2 {
  background: var(--background-2);
}

.background-3 {
  background: var(--black);
}

.background-4 {
  background: var(--background-9);
}

.why-choose-bg {
  position: relative;
  overflow: hidden;
}
.why-choose-bg::before {
  background: url(../images/ellipse1.webp);
  position: absolute;
  content: "";
  width: 773px;
  height: 100%;
  top: 0;
  z-index: 9;
  left: -33%;
}
.why-choose-bg::after {
  background: url(../images/ellipse2.webp);
  position: absolute;
  content: "";
  width: 773px;
  height: 100%;
  top: 0;
  z-index: 9;
  right: -33%;
}

.testimonial-bg {
  background: url(../images/testimonial-bg-img.webp) no-repeat center center fixed var(--black);
  background-size: cover;
}

.video-bg {
  background: url(../images/bg-liness.webp) no-repeat center center fixed var(--black);
  background-size: cover;
  color: var(--white);
}

header {
  background: var(--black);
  padding: 10px 0;
}
header .sticky {
  position: fixed;
  width: 100%;
  background: var(--black);
  top: 0;
  z-index: 999;
}
header .navbar .nav-link {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 26px !important;
}
header .navbar .logo {
  width: 160px;
}
header .navbar ul li a {
  color: var(--white);
}
header .navbar ul li a:hover {
  color: var(--white);
}
header .navbar ul li .contact {
  background: var(--background-1);
  border-radius: 5px;
}

figure {
  position: relative;
  overflow: hidden;
  z-index: -99;
  background: url(../images/bg-liness.webp) no-repeat center center fixed var(--black);
  background-size: cover;
  color: var(--white);
  padding: 10% 0 0;
  margin: 0;
}
figure .position-fixed {
  width: 93%;
  margin: 0 auto;
}
figure .owl-carousel .item h1 {
  font-size: 66px;
  font-weight: 700;
}
figure .owl-carousel .item p {
  font-size: 20px;
}
figure .owl-carousel .item button {
  background: none;
  border: solid 2px var(--white);
  padding: 10px 50px 10px 25px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
figure .owl-carousel .item button:hover {
  background: var(--background-1);
  border-color: var(--background-1);
}
figure .owl-carousel .item button i {
  position: absolute;
  right: 15px;
  top: 13px;
}
figure .owl-carousel .owl-nav {
  display: none;
}
figure .owl-carousel .owl-dots {
  margin-top: 20px;
  display: none;
}
figure .video {
  margin-top: 25%;
}
figure .video video {
  width: 100%;
  height: 800px;
}

section .video video {
  width: 100%;
  height: 800px;
}
section .service h2 {
  font-family: var(--font-kanit);
  font-size: 50px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 35px;
}
section .service .item {
  padding: 40px;
  border-radius: 21px;
  border: 1.3px solid var(--border-1);
  position: relative;
  height: 100%;
}
section .service .item::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 76px;
  right: -2px;
  top: calc(50% - 38px);
  background: var(--black);
  transition: var(--transition);
  border-radius: 15px 0px 0px 15px;
}
section .service .item h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-kanit);
}
section .service .item ul {
  margin: 0;
  padding: 0;
}
section .service .item ul li {
  list-style: none;
  transition: var(--transition);
  font-size: 16px;
  font-family: var(--font-kanit);
}
section .service .item:hover::after {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  right: -1px;
  top: 0;
  border-radius: 15px;
  z-index: -9;
}
section .service .item:hover h3 {
  color: var(--white);
}
section .service .item:hover li {
  color: var(--white);
}
section .process {
  font-family: var(--font-kanit);
  color: var(--white);
}
section .process h3 {
  font-size: 18px;
  font-weight: 400;
}
section .process h2 {
  font-size: 50px;
  font-weight: 500;
}
section .process p {
  color: var(--color-1);
  font-size: 18px;
  font-weight: 300;
}
section .process p span {
  color: var(--white);
}
section .process .view {
  width: 170px;
  height: 170px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-transform: capitalize;
  border-radius: 100%;
  border: solid 1px var(--border-2);
  color: var(--color-1);
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: var(--transition);
  float: right;
}
section .process .view:hover {
  background: var(--background-1);
  border-color: var(--background-1);
  color: var(--white);
}
section .process .view i {
  transform: rotate(-45deg);
  padding-left: 5px;
}
section .process .img {
  transform: rotate(15deg) translateX(60px) translateY(30px);
}
section .process .info {
  margin-top: 50px;
}
section .process .info ul {
  margin: 0;
  padding: 0;
}
section .process .info ul li {
  list-style: none;
  transition: var(--transition);
  border: solid 1px var(--border-2);
  padding: 35px 0;
  border-width: 1px 0px 1px 0px;
}
section .process .info ul li .number {
  font-size: 28px;
  color: var(--color-1);
  transition: var(--transition);
}
section .process .info ul li h3 {
  font-size: 28px;
  color: var(--color-1);
  transition: var(--transition);
}
section .process .info ul li p {
  font-size: 16px;
  color: var(--color-1);
  line-height: 24px;
  margin: 0;
}
section .process .info ul li i {
  transform: translate(0, 0) rotate(-45deg);
  font-size: 48px;
  color: var(--color-1);
  transition: var(--transition);
}
section .process .info ul li:hover .number, section .process .info ul li:hover h3 {
  color: var(--white);
}
section .process .info ul li:hover i {
  color: var(--white);
}
section .benefits h3 {
  font-size: 40px;
  font-weight: 600;
}
section .benefits p {
  font-size: 16px;
  line-height: 25px;
}
section .benefits button {
  background: var(--background-7);
  border-radius: 5px;
  padding: 14px 28px 14px 26px;
  color: var(--white);
  border: none;
  transition: var(--transition);
  margin-bottom: 20px;
}
section .benefits button:hover {
  background: var(--background-8);
}
section .benefits .item {
  border: solid 1px var(--color-1);
  transition: var(--transition);
  padding: 25px;
  border-radius: 5px;
  height: 100%;
}
section .benefits .item:hover {
  box-shadow: 0px 10px 40px 0px rgba(23, 26, 107, 0.1);
  border-color: var(--white);
}
section .benefits .item h4 {
  font-family: var(--font-pull);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-7);
}
section .benefits .item p {
  font-size: 16px;
  color: var(--color-8);
  line-height: 25px;
  margin: 0;
}
section .benefits .item i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  text-align: center;
  margin-bottom: 20px;
}
section .benefits .item .bg1 {
  color: #226a31;
  background: #b1ffc2;
}
section .benefits .item .bg2 {
  color: #8e2925;
  background: #ffb6b3;
}
section .benefits .item .bg3 {
  color: #734d22;
  background: #ffdbb3;
}
section .benefits .item .bg4 {
  color: #155c55;
  background: #b3fff7;
}
section .benefits .item .bg5 {
  color: #325ca6;
  background: #b3cfff;
}
section .benefits .item .bg6 {
  color: #5f9a27;
  background: #d8ffb3;
}
section .why-choose {
  color: var(--white);
}
section .why-choose .position-relative {
  z-index: 9;
}
section .why-choose h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
section .why-choose .img {
  border-radius: 10px;
}
section .why-choose p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
section .why-choose .nav button {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-2);
  text-align: left;
  padding: 20px 0 20px 20px;
  position: relative;
  width: 100%;
}
section .why-choose .nav .active {
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
section .why-choose .nav .active::before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 30px;
}
section .techstack_panel h3 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 30px;
}
section .techstack_panel p {
  font-size: 16px;
  line-height: 27px;
}
section .techstack_panel .tabs ul li {
  margin: 0 10px;
}
section .techstack_panel .tabs ul li button {
  padding: 20px 35px;
  background: var(--white);
  border: solid 2px var(--black);
  border-radius: 5px;
  color: var(--black);
  transition: var(--transition);
}
section .techstack_panel .tabs ul li button:hover {
  background: var(--background-1);
  border-color: var(--border-3);
  color: var(--white);
}
section .techstack_panel .tabs ul li .active {
  background: var(--background-1);
  border: solid 2px var(--border-3);
  color: var(--white);
}
section .techstack_panel .tabs .tab-content .content .icon {
  background: #e5e5e5;
  border-radius: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
section .techstack_panel .tabs .tab-content .content .icon img {
  transform: scale(0.8);
}
section .techstack_panel .tabs .tab-content .content h4 {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
}
section .digital h3 {
  font-size: 50px;
  font-weight: 600;
  color: var(--black);
}
section .digital p {
  font-size: 17px;
  line-height: 28px;
}
section .digital .item {
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}
section .digital .item:hover {
  background: var(--background-4);
}
section .digital .item .icon {
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: var(--background-3);
  border-radius: 4px;
  text-align: center;
}
section .digital .item h4 {
  font-size: 26px;
  font-weight: 600;
  margin: 20px 0;
}
section .digital .item p {
  font-size: 14px;
  line-height: 25px;
}
section .development {
  color: var(--white);
}
section .development h2 {
  font-size: 50px;
  font-weight: 600;
}
section .development p {
  font-size: 17px;
  line-height: 25px;
}
section .development .owl-carousel .item {
  background: var(--background-5);
  border: solid 1px var(--border-4);
  padding: 30px;
  border-radius: 15px;
  min-height: 470px;
  transition: var(--transition);
}
section .development .owl-carousel .item:hover {
  background: var(--background-1);
  border-color: var(--border-3);
}
section .development .owl-carousel .item:hover .icon {
  color: var(--white);
}
section .development .owl-carousel .item:hover h3, section .development .owl-carousel .item:hover p {
  color: var(--white);
}
section .development .owl-carousel .item:hover .icon {
  background: var(--background-7);
}
section .development .owl-carousel .item .icon {
  width: 66px;
  height: 66px;
  background: var(--background-6);
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
}
section .development .owl-carousel .item .icon img {
  width: auto;
}
section .development .owl-carousel .item h3 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 26px;
  font-weight: 700;
}
section .development .owl-carousel .item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 20px;
  margin: 20px 0 0 0;
}
section .development .owl-carousel .item p a {
  color: var(--color-3);
  text-decoration: none;
}
section .development .owl-carousel .owl-dots {
  display: none;
}
section .development .owl-carousel .owl-prev {
  position: absolute;
  top: -40px;
  right: 40px;
  font-size: 20px;
}
section .development .owl-carousel .owl-prev i {
  font-size: 30px;
}
section .development .owl-carousel .owl-prev:hover {
  background: none;
}
section .development .owl-carousel .owl-next {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 20px;
}
section .development .owl-carousel .owl-next i {
  font-size: 30px;
}
section .development .owl-carousel .owl-next:hover {
  background: none;
}
section .testimonial {
  color: var(--white);
}
section .testimonial h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
section .testimonial p {
  font-size: 17px;
}
section .testimonial .owl-carousel .item {
  background: var(--background-8);
  border-radius: 15px;
  border: 1px solid var(--border-5);
  position: relative;
  padding: 60px 60px 100px;
  text-align: center;
  width: 98%;
}
section .testimonial .owl-carousel .item h4 {
  font-size: 18px;
  font-weight: 700;
}
section .testimonial .owl-carousel .item h5 {
  font-size: 14px;
  line-height: 20px;
}
section .testimonial .owl-carousel .item p {
  font-size: 16px;
  line-height: 25px;
}
section .testimonial .owl-carousel .owl-nav {
  display: none;
}
section .testimonial .owl-carousel .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}
section .business h2 {
  background: linear-gradient(to right, #f1dd49, #fbab78);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 55px;
  font-weight: 700;
}
section .business .item {
  border: solid 1px var(--white);
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  height: 100%;
}
section .business .item h3 {
  font-size: 20px;
  font-weight: 700;
}
section .business .item p {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

footer {
  background: var(--background-10);
  position: relative;
  color: var(--white);
}
footer .logo {
  width: auto;
  height: 45px !important;
  margin-bottom: 20px;
}
footer .inner {
  background: var(--background-1);
  padding: 60px 30px;
  color: var(--white);
  position: relative;
  margin-top: -50px;
  margin-bottom: 50px;
}
footer .inner .title {
  font-family: var(--font-playfair);
  font-size: 22px;
}
footer .inner p {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
}
footer p {
  font-size: 16px;
  line-height: 25px;
}
footer .menu ul {
  margin: 0;
  padding: 0;
}
footer .menu ul li {
  list-style: none;
  transition: var(--transition);
  padding: 3px 0;
}
footer .menu ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
footer .menu ul li a:hover {
  color: var(--color-7);
}
footer .alert-danger {
  padding: 6px;
  font-size: 13px;
  text-align: center;
}
footer .input-group {
  margin-bottom: 10px;
}
footer .input-group input[type=text] {
  width: 100%;
  padding: 10px;
  border: solid 2px #e8eaee;
  background: var(--white);
  outline: none;
  transition: var(--transition);
  font-size: 14px;
}
footer .input-group input[type=text]:hover, footer .input-group input[type=text]:focus {
  border-color: var(--background-1);
}
footer .input-group textarea {
  width: 100%;
  padding: 10px;
  border: solid 2px #e8eaee;
  background: var(--white);
  outline: none;
  transition: var(--transition);
  resize: none;
  font-size: 14px;
}
footer .input-group textarea:hover, footer .input-group textarea:focus {
  border-color: var(--background-1);
}
footer .input-group input[type=submit] {
  background: var(--background-3);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}
footer .input-group input[type=submit]:hover {
  background: var(--background-1);
  color: var(--white);
}
footer .contact-box h5 {
  font-family: var(--font-playfair);
  font-size: 19px;
  color: var(--white);
  font-weight: 500;
}
footer .contact-box h3 {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 30px;
}
footer .contact-box h3 a {
  color: var(--white);
  text-decoration: none;
}
footer .contact-box .link a {
  color: var(--white);
  opacity: 0.5;
  font-family: var(--font-poppins);
  font-size: 16px;
  text-decoration: none;
}
footer .contact-box ul {
  margin: 0;
  padding: 0;
  float: right;
}
footer .contact-box ul li {
  list-style: none;
  transition: var(--transition);
  float: left;
  width: 40px;
  line-height: 42px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-left: 10px;
  height: 40px;
  transition: var(--transition);
}
footer .contact-box ul li:hover {
  background: var(--background-1);
}
footer .contact-box ul li a {
  font-size: 13px;
  color: #fff;
  display: block;
}
footer .copyright {
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 13px;
  font-family: var(--font-poppins);
  color: var(--white);
}/*# sourceMappingURL=stylesheet.css.map */