* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --max-width: 1728px;
  --min-width: 1440px;
  --primary-color: #524CE4;
  --seconder-color: #C30000;
  --normal-font-size: 16px;
  --large-font-size: 18px;
  --m-heading-size: 24px;
  --heading-size: 28px;
  --white: #ffffff;
  --black: #000000;
  --normal-font-family: 'DM Sans', sans-serif;
  --heading-font-family: 'Poppins', sans-serif;
  --light-font-weight: 400;
  --bold--font-weight: 700;
}

body {
  overflow-x: hidden;
  font-family: var(--normal-font-family);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
}

p {
  font-family: var(--normal-font-family);

}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="file"]::-webkit-file-upload-button {
  display: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input,
textarea,
button,
select {
  font-family: var(--normal-font-family);
}

.d-none {
  display: none;
}

a {
  text-decoration: none;
}

button {
  border: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  font-family: var(--normal-font-family);
}

.pre-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--min-width);
  font-family: var(--normal-font-family);
}

/* section */

.section_content {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.content_text h6 {
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: capitalize;
}

.content_text h2 {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: 40px;
  font-weight: 600;
  line-height: 106.439%;
  text-transform: uppercase;
}

.content_text p {
  color: #424242;
  text-align: justify;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 136%;
  padding-top: 12px;
}

.app_common_banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 378px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 500px) {
  .content_text h2 {
    font-size: 22px;
  }
}

@media (max-width: 1440px) {
  .pre-container {
    max-width: 1200px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .section_content {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  :root {

    --normal-font-size: 14px;
    --large-font-size: 16px;
    --heading-size: 24px;
    --m-heading-size: 20px;
  }
}

.book-session-box {
  position: fixed;
  bottom: 100px;
  left: -83px;
  color: white;
  z-index: 9999;
  transform: rotate(-90deg);
  display: inline-flex;
  padding: 11px 48px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0 0 16px 16px;
  background: #524CE4;
  box-shadow: 0 71px 80px 0 rgba(0, 0, 0, 0.11),
    0 29.662px 33.422px 0 rgba(0, 0, 0, 0.08),
    0 15.859px 17.869px 0 rgba(0, 0, 0, 0.07),
    0 8.89px 10.017px 0 rgba(0, 0, 0, 0.05),
    0 4.722px 5.32px 0 rgba(0, 0, 0, 0.04),
    0 1.965px 2.214px 0 rgba(0, 0, 0, 0.03);
}

.book-session-box a {
  color: white;
  text-decoration: none;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 600;
}

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: white;
}

.floating-contact .call-btn,
.floating-contact .whatsapp-btn {
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 500px) {
  .book-session-box {
    position: fixed;
    bottom: 70px;
    left: -51px;
    color: white;
    z-index: 9999;
    transform: rotate(-90deg);
    padding: 11px 20px;
    border-radius: 0 0 16px 16px;
  }
  .book-session-box a{
    font-size: 14px;
  }
}