* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  font-family: "Poppins", sans-serif;
  /* font-size: 62.5%; */
  /* font-size: 8px; */
  /* scroll-behavior: smooth;
  scroll-snap-type: y mandatory; */
}
:root {
  --primary: #572ce8;
  --spacing: 24px;
  --text-color: #444;
  --big-text: 48px;
  --small-text: 24px;
  --content-text: 24px;
  --black: #373e4c;
}
a {
  text-decoration: none;

  color: var(--primary);

  font-weight: 700;
}
#services:target,
#why:target {
  display: block;
  position: relative;
  top: -50px; /* this is your offset */
  /* visibility: hidden; */
}
#contactus:target {
  display: block;
  position: relative;
  top: -20px; /* this is your offset */
  /* visibility: hidden; */
}
input[type="email"] {
  border: none;
  padding: 12px;
  font-size: 16px;
  background: none;
  border: 1px solid rgba(120, 120, 120, 0.31);

  outline: none;
  border-radius: 10px;
  width: -webkit-fill-available;
}
li {
  list-style: none;
  text-decoration: none;
}
.red_curtain {
  background: #572ce8;
}

/* nav */

.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  top: 0px;
  display: flex;
  justify-content: space-between;
  padding: 0px var(--spacing);
  align-items: center;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  /* border-right: 1px solid #f4f4f4; */
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  /* background-color: ; */
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
  /* margin: 16px; */
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

ul.menu > li > a {
  color: #333;
}

a.cta {
  border: 1px solid;
  font-weight: 500;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}
a.cta:hover {
  background: var(--primary);
  color: #fff;
  /* transition: all 0.4s; */
}
/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 8px 30px;
    font-weight: 400;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
@media (max-width: 48em) {
  .header {
    display: block;
    padding: 16px 0px;
  }

  .header .logo {
    margin-top: 0;
  }

  .header-text.our {
    margin: 24px 4em;
  }
}
/*  */
h2 {
  font-size: var(--big-text);
}
h4 {
  font-size: var(--small-text);
  color: var(--text-color);
  margin-top: 8px;
  font-weight: 400;
}
p {
  font-size: var(--content-text);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container1 {
  margin: 230px auto 133px;
  display: flex;
  flex-wrap: wrap;
}

a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 10rem;
  font-size: 24px;
  margin: var(--spacing) 0;
}
/* 
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing);
  padding: var(--spacing);
} */

.header-text {
  margin: var(--spacing) 0px;
  padding: var(--spacing);
}
.header-text.our {
  /* text-align: center; */
  margin: 24px 160px;
}

@media (max-width: 48em) {
  .header-text.our {
    margin: 24px 4em;
  }
}
.hero-image-container {
  padding: var(--spacing);
}
.hero-image-container > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 85%;
  border-radius: 24px;
}

.services {
  margin: var(--spacing) 0;
  background: #fdfcfa;
  overflow: hidden;
}

.process {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: var(--spacing);
  place-items: center;
}

.process > img {
  max-width: 450px;
  border-radius: 24px;
}
@media screen and (max-width: 800px) {
  .process {
    grid-template-columns: repeat(1, 1fr);
  }
  .process > img {
    max-width: 300px;
    border-radius: 24px;
  }

  .container1 {
    margin: 160px auto 12px;
    justify-content: center;
  }

}

.list-items {
  margin: var(--spacing);
  font-size: var(--small-text);
}

.work-text {
  text-align: center;
}

.swiper-container {
  padding: var(--spacing);
  margin: 24px 0px;
  overflow: scroll;
}

.swiper-wrapper {
  display: flex;
  justify-content: center;
}
.swiper-slide {
  min-width: 250px;
  max-width: 260px;
  height: 300px;
  /* cursor: grab; */
  border-radius: 24px;
  padding: var(--spacing);
  background: white;
  overflow: hidden;
  /* border: 1px solid #373e4c; */
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
  margin-left: 16px;
}

.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 170px;
}
footer {
  background: #17161a;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

/* .work-text-footer > .container{
  
  padding: var(--spacing);
  
  margin: 0 auto;
  /* max-width: 50ch; */

/* display: flex; */
/* justify-content: space-evenly; */
/* align-items: center; */
/* flex-wrap: wrap; */
/* } */

/* .work-text-footer > .container > p{
  max-width: 40vw;
  font-size: var(--small-text);
} */

/* footer > .container:nth-of-type(1) {
  padding: var(--spacing);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
} */
footer > .container:nth-of-type(1) > div {
  margin: var(--spacing);
  padding: var(--spacing);
}
footer > .container:nth-of-type(1) > div > h3 {
  color: #6a696c;
  font-size: 16px;
  margin-bottom: 16px;
}
footer > .container:nth-of-type(1) > div > a {
  color: var(--primary);
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  a.button {
    font-size: 16px;
  }
  .swiper-wrapper {
    justify-content: left;
  }
  footer > .container:nth-of-type(1) {
    display: flex;
    flex-wrap: wrap;
  }
  footer > .container:nth-of-type(1) > div {
    padding: 0;
  }
  .swiper-slide {
    justify-content: center;
  }

  ul.menu > li > a.cta {
    width: fit-content;
    padding: 12px;
    margin-left: 12px;
  }

  .header li a {
    /* padding: 20px 8px; */
    margin: 0px;
  }
  .header-text.our {
    /* text-align: center; */
    margin: 24px 2em;
  }
}
.menu ul > li {
  color: rgba(255, 255, 255, 0.8);
}
.footer-end {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  /* border-top: 1px solid #ccc; */
  padding: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-end > p {
  font-size: 14px;
}
.company > img {
  margin: 16px 0px;
  max-width: 128px;
  max-height: 128px;
  object-fit: contain;
}
.company {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 24px;
  margin: var(--spacing);
  padding: var(--spacing);
}

button.btn {
  padding: 12px;
  background: var(--primary);
  color: #fcfcfc;
  outline: none;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
.contact > a.button {
  max-width: 300px;
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 24px;
  }
  h4 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
  .hero-image-container {
    padding: 12px;
  }
}
::-webkit-scrollbar {
  display: none;
}

.back-card {
  background: #dedede;
  /* border-radius: 16px; */
  padding: 16px;
}
/* app.html */

.app-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.video-plaer {
  /* position: absolute; */
  right: 0px;
  top: 30px;
  /* filter: grayscale(); */
}

.tech-stack {
  background: #f2f5f7;
}
.advantage-container {
  margin: var(--spacing);
}

.advantage-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* place-items: center; */
  gap: 16px;
}
.advantage-items {
  display: flex;
  flex-wrap: wrap;
}

.advantage-header {
  text-align: center;
  margin: var(--spacing) 0px;
}

.advantage-item {
  padding: 24px;
}

.advantage-index > .advantage-item{
  padding: 24px;
  background: #fcfcfc;
  border-radius: 16px;
}


.billboard {
  padding: var(--spacing) 0;
}
.billboard-items {
  display: flex;
  padding: var(--spacing);
  flex-wrap: wrap;
}

.billboard-item {
  margin: var(--spacing) auto;
}

.billboard-img img {
  max-width: 225px;
  max-height: 96px;
  object-fit: contain;
  filter: grayscale();
}
.advantage-item-num {
  color: transparent;
  font-size: 64px;
  -webkit-text-stroke: 2px #333;
}

.advantage-item-title {
  max-width: 250px;
  font-size: max(20px, 1vw, 1vh);
}

.index {
  display: unset;
  justify-content: center;
}

.index > .advantage-item {
  display: inline-grid;
  grid-template-columns: 300px auto;
  align-items: baseline;
  margin: 0px 6em;
  padding: 0px 16px;
}

.index-item {
  max-width: none;
}
div.big {
  max-width: 280px;
}

.advantage-item-text {
  max-width: 400px;
  padding: 40px 0px;
}

.index > .advantage-item > .advantage-item-text {
  max-width: none;
}

.advantage-index > .advantage-item > .advantage-item-title{
  max-width: none;
}
.advantage-index > .advantage-item > .advantage-item-text{
  max-width: none;
  padding: 16px 0px;
}

/* web html */
.web-listing-items {
  margin: 2em, 0;
  padding: 0;
  counter-reset: web-listing-ol;
  column-count: 3;
}

.web-listing-item:before {
  counter-increment: web-listing-ol;
  content: counter(web-listing-ol) ".";
  display: inline-block;
  width: 2em;
  font-weight: 600;
}

.web-listing-item {
  font-size: 24px;
  padding: 24px;
  line-height: 150%;
  font-weight: 400;
}

.web-listing-item > li {
  font-weight: 200;
}

@media screen and (max-width: 900px) {
  .web-listing-items {
    column-count: 2;
  }
}
@media screen and (max-width: 600px) {
  .web-listing-items {
    column-count: 1;
  }
}

#landscape {
  /* background-image: url("images/jon.png"); */
  /* height: 100vh; */
  align-items: center;
  /* background: #000; */
  overflow-x: hidden;
  background-repeat: no-repeat;
  /* min-height: 55vh; */
  background-position: center;
  overflow-y: hidden;
  padding: var(--spacing);
  margin: 24px;
  overflow: scroll;
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
}

.app-card {
  background: #000;
}

.web-card {
  background: #0061ff;
}

.ui-card {
  background: #06013d;
}
.text-container {
  color: #fff;
  padding: 0px 6em;
}

.text-container > h3 {
  font-size: var(--big-text);
}

.text-container > p {
  font-size: var(--small-text);
  font-weight: 100;
}
.text-link {
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  text-decoration: underline;
}

.text-link.alt {
  text-decoration: none;
}

.linkarrow {
  display: flex;
  gap: 8px;
  margin-top: var(--small-text);
}

.link-arrow-color {
  color: #fff;
}

@media (max-width: 48em) {
  #landscape {
    flex-direction: column;
    /* flex-wrap: wrap; */
    overflow: hidden;
  }
}

.contactus__content {
  display: flex;
  width: 100%;
  max-width: 848px;
  padding-bottom: 1px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  gap: 12px;
}

.row:before,
.row:after {
  display: table;
  content: " ";
  clear: both;
}

.row {
  display: flex;
  /* flex-wrap: wrap; */
}
.col {
  margin: 16px;
  width: -webkit-fill-available;
}
.form-group {
  display: flex;
}
.form-grid {
  display: flex;
  max-width: 100%;

  flex-wrap: wrap;

  align-items: center;
}

.select-field {
  height: 100%;
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  background-color: #fff;
  /* background-image: -webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent))); */
  /* background-image: linear-gradient(180deg ,transparent,transparent); */
  font-size: 16px;
  line-height: 29px;
  width: 200px;
  /* max-width: 100%; */
  width: -webkit-fill-available;
  cursor: pointer;
}

.text-field {
  height: 100%;
  max-width: 100%;
  margin-bottom: 0;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  background-color: #fff;
  -webkit-transition: box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #000;
  font-size: 18px;
  line-height: 29px;
}

form > button.submit {
  padding: 16px 24px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 0 0 0 #fff;
  opacity: 1;
  -webkit-transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  text-align: center;
  /* color: #000; */
  font-size: 16px;
  border: none;
}
input[type="text"],
input [type="number"],
input[type="email"] {
  border: none;
  padding: 16px;
  font-size: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  outline: none;
  border-radius: 10px;
  width: -webkit-fill-available;
}

select option {
  font-family: "Poppins";
  color: #f2f5f7;
}
p.contact-body {
  font-size: 16px;
  font-weight: 200;
  padding: 8px 0px 16px 0px;
  max-width: 50ch;
}

.hero-bg-text {
  margin: var(--spacing) 6em;
}

.hero-bg-text > h2 {
  font-size: max(20px, 4vw, 3vh);
}

.hero-bg-text > h4 {
  font-size: max(20px, 1.4vw, 2vh);
  max-width: 24em;
}
.back {
  /* background: #faf9f6; */
  background: #000;
  color: #fff;
  padding: 32px 0px 160px 0px;
}

.row > textarea {
  margin: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: -webkit-fill-available;
  min-height: 80px;
  padding: 16px;
  font-family: "Poppins";
  border-radius: 10px;
}

textarea::-webkit-input-placeholder {
  font-size: 16px;
}

textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 16px;
}

textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 16px;
}

textarea:-ms-input-placeholder {
  font-size: 16px;
}

textarea::placeholder {
  font-size: 16px;
}
@media (max-width: 728px) {
  .index > .advantage-item {
    display: block;
    margin: 0;
  }

  .hero-bg-text {
    margin: var(--spacing);
  }

  .text-container {
    color: #fff;
    padding: unset;
  }

  .text-container > h3 {
    font-size: 16px;
  }
  .text-container > p {
    font-size: 14px;
    font-weight: 100;
  }

  #landscape {
    align-items: baseline;
  }
  .row {
    flex-wrap: wrap;
  }

  .advantage-index{
    /* display: block; */
    grid: none;
  }
}

button.submit:active{
  color: #000;
}
.contact-body > .row > .col > h3 {
  font-weight: 100;
}

.alert-confirm, .alert-issue{
  display: flex;
  align-items: flex-end;
  position: fixed;
  bottom: 20px;
  /* bottom:-400px; */
  /* border: 1px solid #ff1a3a; */
  box-shadow: 1px 1px 18px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 10;
  right: 20px;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
  padding: 24px;
  opacity: 0;
  background: #fff;
  width: fit-content;
}

.alert-box h3 {
  color: #ff1a3a;
  font-size: 18px;
}

.show{
  opacity: 1;
}
.call-support {
  z-index:1000;
  position: fixed;
  right: .5rem;
  bottom: 0px;
}
.show-large {
  display: none;
}
@media only screen and (min-width: 767px) {
  .show-large {
    display: block;
  }
  .show-mobile {
    display: none;
  }
  .advantage-container {
    margin-right: var(--spacing);
  }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  .show-large {
    display: none;
  }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .show-large {
    display: none;
  }
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /* CSS */
  
}

  @media only screen and (max-width: 767px) {
    
    .advantage-container {
      margin-right: 0px;
      margin-left: 0px;

    }
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 0px;
  border: 4px solid #000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
