/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

.dtPageContainer span,
.dtPageContainer p {
  margin: 0px;
  padding: 0px;
}

.dtPageContainer {
  color: rgb(38, 53, 70);
}

.dtHeroSection {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 30px auto;
  padding: 20px;
  align-items: center;
}

@media (max-width:1100px) {
  .dtHeroSection {
    flex-direction: column;
  }

  .dtHeroSectionLeft {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.dtHeroSectionLeft {
  width: 100%;
  max-width: 450px;
}

.dtHeroSectionTitle {
  font-size: 56px;
  font-weight: 700;
  font-style: normal;
  color: rgb(38, 53, 70);
  line-height: 56px;
  letter-spacing: -0.046em;
}

.dtHeroSectionSubtitle {
  font-size: 37px;
  font-weight: 700;
  line-height: 37px;
  letter-spacing: -0.046em;
  font-style: normal;
  color: rgb(13, 131, 141);
  margin-top: 10px;
}

.dtHeroSectionTitle span {
  display: block;
}

.dtHeroSectionLeft img {
  width: 100%;
  max-width: 250px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtHeroSectionRight {
  display: block;
  position: relative;
}

.dtHeroSectionRightBg {
  width: 100%;
  max-width: 750px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

.dtHeroSectionRightTablet {
  display: inline-block;
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 480px;
  height: 270px;
}

.dtHeroSectionRightTabletEmpty {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 9;
  left: 0px;
  top: 0px;
}

.dtHeroSectionRightTabletScreen01 {
  display: block;
  position: absolute;
  width: calc(100% - 20px);
  z-index: 1;
  left: 10px;
  top: 10px;
  max-height: 260px;
  border-radius:10px;
}

.dtHeroSectionRightTablet {
  transition: transform 0.25s ease;
}

.dtHeroSectionRightTablet:hover {
  transform: translate(-50%, -50%) scale(1.10);
}

.tablet-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
  pointer-events: none;
}

.screens-wrapper {
  position: absolute;
  left: 15px;
  top: 10px;
  right: 15px;
  bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.screen-1 {
  animation: slideshow 12s infinite;
}
.screen-2 {
  animation: slideshow 12s infinite 4s;
}
.screen-3 {
  animation: slideshow 12s infinite 8s;
}

@keyframes slideshow {
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  30%   { opacity: 1; }
  33%   { opacity: 0; }
  100%  { opacity: 0; }
}

@media (max-width: 500px) {
  .dtHeroSectionRightTablet {
    max-width: 320px;
    height: 180px;
  }
  .screens-wrapper {
    right: 10px;
    left: 10px;
    bottom: 5px;
    top: 5px;
  }
}

.dtHeroSectionCtaBtn {
  display: inline-block;
  position: relative;
  margin-top: 50px;
  border-radius: 40px;
  padding: 15px 50px;
  font-size: 19px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  background: rgb(255, 190, 43);
}

.dtHeroSectionCtaBtn:hover {
  background: rgb(255, 190, 43);
  color: black;
  text-decoration: none;
}

.dtFvtSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtFvtSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtFvtSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtFvtSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtFvtSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtFvtSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}


@media (max-width:800px) {
  .dtFvtSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtFvtSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtFvtSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtFvtSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtFvtSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtHiwSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtHiwSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtHiwSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtHiwSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtHiwSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtHiwSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

.dtHiwSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width:800px) {
  .dtHiwSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtHiwSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtHiwSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtHiwSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtPfSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtPfSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtPfSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtPfSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtPfSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtPfSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width:800px) {
  .dtPfSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtPfSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 450px;
  flex-direction: column;
  align-items: center;
}

.dtPfSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtPfSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtPfSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtPfSectionSubtitle2 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.dtPfSectionSubtitle3 {
  font-size: 24px;
  line-height: 24px;
  margin: 20px 0px;
  font-weight: bold;
  text-align: center;
}


.dtPfSectionCols2 {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
}

@media (max-width:800px) {
  .dtPfSectionCols2 {
    flex-direction: column;
    align-items: center;
  }
}

.dtPfSectionCols2 .dtPfSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 450px;
  flex-direction: column;
  align-items: center;
}

.dtPfSectionCols2 .dtPfSectionColSubtitle {
  text-align: left;
}

.dtDfdSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtDfdSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtDfdSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtDfdSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtDfdSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtDfdSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

.dtDfdSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width:800px) {
  .dtDfdSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtDfdSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtDfdSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtDfdSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtDfdSectionSubtitle2 {
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  margin: 10px;
}


.dtCapSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtCapSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtCapSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtCapSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtCapSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtCapSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-around;
}


@media (max-width:800px) {
  .dtCapSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtCapSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 500px;
  flex-direction: column;
  align-items: center;
}

.dtCapSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 20px;
}

.dtCapSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtCapSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtCasSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtCasSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtCasSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtCasSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtCasSectionExamples {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.dtCasSectionExample {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.dtCasSectionExampleTitle {
  display: block;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}


.dtListSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtListSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtListSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtListSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtListSectionSubtitle2 {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtListSectionCtaBtn {
  display: inline-block;
  position: relative;
  margin: 30px auto;
  border-radius: 40px;
  padding: 15px 50px;
  font-size: 19px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  background: rgb(255, 190, 43);
}

.dtListSectionCtaBtn:hover {
  background: rgb(255, 190, 43);
  color: black;
  text-decoration: none;
}



.dtGarSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtGarSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtGarSectionTitle {
  display: inline-block;
  position: relative;
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 60px;
}

.dtGarSectionTitleDivider {
  display: block;
  position: absolute;
  width: 80%;
}

.dtGarSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dtGarSectionSubtitle2 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtGarInnerSection {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
}

.dtGarInnerSectionLeft {
  width: 100%;
  max-width: 430px;
  flex-shrink: 0;
  padding-right: 20px;
}

.dtGarInnerSectionRight {
  background: #ebf1f8;
  border-radius: 30px;
  padding: 20px;
}

.dtGarInnerSectionRight p {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 28px;
}

@media (max-width:1000px) {
  .dtGarInnerSection {
    flex-direction: column;
  }

  .dtGarInnerSectionLeft {
    max-width: 300px;
    padding-right: 0px;
  }
}

.dtFeatSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtFeatSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtFeatSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtFeatSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtFeatSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtFeatSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}


@media (max-width:800px) {
  .dtFeatSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtFeatSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtFeatSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100px;
  width: 100%;
}

.dtFeatSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtFeatSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtFeatSectionTitle2 {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  margin-top: 20px;
  font-weight: bold;
}

.dtFeatSectionSubtitle2 {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtFeatSectionSubtitle3 {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}


.dtPrsSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtPrsSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtPrsSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtPrsSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtPrsSectionSubtitle2 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
  margin-top: 30px;
  font-weight: bold;
  text-align: center;
}


.dtSupSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtSupSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtSupSectionTitle {
  font-size: 43px;
  font-weight: bold;
  line-height: 51px;
  margin-bottom: 30px;
}

.dtSupSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtSupSectionInnerContainer {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
}

.dtSupSectionInnerLeft {
  padding-right: 40px;
}

@media (max-width:1200px) {
  .dtSupSectionInnerContainer {
    flex-direction: column;
  }

  .dtSupSectionInnerLeft {
    padding-right: 0px;
  }
}

.dtSupSectionInnerRight {
  max-width: 500px;
  width: 100%;
  flex-shrink: 0;
}

.dtSupSectionSubtitle p {
  margin-bottom: 20px;
}

.dtSupSectionInnerRight img {
  border-radius: 20px;
}

.dtSupSectionTitle2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 20px;
}

.dtSupSectionSubtitle2 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.supPricing {
  max-width: 100% !important;
}


.dtCasSectionMain {
  display: block;
  position: relative;
}

.dtCasSectionMainLeft {
  display: inline-block;
  position: relative;
  max-width: calc(100% - 400px);
  width: 100%;
  float: left;
}

.dtCasSectionMainRight {
  display: inline-block;
  position: relative;
  max-width: 400px;
  padding-left: 30px;
  width: 100%;
}

.dtCasSectionMainRight h3 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
}

.dtCasSectionMain:after {
  display: block;
  position: relative;
  content: " ";
  clear: both;
}

@media (max-width:1000px) {
  .dtCasSectionMainLeft {
    float: none;
    max-width: 1000px;
  }

  .dtCasSectionMainRight {
    max-width: 1000px;
  }
}


.dt-hero-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgb(99 99 99 / 85%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dt-hero-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.dt-hero-popup-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.dt-hero-popup-video-wrapper {
  width: 100%;
  height: 100%;
}

.dt-hero-popup-close {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.dt-hero-popup-close:hover {
  background: #222;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .dt-hero-popup-content {
    width: 96%;
    border-radius: 12px;
  }

  .dt-hero-popup-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
    display: none;
  }
}