@import url("https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #f74d44;
  --secondary-color: #ffffff;
  --least-color: #000000;
  --light-sqaure: rgba(255, 255, 255, 0.3);
  --font-main: "Noto Sans", sans-serif;
  --silver-color: #b1b1b1;
  --light-primary: #ffd4d4;
  --white-btn-hover: #f0f0f0;
  --text-muted: #bebebe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: var(--font-main);
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  border-radius: 0px 0px 25px 25px;
}
/* start navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 30px;
  margin: 0px 10%;
  background-color: var(--secondary-color);
  border-radius: 12px;
  border: 1px solid var(--secondary-color);
  padding: 1rem;
  width: 80%;
  z-index: 1;
  transition: box-shadow 0.3s ease-in-out;
}

.navbar.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navbar a {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--font-main);
  font-weight: 500;
  position: relative;
  padding-left: 8px;
}

.navbar a .active-dot {
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.navbar a.active .active-dot {
  display: block;
}

.navbar a .active-dot {
  display: none;
}

.main-menu,
.secondary-menu {
  width: 30%;
  display: flex;
  justify-content: space-around;
}

.icon-logo {
  position: relative;
}

.circle-logo {
  margin-top: -40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--secondary-color);
}

.touch-out-logo {
  width: 30px;
  height: 30px;
}

.menuIcon {
  display: none;
  width: 40px;
  cursor: pointer;
}

.card-mobile-menu {
  display: none;
  background-color: var(--secondary-color);
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  width: 80%;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  margin: 0.6rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--font-main);
  position: relative;
  padding-left: 12px;
}

.mobile-menu a .active-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.mobile-menu a.active .active-dot {
  display: block;
}

.mobile-menu a .active-dot {
  display: none;
}

/* end navbar */

.square {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3); /* White with 30% opacity */
  cursor: pointer;
  height: 80px;
  width: 80px;
  overflow: hidden;
}

/* end square  */

/* hero section */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.context {
  font-family: var(--font-main);
  color: var(--secondary-color);
  font-weight: 200;
}
.arrow-button {
  display: flex;
  align-items: center;
  /* border: 1px solid var(--secondary-color); */
  padding: 10px 20px;
  max-width: max-content;
  margin-top: 20px;
  font-family: var(--font-main);
}

.arrow-button .btn-content {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-right: 10px; /* Space between text and image */
  cursor: pointer;
}

.arrow-button img {
  max-width: 30px; /* Adjust size of the arrow image */
  height: auto;
  vertical-align: middle; /* Align image vertically */
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 50px; /* Optional: Adjust margin */
}

.image-hero img {
  max-width: 100%;
  height: auto;
 
}
.signin-signupbtn{
  width: 100%;
  display: grid;
  place-items: center;
  background-color: var(--primary-color);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
}
.registerBtnRow{
 
  width: 20%;
  display: flex;
  justify-content: center;
  
  background-color: var(--primary-color);
}
.registerBtnRow .btndiv{
  width: ;
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.4rem 1.4rem;
  border-radius: 100px;
  margin: 0.3rem;
}
.registerBtnRow .btndiv a{
  color: var(--primary-color);
}
/* end hero section */

/* email service */

.email-service {
  margin: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  border-radius: 25px;
}
.email-service h2,
p {
  padding: 0.6rem;
  color: var(--secondary-color);
  font-family: var(--font-main);
  width: 70%;
}

.btn-container {
  /* border: 1px solid var(--secondary-color); */
  display: flex;
  justify-content: end;
}

/* end email service */

/* count data and users */
.count-container {
  margin: 2rem;
  padding: 2rem;
}
hr {
  width: 80%;
  border: none;
  height: 0.4px;
  background-color: var(--silver-color);
}
.users-data-count {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
}
.users-count > p {
  color: var(--silver-color);
  font-family: var(--font-main);
}
.data-count > p {
  color: var(--silver-color);
  font-family: var(--font-main);
}

.users-count > h4 {
  color: var(--primary-color);
  font-size: 40px;
  font-family: var(--font-main);
}
.data-count > h4 {
  color: var(--primary-color);
  font-size: 40px;
  font-family: var(--font-main);
}
.vhr {
  margin: auto;
  width: 1px;
  background-color: var(--silver-color);
  height: 70px;
}
.data-count,
.users-count {
  width: 30%;
  padding: 4rem 0rem 4rem 0rem;
}

/* how it works */
.heading-steps {
  text-align: center;
  font-size: 40px;
  font-family: var(--font-main);
}
.steps-container {
  margin: 4rem 0px 4rem 0px;
  width: 70%;
  padding: 4rem;
  background-color: var(--primary-color);
}
.steps-container h4 {
  color: var(--secondary-color);
  font-size: 30px;
  font-family: var(--font-main);
}
.steps-works {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading-steps {
  margin-bottom: 20px;
}

.steps-container:nth-child(even) {
  align-self: flex-start;
  border-radius: 0px 25px 25px 0px;
}

.steps-container:nth-child(odd) {
  align-self: flex-end;
  border-radius: 25px 0px 0px 25px;
}

/* end how it works */

/* video emmbed */

.video-embbed {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  font-family: var(--font-main);
}
.video-list {
  width: 90%;
  border-radius: 25px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--light-primary);
  padding: 1rem;
}
.video-link {
  background-color: var(--primary-color);
  width: auto;
  padding: 3rem;
  width: 25%;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  cursor: pointer;
}
.video-link img {
  width: 50px;
}
.video-content h5 {
  font-size: 25px;
  padding: 0.6rem;
}
.video-content p {
  color: var(--least-color);
}

.video-content > .btn-container span {
  color: var(--primary-color);
}
/* end video */

/* footer */

footer {
  margin-top: 2rem;
  background-color: var(--primary-color);
  border-radius: 25px 25px 0px 0px;
  padding: 3rem;
  font-family: var(--font-main);
}
.row {
  text-align: center;
}
.row small {
  color: var(--secondary-color);
  font-family: var(--font-main);
  font-size: 10px;
}
.footer-links-icon {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}
.links {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.links a {
  margin: 0.7rem;
  font-size: 14px;
  color: var(--secondary-color);
}
.ficons {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ftouch {
  font-size: 40px;
  width: 100%;
}
.fhr {
  border: none;
  background-color: var(--secondary-color);
  height: 1px;
  width: 95%;
}
.ffcon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}
.flinks a {
  color: var(--secondary-color);
  margin: 0.7rem;
  font-size: 14px;
}
.fsocial a {
  margin: 0.7rem;
}
.fsocial a img {
  width: 25px;
  height: 25px;
}
.bn {
  transition-duration: 1s;
}
.image-logo {
  transition-duration: 1s;
}
/* end footer */

/* service page */

.containerService {
  position: relative;
  width: 100%;
  height: 20vh;
  background-color: var(--primary-color);
  border-radius: 0px 0px 25px 25px;
}
.newHero {
  /* border: 1px solid red; */
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.newHero .hero {
  margin-top: 0px;
}
.newHero .context {
  color: var(--primary-color);
}
.newHero .hero .arrow-button > span > a {
  color: var(--primary-color);
}
.typing-container {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: bold;
  padding: 20px;
  border-radius: 5px;
}

#cursor {
  animation: blink-animation 0.7s step-end infinite;
}

@keyframes blink-animation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* end service page */

/* pricing plan */
.pricing-plan-container {
  margin: 1rem 0px 1rem 0px;
  padding: 1rem;
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  font-family: var(--font-main);
}
.pricing-plan-container .arrow-button {
  padding: 0px;
}
.pricing-plan-container .arrow-button a {
  color: var(--primary-color);
}
.lableText {
  border-radius: 100px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.4rem 2rem;
}
.text-get-plan {
  padding: 4rem 2rem 4rem 6rem;
  flex: 1;
}
.text-get-plan h2 {
  margin-top: 20px;
  font-size: 40px;
  color: var(--primary-color);
}
.slider-container {
  position: relative;
  padding: 4rem 0px 4rem 2rem;
  flex: 3;
  /* border: 2px solid blue; */
  overflow: hidden;
}
.circle-btn-slider {
  position: absolute;
  right: 2%;
  top: 45%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 9999;
  border: 1px solid var(--silver-color);
  background-color: var(--secondary-color);
}
.circle-btn-slider .arrow-button {
  position: relative;
}

.circle-btn-slider .arrow-button .arrow-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(21%, -30%);
}

.circle-btn-slider2 {
  position: absolute;
  left: 0%;
  top: 45%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 9999;
  border: 1px solid var(--silver-color);
  background-color: var(--secondary-color);
}
.circle-btn-slider2 .arrow-button {
  position: relative;
}
#slide-arrow,
#slide-arrow2 {
  display: none; /* Hide arrow buttons by default */
}

.circle-btn-slider2 .arrow-button .arrow-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(30%, -30%);
}
.circle-btn-slider2 .arrow-button .arrow-div img {
  transform: rotate(180deg);
}

.slides-inner-container {
  max-width: 100%;
  padding: 1rem;
  height: 100%;
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
}
.slides-inner-container::-webkit-scrollbar {
  display: none;
}
.slides-inner-container::-webkit-scrollbar {
  height: 6px;
  width: 1px;
}

.slides-inner-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
.slides-inner-container::-webkit-scrollbar-track {
  border-radius: 10px;
}
.plans-card {
  position: relative;
  margin-left: 1rem;
  width: calc(100% / 3 - 1rem); /* Set a fixed width for each card */
  min-width: 300px; /* Optional: set a minimum width to ensure cards do not shrink too much */
  border-radius: 25px;
  padding: 1rem;
  background-color: var(--primary-color);
}
.sqaureBox {
  height: 150px;
  width: 150px;
  border-radius: 25px 0px 0px 0px;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--light-sqaure);
}
.rowPlanName {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem;
}
.planName span {
  border-radius: 100px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.2rem 1rem;
  font-size: 16px;
}
.numberEmails {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background-color: none;
}
.numberEmails span {
  color: var(--secondary-color);
}

.plan-points {
  padding: 1rem;
}
.plan-points ul > li {
  width: 100%;
  margin: 0.7rem 0.7rem 0.7rem 0.3rem;
  font-size: 12px;
  color: var(--secondary-color);
}
.get-planBtn {
  margin: auto auto;
  border-radius: 12px;
  width: 90%;
  background-color: var(--secondary-color);
  padding: 0.6rem;
  transition-duration: 0.4s;
}
.get-planBtn:hover {
  background-color: var(--white-btn-hover);
  transition-duration: 0.4s;
}
.btnPlan {
  color: var(--primary-color);
  text-align: center;
  font-size: 14px;
}

.pricing-container-details {
  padding: 2rem;
  font-family: var(--font-main);
}
.details-container:nth-child(even) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
}
.details-container:nth-child(odd) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.pricing-text-container {
  flex: 3;
  padding: 2rem;
}
.pricing-text-container h2,
p {
  margin: 1rem;
}
.pricing-text-container h2 {
  font-size: 40px;
  color: var(--primary-color);
}
.pricing-text-container p {
  padding: 0px;
  color: var(--least-color);
}
.image-details {
  padding: 1rem;
  flex: 2;
}
.image-details img {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}
/* end pricing plan */

/* about section */

.about-container {
  display: grid;
  place-items: center;
  font-family: var(--font-main);
}
.main-about-container {
  margin: 2rem;
  width: 80%;
  border: 3px solid var(--primary-color);
  border-radius: 25px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-about-container .ab-heading {
  font-size: 24px;
  color: var(--primary-color);
}
.about-p-details {
  color: var(--least-color);
}
.main-about-container p {
  padding: 0px 3rem 3rem 0px;
  margin: 1rem auto;
  text-align: center;
  color: var(--least-color);
}
.main-about-container p > span {
  color: var(--primary-color);
}

/* ees-block */

.ees-block {
  width: 100%;
  padding: 4rem;
  background-color: var(--primary-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-family: var(--font-main);
  transition-duration: 0.7s;
  margin: 2rem 0rem;
}
.ees {
  display: grid;
  place-items: center;
}
.eesimg-square img {
  width: 60px;
  height: 60px;
}
.eesimg-square {
  background-color: var(--secondary-color);
  padding: 1rem;
  border-radius: 25px;
}
.eesimg-name {
  margin-top: 20px;
  color: var(--secondary-color);
}

/* ees-block end */

/* content about block */

.content-about {
  font-family: var(--font-main);
  padding: 2rem;
}

.content-about h3,
p {
  margin: 1rem 0rem;
}

.content-about h3 {
  font-size: 24px;
  color: var(--primary-color);
}
.content-about p {
  color: var(--least-color);
}

/* content about block */

/* blog section */

.blog-section {
  background-color: var(--primary-color);
  padding: 1rem 4rem;
  font-family: var(--font-main);
}
.flex-blog {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.blog-list {
  flex: 2;
}
.blog-context {
  flex: 1;
}
.cardBlog {
  margin: 1rem 0rem;
  position: relative;
  border-radius: 25px;
  width: 80%;
  background-color: var(--secondary-color);
  padding: 0.8rem 0.8rem 0.8rem 2rem;
}
.cardBlog:hover .circle-image-blog {
  width: 50px;
  height: 50px;
  transition-duration: 0.7s;
}
.blog-heading h3 {
  color: var(--primary-color);
}

.blog-pera p {
  color: var(--least-color);
  font-size: 12px;
  padding: 0;
  width: 100%;
  margin-top: 0;
}
.circle-image-blog {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: auto 0px;
  overflow: hidden;
  transition-duration: 0.7s;
  background-color: var(--silver-color);
}
.circle-image-blog img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.blog-context span {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.4rem 2rem;
  border-radius: 100px;
}
.blog-context h3 {
  margin-top: 20px;
  font-size: 40px;
  color: var(--secondary-color);
}
.blog-context .arrow-button {
  padding: 0px;
}
.blog-context .arrow-button > span {
  padding: 0px;
}
.blog-context .arrow-button > span a {
  color: var(--secondary-color);
}
.blog-context > .arrow-button .btn-content {
  background: none;
}
/* end blog section */

/* end about */

/* feedback page */

/* feedback form */

.feedback-container {
  margin: 3rem 0rem 0rem 0rem;
  width: 100%;
  font-family: var(--font-main);
}
.form-container-feedback {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 3rem;
  margin: 3rem 0px;
  background-color: var(--light-primary);
}
.fbheadRow {
  text-align: center;
}
.fbheadRow > h2 {
  font-size: 30px;
  color: var(--primary-color);
}
.fbheadRow small {
  color: var(--text-muted);
}
.form-box {
  flex: 3;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 25px;
  padding: 1.5rem;
}
.infobox {
  border-radius: 25px;
  margin: 0px 2rem;
  flex: 1;
  background-color: var(--primary-color);
}
.form-box form .inputFiledRow {
  /* border: 1px solid red; */
}
.inputFiledRow {
  display: flex;
  justify-content: space-evenly;
  margin: 3rem;
}
.inputFiledRow input,
textarea {
  margin: 0.4rem;
  padding: 0.8rem;
  width: 100%;
  border-radius: 8px;
  color: var(--primary-color);
  background-color: none;
  outline: none;
  border: 1px solid var(--primary-color);
}
.inputFiledRow input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  cursor: pointer;
}
.inputFiledRow input,
textarea::placeholder {
  font-family: var(--font-main);
}
.infoboxhead {
  padding: 3rem;
}
.infobox h2 {
  font-size: 40px;
  color: var(--secondary-color);
}
.chips-messages p {
  width: 90%;
  border-radius: 0px 100px 100px 0px;
  background-color: var(--light-sqaure);
  padding: 0.8rem;
  margin: 1rem 0px;
}
.chips-messages {
  margin: 3rem 0px;
}
/* end feeback form */

/* msg box container */
.msg-information-container {
  font-family: var(--font-main);
  width: 100%;
  position: relative;
  padding: 1rem;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.msgcontainerbox {
  width: 90%;
  background-color: var(--primary-color);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

.msgboxheading h3 {
  font-size: 40px;
  color: var(--secondary-color);
}
.msgboxheading {
  flex: 2;
}
.whiteboxcontainer {
  flex: 3;
  border-radius: 25px;
  padding: 2rem 0px;
  background-color: var(--secondary-color);
}
.whiteboxcontainer p {
  min-width: 150px;
  width: 80%;
  border-radius: 0px 100px 100px 0px;
  background-color: var(--light-primary);
  color: var(--primary-color);
}

.btndiv {
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 3rem;
  width: 80%;
  margin: 1rem auto 0.2rem auto;
  border-radius: 12px;
}

/* end msg box container */

/* end feedback page */

/* contact page */
.contcat-box {
  display: flex;
  justify-content: space-around;
  padding: 5rem;
  align-items: center;
  flex-direction: row;
  align-self: center;
}
.informationContact h2 {
  color: var(--secondary-color);
}
.informationContact p {
  padding: 0;
  color: var(--secondary-color);
}
.informationContact {
  padding: 2rem;
  margin: 2rem 1rem;
  border-radius: 12px;
  width: 100%;
  background-color: var(--primary-color);
}
.address {
  width: 100%;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 1rem;
  transition-duration: 0.7s;
}
.address {
  background-color: var(--primary-color);
}
.address h2 {
  color: var(--secondary-color);
}
.address p {
  padding: 0;
  color: var(--secondary-color);
}

/* end contact page */


/* spinner disbaled */
/* For WebKit browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


/* end spinner disabled */

/* responsive */

@media (max-width: 900px) {
  .main-menu,
  .secondary-menu {
    display: none;
  }
  .menuIcon {
    display: block;
  }
  .navbar {
    justify-content: space-between;
  }
  .icon-logo {
    order: -1;
  }
  .card-mobile-menu {
    display: none;
    background-color: var(--secondary-color);
    border-radius: 12px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    width: 80%;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .image-hero img {
    display: none;
  }
  .registerBtnRow {
    width: 100%;
    padding:0.2rem 1rem;
  }
  .email-service {
    margin: 1rem;
    padding: 1rem;
    border-radius: 16px;
  }
  .email-service h2,
  p {
    padding: 0.2rem;
    width: 100%;
  }
  .btn-container {
    /* border: 1px solid var(--secondary-color); */
    display: flex;
    justify-content: center;
  }
  .users-count > p {
    font-size: 14px;
  }
  .data-count > p {
    font-size: 14px;
  }
  .count-container {
    margin: 4rem 0rem 4rem 0rem;
    padding: 0rem;
  }
  .data-count,
  .users-count {
    width: 30%;
    padding: 2rem 0rem 2rem 0rem;
  }
  .users-count > h4 {
    font-size: 20px;
  }
  .data-count > h4 {
    font-size: 20px;
  }
  .steps-container h4 {
    font-size: 18px;
  }
  .steps-container {
    margin: 2rem 0px 1rem 0px;
    width: 95%;
    padding: 2rem;
  }
  .steps-container:nth-child(even) {
    align-self: center;
    border-radius: 12px;
  }

  .steps-container:nth-child(odd) {
    align-self: center;
    border-radius: 12px;
  }
  .video-list {
    flex-direction: column;
    margin-bottom: 8rem;
  }
  .video-link {
    width: 100%;
    margin-top: 0px;
  }
  footer {
    position: relative;
  }

  .image-logo {
    position: absolute;
    top: 0%;
    transform: translate(-50%, -40px);
    left: 50%;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
    transition-duration: 1s;
  }
  .image-logo img {
    width: 50px;
  }
  .bn {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-duration: 1s;
  }
  .ftouch {
    font-size: 24px;
  }
  .row {
    margin-top: 20px;
    text-align: center;
  }
  .footer-links-icon {
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }
  .fhr {
    width: 100%;
    margin-bottom: 20px;
  }
  .ffcon {
    display: block;
    width: 100%;
    padding: 0px;
  }
  .flinks {
    width: 100%;
    text-align: center;
  }
  .flinks a {
    margin: 10px;
  }
  .fsocial {
    margin-top: 20px;
    text-align: center;
  }

  /* service page */

  .containerService {
    position: relative;
    width: 100%;
    height: 25vh;
    background-color: var(--primary-color);
    border-radius: 0px 0px 25px 25px;
  }
  /* .newHero{

  border: 1px solid red;
  position: relative;
  width: 100%;
  height: 100vh;
} */
  /* end service page */

  /* start pricing */

  .pricing-plan-container {
    flex-direction: column;
  }
  .text-get-plan {
    text-align: center;
    padding: 1rem;
  }
  .text-get-plan > .arrow-button {
    margin: auto;
  }
  .plans-card {
    position: relative;
    margin-left: 1rem;
    width: calc(100% / 3 - 1rem);
    min-width: 250px;
    border-radius: 25px;
    padding: 1rem;
    background-color: var(--primary-color);
  }
  .slider-container {
    padding: 0rem;
    position: relative;
    overflow: hidden;
  }
  .slides-inner-container {
    margin-top: 2rem;
    padding: 0;
  }
  .text-get-plan h2 {
    font-size: 35px;
  }
  .pricing-container-details {
    padding: 0;
  }
  .image-details img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
  }
  .pricing-text-container {
    padding: 0rem 2rem 2rem 2rem;
  }
  .details-container:nth-child(even) {
    flex-direction: column;
  }
  .details-container:nth-child(odd) {
    flex-direction: column;
  }
  /* end pricing */

  /* about page */

  .main-about-container {
    text-align: center;
    padding: 0.5rem;
  }
  .main-about-container p {
    padding: 0.3rem;
    margin: 0.4rem auto;
    text-align: center;
  }

  /* ees block */

  .ees-block {
    transition-duration: 0.7s;
    flex-direction: column;
  }
  .ees {
    margin: 1rem 0rem;
  }

  /* end ees block */

  /* content about block */

  .content-about {
    padding: 0.4rem 2rem;
  }

  /* end content about block */

  /* blog section */
  .flex-blog {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    flex-direction: column-reverse;
    /* align-items: center; */
  }
  .blog-section {
    padding: 0.8rem;
  }
  .cardBlog {
    width: 100%;
  }
  .blog-list {
    padding: 1rem;
  }
  .flex-blog {
    flex-direction: column-reverse;
    align-items: center;
  }
  .blog-context .arrow-button {
    display: none;
  }
  .blog-context {
    margin-top: 1rem;
    text-align: center;
  }
  /* end blog section */

  /* end about page */

  /* feedback page */

  /* feedback form */

  .form-container-feedback {
    flex-direction: column-reverse;
    padding: 0.4rem;
  }
  .infoboxhead {
    padding: 1rem 0.8rem;
  }
  .infobox h2 {
    text-align: center;
    font-size: 24px;
  }
  .infobox {
    width: 100%;
    border-radius: 12px;
    margin: 1rem 0.2rem;
  }
  .inputFiledRow {
    margin: 0px;
    flex-wrap: wrap;
  }
  .form-box {
    margin-bottom: 1rem;
    border-radius: 12px;
  }
  .chips-messages {
    display: none;
  }
  /* end feedback form */

  .msgcontainerbox {
    padding: 1rem;
    flex-direction: column;
  }
  .msgboxheading h3 {
    font-size: 24px;
  }
  .whiteboxcontainer {
    margin-top: 2rem;
    width: 100%;
  }
  .whiteboxcontainer p {
    padding: 0.8rem;
    font-size: 12px;
  }
  /* end feedback page */

  /* contact page */

  .contcat-box {
    padding: 0rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .informationContact {
    margin: 1rem 1rem 0rem 1rem;
  }
  .address {
    margin: 1rem 1rem 0rem 1rem;
  }
  /* end contact page */
}

@media (min-width: 900px) {
  .registerBtnRow {
    width: 40%;
    padding:1rem;
  }
}