:root {
  --primary-color: #F9C265;
  --secondary-color: #212529;
  --text-color: #1C1715;
  --text2-color: #A29E95;
  --background-color: #fff;
  --background-color2: #FDF6E4;
  --font-family: "Inter", sans-serif;
  font-size: 24px;
}

/* Sidebar hidden by default */
.sidebar {
  position: fixed;
  top: 0;
  right: 0px;
  width: 400px;
  height: 100%;
  background: var(--secondary-color);
  color: var(--primary-color);
  line-height: 2rem;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

/* Sidebar visible */
.sidebar.active {
  right: 0;
}

/* Customize button style */
.customize_btn {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1001;
  background: var(--background-color);
  top: 450px;
  right: 20px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  gap: 10px;
  font-size: 16px;
  color: var(--text-color);
  transition: background-color 0.3s ease;
  writing-mode: sideways-lr;
}
.customize_btn:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}
.customize_btn i {
  font-size: 24px;
}
.customize_btn span {
  font-weight: bold;
}
.customize_btn:focus {
  outline: none;
}

/* Close (X) button in sidebar */
.close_btn {
  background: none;
  border: none;
  font-size: 48px;
  cursor: pointer;
  float: right;
  color: red;
}

nav {
  background-color: var(--primary-color);
  padding: 30px 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
nav ul li {
  display: inline;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
}
nav ul li a:hover {
  color: var(--primary-color);
}
nav .nav_logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
nav .nav_logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
nav .nav_logo p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-color);
  font-family: latino;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

div.nav_mobile {
  display: none;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
}

button.login_btn {
  background-color: transparent;
  color: var(--text-color);
  padding: 8px 16px;
  font-weight: 400;
  font-size: 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
button.login_btn a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
}
button.login_btn:hover {
  background-color: var(--primary-color);
  transition: 0.2s ease-in-out;
}
button.login_btn:hover a {
  color: var(--background-color);
  transition: 0.2s ease-in-out;
}
button.signup_btn {
  background-color: var(--text-color);
  padding: 8px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 400;
  font-size: 24px;
}
button.signup_btn a {
  color: var(--background-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
}
button.signup_btn:hover {
  background-color: var(--primary-color);
  transition: 0.2s ease-in-out;
}
button.signup_btn:hover a {
  color: var(--text-color);
  transition: 0.2s ease-in-out;
}

@media (max-width: 768px) {
  div.nav_mobile {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
  }
  ul.nav_list {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    background-color: var(--secondary-color);
    padding: 20px;
    gap: 10px;
  }
  ul.nav_list li {
    text-align: center;
    width: 100%;
  }
  ul.nav_list li a {
    color: var(--primary-color);
    display: block;
    padding: 10px 0;
  }
}
.nav_list.active {
  display: flex;
}

#header {
  background-color: white;
  padding: 100px 0px 0px;
  /* --- Responsive Breakpoints --- */
  /* Tablets and below */
  /* Mobile */
}
#header .header_head {
  width: calc(50% - 150px);
  text-align: center;
}
#header .header_head h1 {
  font-size: 3.6rem;
  font-weight: 600;
  width: 100%;
  color: var(--text-color);
}
#header .header_head h1 span.highlight_span {
  display: inline-block;
  background-color: var(--text-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  line-height: 1;
}
#header .enrollnow {
  max-width: calc(50% - 150px);
  text-align: left;
  font-size: 1rem;
}
#header .enrollnow button {
  background-color: transparent;
  color: var(--text-color);
  font-weight: 400;
  font-size: 24px;
  border: solid 2px var(--text-color);
  border-radius: 999px;
  width: 250px;
  height: 70px;
}
#header .enrollnow button a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
}
#header .enrollnow button:hover {
  background-color: #ca6e04;
  transition: 0.2s ease-in-out;
}
#header .enrollnow button:hover a {
  color: #fff;
  transition: 0.2s ease-in-out;
}
#header .header_m {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0px 100px;
  color: var(--text-color);
  gap: 20px;
  flex-shrink: 0;
}
#header .header_m .header_image {
  width: 100%;
}
#header .header_m .header_image img {
  width: 100%;
  height: auto;
}
#header .stats-bar {
  display: flex;
  justify-content: center;
  padding: 100px 0;
  background-color: var(--background-color);
  font-family: "Gill Sans", sans-serif;
}
#header .stats-bar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 80px;
  flex-wrap: wrap;
}
#header .stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 20px;
}
#header .stats-bar .stat-item .stat-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--text-color);
}
#header .stats-bar .stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-top: 5px;
}
#header .stats-bar .stat-item:not(:first-child) {
  padding-left: 80px;
  border-left: 1px solid var(--primary-color);
}
@media (max-width: 992px) {
  #header .header_head,
  #header .enrollnow {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  #header .header_m {
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  #header .enrollnow button {
    width: 200px;
    height: 60px;
    font-size: 20px;
  }
  #header .enrollnow button a {
    font-size: 20px;
  }
  #header .stats-bar ul {
    gap: 40px;
  }
  #header .stats-bar .stat-item:not(:first-child) {
    padding-left: 40px;
  }
}
@media (max-width: 576px) {
  #header {
    padding: 80px 0 0;
  }
  #header .header_head h1 {
    font-size: 2rem;
  }
  #header .enrollnow button {
    width: 180px;
    height: 50px;
    font-size: 18px;
  }
  #header .enrollnow button a {
    font-size: 18px;
  }
  #header .stats-bar {
    padding: 50px 0;
  }
  #header .stats-bar ul {
    flex-direction: column;
    gap: 20px;
  }
  #header .stats-bar .stat-item:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
}

section#advertisment_section {
  background-color: var(--background-color2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 100px;
  gap: 40px;
  /* --- Responsive --- */
  /* Tablet */
  /* Mobile */
}
section#advertisment_section div#advertisment_image {
  width: calc(50% - 100px);
  height: 100%;
}
section#advertisment_section div#advertisment_image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
section#advertisment_section div#advertisment_text {
  width: calc(40% - 100px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
section#advertisment_section div#advertisment_text h2 {
  color: var(--text-color);
  font-size: 3rem;
  text-align: left;
}
section#advertisment_section div#advertisment_text h2 span {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.4rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid var(--secondary-color);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, "Times New Roman", Times, serif;
}
section#advertisment_section div#advertisment_text p {
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  color: var(--text2-color);
}
@media (max-width: 992px) {
  section#advertisment_section {
    padding: 30px 40px;
  }
  section#advertisment_section div#advertisment_image,
  section#advertisment_section div#advertisment_text {
    width: 100%;
    max-width: 100%;
  }
  section#advertisment_section div#advertisment_text {
    align-items: center;
    text-align: center;
  }
  section#advertisment_section div#advertisment_text h2 {
    font-size: 2.4rem;
    text-align: center;
  }
  section#advertisment_section div#advertisment_text p {
    text-align: center;
  }
}
@media (max-width: 576px) {
  section#advertisment_section {
    padding: 20px;
  }
  section#advertisment_section div#advertisment_text {
    gap: 15px;
  }
  section#advertisment_section div#advertisment_text h2 {
    font-size: 1.8rem;
  }
  section#advertisment_section div#advertisment_text h2 span {
    font-size: 1rem;
    padding: 0.3rem 1rem;
  }
  section#advertisment_section div#advertisment_text p {
    font-size: 0.9rem;
  }
}

section#features {
  background-color: var(--background-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 5%;
  gap: 30px;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
  /* --- Responsive Styles --- */
  /* Tablet */
  /* Mobile */
}
section#features #features_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
  background-color: var(--secondary-color);
  color: var(--background-color);
  padding: 80px 60px;
  border-radius: 15px;
  flex-wrap: nowrap;
  width: calc(60% - 200px);
  min-height: 450px;
  box-shadow: 0 10px 25px rgb(0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section#features #features_head:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--text-color);
}
section#features #features_head h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: --var(--background-color);
  max-width: 60%;
}
section#features #features_head h2 #features_head_Features {
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--primary-color);
}
section#features #features_head a {
  text-decoration: none;
  margin-top: auto;
}
section#features #features_head a button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
section#features #features_head a button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px var(--text-color);
}
section#features .features_card {
  background-color: var(--background-color);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgb(0, 0, 0);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: calc(35% - 150px);
  min-height: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section#features .features_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--text-color);
}
section#features .features_card img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
section#features .features_card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: -var(--secondary-color);
  margin: 0;
}
section#features .features_card p {
  font-size: 1rem;
  color: -var(--secondary-color);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  section#features {
    flex-direction: column;
  }
  section#features #features_head,
  section#features .features_card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
  section#features #features_head {
    align-items: center;
    text-align: center;
  }
  section#features #features_head h2 {
    max-width: 100%;
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  section#features {
    padding: 50px 5%;
  }
  section#features #features_head {
    padding: 40px 20px;
    gap: 30px;
  }
  section#features #features_head h2 {
    font-size: 1.6rem;
  }
  section#features #features_head a button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  section#features .features_card {
    padding: 20px;
  }
  section#features .features_card img {
    width: 80px;
  }
  section#features .features_card h3 {
    font-size: 1.2rem;
  }
  section#features .features_card p {
    font-size: 0.9rem;
  }
}

#courses {
  padding: 80px 100px;
  background-color: var(--secondary-color);
  /* --- Responsive --- */
  /* Tablet: 2 cards per row */
  /* Mobile: 1 card per row */
}
#courses h2 {
  color: var(--background-color);
  font-size: 2.6rem;
  text-align: center;
  margin: 20px 0px 80px;
  font-weight: 600;
}
#courses h2 span {
  display: inline-block;
  color: var(--primary-color);
  padding: 0.4rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid var(--primary-color);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, "Times New Roman", Times, serif;
}
#courses .courses_cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  font-family: "Poppins", sans-serif;
}
#courses .courses_cards .course_card {
  background-color: var(--background-color);
  border-radius: 15px;
  padding: 20px;
  width: calc(33.33% - 40px);
  box-shadow: 0 10px 25px var(--secondary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#courses .courses_cards .course_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--secondary-color);
}
#courses .courses_cards .course_card figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
#courses .courses_cards .course_card div.course_rec {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
#courses .courses_cards .course_card div.course_rec p {
  display: inline-block;
  font-size: 1rem;
  color: var(--text2-color);
  margin-top: 10px;
}
#courses .courses_cards .course_card div.course_rec img {
  display: inline-block;
  width: 20px;
}
#courses .courses_cards .course_card h3 {
  font-size: 1.4rem;
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}
#courses .courses_cards .course_card a {
  display: inline-block;
  color: var(text-color);
  padding: 0.8rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid var(--secondary-color);
  line-height: 1;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
#courses .courses_cards .course_card a:hover {
  background-color: var(--primary-color);
}
#courses .courses_cards .course_card a.second_button {
  display: inline-block;
  background: var(--primary-color);
  color: var(text-color);
  padding: 0.8rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid var(--text-color);
  line-height: 1;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
#courses .courses_cards .course_card a.second_button:hover {
  background-color: var(--text-color);
  color: var(--primary-color);
}
@media (max-width: 992px) {
  #courses {
    padding: 60px 40px;
  }
  #courses .courses_cards .course_card {
    width: calc(50% - 20px);
    min-height: auto;
  }
}
@media (max-width: 576px) {
  #courses {
    padding: 40px 20px;
  }
  #courses h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  #courses .courses_cards {
    gap: 20px;
  }
  #courses .courses_cards .course_card {
    width: 100%;
    padding: 15px;
  }
  #courses .courses_cards .course_card h3 {
    font-size: 1.2rem;
  }
  #courses .courses_cards .course_card a,
  #courses .courses_cards .course_card a.second_button {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

#steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 100px 60px;
  background-color: var(--background-color);
  /* Tablet adjustments */
  /* Mobile adjustments */
  /* Small mobile adjustments */
}
#steps div#steps_content {
  width: calc(50% - 150px);
}
#steps div#steps_content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  line-height: 3.4rem;
}
#steps div#steps_content h2 span {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.4rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid var(--secondary-color);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, "Times New Roman", Times, serif;
}
#steps div#steps_content p {
  padding: 20px 0;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text2-color);
}
#steps div#steps_content div.steps_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
#steps div#steps_content div.steps_list .steps_list_item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  font-size: 1.2rem;
  color: var(--text-color);
}
#steps div#steps_content div.steps_list .steps_list_item img {
  display: inline-block;
  width: 30px;
  height: 30px;
}
#steps div#steps_content div.steps_list .steps_list_item p {
  margin: 0;
  display: inline-block;
}
#steps div#steps_image {
  width: calc(50% - 150px);
  height: 100%;
}
#steps div#steps_image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 992px) {
  #steps {
    padding: 20px 40px;
  }
  #steps div#steps_content {
    width: 50%;
  }
  #steps div#steps_content h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  #steps div#steps_content p {
    font-size: 0.95rem;
  }
  #steps div#steps_image {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #steps {
    flex-direction: column;
    padding: 20px;
  }
  #steps div#steps_content,
  #steps div#steps_image {
    width: 100%;
  }
  #steps div#steps_content {
    order: 2;
    text-align: center;
  }
  #steps div#steps_content .steps_list {
    align-items: center;
  }
  #steps div#steps_content .steps_list .steps_list_item {
    gap: 10px;
    font-size: 1rem;
  }
  #steps div#steps_content .steps_list .steps_list_item img {
    width: 24px;
    height: 24px;
  }
  #steps div#steps_image {
    order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  #steps div#steps_content h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  #steps div#steps_content p {
    font-size: 0.9rem;
  }
}

#order {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  position: relative;
  margin: -100px auto -180px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 40px 60px;
  gap: 40px;
  max-width: 1350px;
  flex-wrap: wrap;
  z-index: 10;
  /* Tablet adjustments */
  /* Mobile adjustments */
}
#order #order_image {
  width: 340px;
  flex-shrink: 0;
}
#order #order_image img {
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 16px;
}
#order #order_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 0;
}
#order #order_content h2 {
  font-size: 2.4rem;
  color: var(--secondary-color);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
#order #order_content h2 span {
  display: inline-block;
  color: var(--secondary-color);
  padding: 0.4rem 1.4rem;
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, "Times New Roman", Times, serif;
}
#order #order_content p {
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 70%;
}
#order #order_content a {
  text-decoration: none;
}
#order #order_content a button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 9999px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 200;
  cursor: pointer;
  box-shadow: 0 5px 15px var(--secondary-color);
  display: flex;
  align-items: center;
  transition: background 0.2s, transform 0.2s;
}
#order #order_content a button:hover {
  background: var(--primary-color);
  color: var(--background-color);
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  #order {
    margin: -50px auto -100px;
    padding: 30px 40px;
    gap: 30px;
  }
  #order #order_image {
    width: 280px;
  }
  #order #order_content p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #order {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 40px;
    padding: 30px 20px;
  }
  #order #order_image {
    width: 100%;
    max-width: 300px;
  }
  #order #order_content {
    align-items: center;
  }
  #order #order_content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  #order #order_content p {
    max-width: 100%;
    font-size: 0.95rem;
  }
}

#app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color2);
  padding: 260px 100px 120px;
  gap: 30px;
}

#app h2 {
  color: var(--text-color);
  font-size: 2.2rem;
  text-align: center;
  max-width: calc(35% - 100px);
  margin-bottom: 30px;
}

#app h2 span {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.4rem 1.4rem;
  border-radius: 9999px;
  border: 2px solid var(--secondary-color);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Google Play Button */
@font-face {
  font-family: "fontfutura";
  src: url("https://fonts.googleapis.com/css?family=Open+Sans") format("ttf");
  font-weight: normal;
  font-style: normal;
}
a.btn-google {
  color: var(--background-color);
}

.btn {
  padding: 10px 16px;
  margin: 5px;
  font-size: 24px;
  line-height: 1.3333333;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  width: 200px;
  height: 80px;
  background: transparent;
}

.btn:active:focus, .btn:focus {
  outline: 0;
}

.btn:focus, .btn:hover {
  color: var(--secondary-color);
  text-decoration: none;
  outline: 0;
}

.btn:active {
  outline: 0;
  box-shadow: inset 0 3px 5px var(--secondary-color);
}

.btn-google {
  color: var(--background-color);
  background-color: var(--secondary-color);
  border-color: var(--text-color);
  padding: 28px 16px 5px 40px;
  position: relative;
  font-family: fontfutura;
  font-weight: 600;
}

.btn-google:focus {
  color: var(--background-color);
  background-color: var(--secondary-color);
  border-color: var(--text-color);
}

.btn-google:active,
.btn-google:hover {
  color: var(--background-color);
  background-color: var(--secondary-color);
  border-color: var(--text-color);
}

.btn-google:before {
  content: "";
  background-image: url(https://4.bp.blogspot.com/-52U3eP2JDM4/WSkIT1vbUxI/AAAAAAAArQA/iF1BeARv2To-2FGQU7V6UbNPivuv_lccACLcB/s30/nexus2cee_ic_launcher_play_store_new-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -15px;
}

.btn-google:after {
  content: "GET IT ON";
  position: absolute;
  top: 10px;
  left: 60px;
  font-size: 14px;
  font-weight: 400;
}

/* Apple Store Button */
.btn-apple {
  color: var(--background-color);
  background-color: var(--secondary-color);
  border-color: var(--text-color);
  padding: 28px 16px 5px 40px;
  position: relative;
  font-family: fontfutura;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 24px;
  line-height: 1.3333333;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-apple:focus {
  color: var(--background-color);
  background-color: var(--secondary-color);
  border-color: var(--text-color);
}

.btn-apple:active,
.btn-apple:hover {
  color: var(--background-color);
  background-color: var(--secondary-color);
  border-color: var(--text-color);
}

.btn-apple:before {
  content: "";
  background-image: url("../photos/apple-16.ico");
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -15px;
}

.btn-apple:after {
  content: "DOWNLOAD ON";
  position: absolute;
  top: 10px;
  left: 60px;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  #app {
    padding: 20px 20px;
  }
  #app h2 {
    font-size: 1.8rem;
    max-width: 100%;
  }
  .btn {
    width: 100%;
    height: auto;
    font-size: 18px;
  }
  .btn-google, .btn-apple {
    padding: 20px 10px;
  }
}
footer {
  margin: 0 auto;
  background-color: var(--secondary-color);
  position: relative;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 40px 40px;
  z-index: 10;
  width: 70%;
  min-width: 320px;
  min-height: 30vh;
  color: var(--background-color2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 40px;
}
footer footer {
  flex-shrink: 0;
}
footer .main_footer {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 100px;
  font-family: "Lato", sans-serif;
}
footer .main_footer #footer_top_left_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
}
footer .main_footer #footer_top_left_content .idn {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 18px;
}
footer .main_footer #footer_top_left_content .idn img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}
footer .main_footer #footer_top_left_content .idn h2 {
  font-size: 1.4rem;
  color: var(--text2-color);
  font-weight: 700;
  margin: 0 0px 10px 0px;
}
footer .main_footer #footer_top_left_content p {
  width: 300px;
  font-size: 0.8rem;
  color: var(--text2-color);
  line-height: 1.5;
}
footer .main_footer .footer_lists {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .main_footer .footer_lists h3 {
  font-size: 1.2rem;
  color: var(--background-color);
  margin-bottom: 10px;
}
footer .main_footer .footer_lists ul {
  list-style: none;
}
footer .main_footer .footer_lists ul :first-child {
  margin-top: 40px;
}
footer .main_footer .footer_lists ul li {
  font-size: 0.9rem;
  color: var(--text2-color);
  margin-bottom: 5px;
  padding: 20px 0;
}
footer .main_footer .footer_lists ul li a {
  text-decoration: none;
  color: var(--text2-color);
}
footer .main_footer .footer_lists ul li a:hover {
  color: var(--background-color);
}

.bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text2-color);
}
.bottom #copyright {
  flex: 1;
  text-align: left;
  color: var(--background-color);
}
.bottom #terms {
  flex: 1;
  text-align: right;
}
.bottom #terms a {
  color: var(--text2-color);
  text-decoration: none;
}
.bottom #terms a:hover {
  color: var(--background-color);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--background-color2);
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
}

p {
  line-height: 1.6;
}

/*# sourceMappingURL=main.css.map */
