* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
  /* perspective: 10em; */
  /* transform-style: preserve-3d; */
  overflow: visible;
}

svg { 
  height: 1;
  width: 1;
}

ul {
  margin: 0;
  padding: 0;
  list-style-position: inside; /* or outside depending on what you want */
}
li {
  margin: 0;
  padding: 0;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    /* height: 100vh;  */
    overflow: visible;
    /* background-image: linear-gradient(to right , rgba(11, 9, 10, 1.0) 0%, rgba(19, 18, 21, 0.8) 30%, rgba(22, 26, 29, 0.65)), url("/assets/img/hero_1920.jpg"); */
    background-size: cover;
    background-color: rgba(19, 18, 21, 1.0);
    color: white;
}

a {
  text-decoration: none;
  color: white;
}

header .titles {
  position: relative;
  /* height: 100%;
  width: 100%; */
  flex: 1;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 101;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	height: auto;
  object-fit: contain;
  overflow-clip-margin: content-box;
  overflow: clip;
}

header .title_container {
  width: 70%;
  /* flex: 2; */
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .title {
  margin-inline: 30px;
  margin-bottom: 3rem;
  font-size: 7vw;
  font-weight: 600;
  flex: 1;
  color: white;
}

header .chat {
  font-size: 2vw;
  border: 3px solid white;
  padding: 8px 24px;
}

#my-avatar {
  font-size: 80px;
  flex: 1;
}

nav {
  position: relative;
  overflow: visible;
  top: 0;
  color: white;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 500;
  width: 100%;
  height: 70px;
  transition: all 0.5s ease-out;
}

.logo-container {
  display: flex;
  justify-content: space-between;
}

.logo {
  padding: 10px 10px;
  display: flex;
  align-items: center;
}

.logo img {
  background-color: white;
  height: 50px;
  width: 50px;
}

/* The burger and close icons */
.menu-open, .menu-close {
  padding: 10px 20px;
}

.menu {
  display: flex;
  flex: 1;
  justify-content: end;
  text-align: center;
}

.menu-item {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.menu-item:hover {
  background-color: black;
  border-radius: 20px;
}

.approach-spacer {
  height: 300vh;
  background-color: #b1376c;
}

/* services section start */
.reviews_section {
  margin: 3rem 0 3rem 0;
  background-color: white;
  display: grid;
  justify-items: center;
  font-weight: 300;
  color: #333;
}

.reviews_section img {
  width: 200px;
  height: 150px;
}
.reviews_section_container {
  width: 100%;
}

.reviews_heading{
  font-size: 3em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;  
}

.reviews {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, 320px); */
  grid-template-columns: repeat(1, min(100%, 350px));
  gap: 2.75rem;
  justify-content: center;
  align-items: start;
}


/* 2 columns on medium screens */
@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(2, min(100%, 350px));
  }
}

/* 3 columns on large screens */
@media (min-width: 1024px) {
  .reviews {
    grid-template-columns: repeat(3, min(100%, 350px));
  }
}

.review {
  display: grid;
  gap: 1.25rem 1.25rem;
  margin: 1.25rem 1.25rem;
  /* border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px; */
}

.review_ribbon {
  height: 3rem;
  width: 3rem;
  justify-self: center;
  margin: auto;
}

.review_header {
  font-size: 1.5rem;
  justify-self: center;
  text-align: center;
}

.review_content {
  font-size: 1.0rem;
  line-height: 1.6;
}

.reviews_section .icon {
  text-align: center;
}

.reviews_section .bold {
  font-weight: 500;
}
/* services section end */

/* faq section start*/
.faq_section {
  color: #eee;
  background-color: rgba(19, 18, 21, 1.0);
  padding: 3rem 2.5rem;
  font-weight: 300;
}

.faq_container {
  max-width: 62.5rem;
  margin: 0 auto;
}

.faq_title{
  font-size: 3em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faqs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(300px, 40%), 1fr));
  justify-content: space-around;
  column-gap: 1.875rem;
  row-gap: 0.625rem
}

.faq {
  padding-bottom: 1.25rem;
}

.faq_q {
  font-size: 1.875rem;
  line-height: 1.3;
}

.faq_a {
  font-size: 1.0rem;
  margin-top: 0.625rem;
  transition: all 2s ease-out;
  line-height: 1.6;
}
/* faq section end */

/* process section start */
.process_container {
  /* margin: 7.5rem 0rem 7.5rem 0rem; */
  padding: 3rem 2.5rem;
  counter-reset: steps; 
  font-weight: 300;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.process_header {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}

.process_heading_text {
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1.25rem 0;
  /* max-width: 75rem;  */
  margin: 0 auto;   
  text-align: center;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 2.75rem;
  justify-content: center;
}

.step_content {
  display: flex;
  flex-direction: column;
  background-color: rgb(245, 243, 244);
}

.process_container img {
  width: 200px;
  height: 200px;
  margin-right: 1.25rem;
}

.process_container .text_container {
  width: 300px;
  /* display: flex;
  flex-direction: column; */
  padding: 10px;
  line-height: 1.6;
}

.process_container .title {
  font-size: 1.25rem;
  font-weight: 500;
}

.process_container .text {
  font-size: 1.0rem;
}

@media only screen and (max-width: 54em) {
  .process_container img {
      margin-right: 1.25rem;
  }

  .process_container .text_container {
      width: 300px;
  }
}

@media only screen and (max-width: 33em) {
  .process_container img {
      margin-right: 1.25rem;
  }

  .process_container .text_container {
      width: 300px;
  }
}
/* process section end */

/* cases section start */
.cases_section {
  color: #eee;
  background-color: rgba(19, 18, 21, 1.0);
  padding: 3rem 2.5rem;
  font-weight: 300;
}

.cases_container {
  max-width: 62.5rem;
  margin: 0 auto;
}

.cases_title{
  font-size: 3em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3.0rem;
}

.case_title {
  font-size: 2em;
  font-weight: 400;
  /* text-align: center; */
  margin-bottom: 1.5rem;
  display: flex;
}

.case_title img {
  height: 1em;
  width: 1em;
  margin-right: 10px;
}

.case_section_title {
  font-size: 1.25em;
  font-weight: 400;
  /* text-align: center; */
  margin-top: 1.0rem;
  margin-bottom: 1.0rem;
  display: flex;
}

.case_text {
  font-size: 1.0rem;
  line-height: 1.6;
}

.cases-scroll-container {
  overflow: auto;
  scrollbar-color: white;
  white-space: nowrap;
  padding: 10px;
}

.cases-scroll-container img {
  padding: 10px;
  max-height: 50vh;
}

.case_a {
  text-decoration: underline;

}

.case_app_download {
  margin-bottom: 1.5rem;
}

.case_app_download img {
  width: 135px;
  height: 40px;
}
/* cases section end */

/* about section start */
.about_container {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  padding: 3rem 2.5rem;
  margin: 0 auto;
  font-weight: 300;
}

.about_right {
  /* background-image: url("/assets/img/world-1837416.svg");
  background-size: contain;
  background-repeat: no-repeat; */
}

.about_heading {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 2.0rem;
}

.about_heading_text {
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1.25rem 0;
  /* max-width: 75rem;  */
  margin: 0 auto;   
  text-align: center;
}

.about_details_intro {
  font-size: 1.125rem;
  font-weight: 400;
  /* max-width: 75rem; */
  margin: 0 auto;
  text-align: center;
}

.about_reasons {
  padding: 2rem 0;
  /* max-width: 75rem; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
}

.about_reason {
  background-color: rgba(19, 18, 21, 1.0);
  color: white;
  border-radius: 20px;
  padding: 20px;
}

.about_reason_heading {
  font-size: 1.0rem;
  font-weight: 400;
  padding-bottom: 8px;
  /* border-bottom: 1px solid white; */
}

.about_reason_header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_reason_header img {
  height: 75px;
  width: 75px;
  display: inline-block;
}

.about_reason_text {
  padding-top: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media only screen and (max-width: 75em) {
  .about {
      margin: 0 3rem;
      padding: 1.5rem 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .about {
      margin: 0 3rem;
      padding: 1.5rem 0;
  }
}
/* about section end */

/* contact us section start */
.syllabus-modal {
  height: 100vh;
  /* background: rgba(#333, 0.5); */
  background-color: #333d;
  position: fixed;
  left: 0;
  top: 100vh;
  width: 100vw;
  transition: top 0.4s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.syllabus-modal-open {
  top: 0;
}

.syllabus-container {
  width: min(90vw, 700px);
  height: min(90vh, 700px);
  background: rgba(19, 18, 21, 1.0);
  color: white;
  border-radius: 10px;
  /* overflow: scroll; */
  display: flex;
  flex-direction: column;
  opacity: 0;
  /* Transition duration is required on the parent element as well because when it resets or the transition
  closes then this will be the transition effect for going back to its regular state which is defined here */
  transition-duration: 0.6s;
  transform: scale(0.2);
}

.syllabus-container-open {
  /* This is the transition when opened */
  transition-duration: 0.6s;
  opacity: 1;
  transform: scale(1);
}

.syllabus-header {
  font-size: 32px;
  padding: 20px;
  width: 100%;
  text-align: center;
}

.syllabus-close {
  position: absolute;
  padding: 20px;
  right: 0;
  top: 0;
}

.syllabus-content {
  width: 100%;
  padding: 20px;
  overflow: scroll;
}

.syllabus-spacer {
  padding-left: 20px;
}

#contact-form {
  font-family: 'Roboto', sans-serif;
  /* margin-top: 20px; */
}

@media (max-width: 500px) {
  .syllabus-item  {
    margin: 0;
  }
  .syllabus-spacer {
    padding-left: 10px;
  }
}
/* contact us section end */

footer {
  width: 100%;
  padding: 2.25rem 2.0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: white;
}

#copyright {
  justify-content: flex-end;
  padding-bottom: 15px;
  font-size: 16px;
}

#contact {
  /* align-self: flex-end; */
  padding-bottom: 15px;
  font-size: 16px;
}

#telephone {
  /* align-self: flex-end; */
  padding-bottom: 15px;
  font-size: 16px;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:active {
  color: white;
}

footer a:visited {
  color: white;
}

footer a:hover {
  text-decoration: underline;
}

@media (min-width: 651px) {
  .menu-open, .menu-close {
    display: none;
  }
}

@media (max-width: 805px) {
  nav {
    font-size: 2.55vw;
  }
}

@media (max-width: 650px) {
  /* make the menu into a column but keep it hidden */
  .menu-ss {
    flex-direction: column;
    justify-content: center;
    font-size: 8vw;
    visibility: hidden;
  }
  /* make the nav into a column so that the menu goes underneath it */
  .nav-ss {
    flex-direction: column;
  }

  /* it will be made visible by the javascript function */
  .menu-expand {
    visibility: visible;
  }

  /* The length of the nav will be made full screen with javascript */
  .nav-expand {
    background-color: black;
    height: 100vh;
  }
  
  nav {
    position: absolute;
    height: 20%;
    /* padding: 10px 20px; */
    padding: 0px;
  }

  header .titles {
    position: absolute;
    height: 80%;
    /* position: absolute; */
    /* height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 101; */
  }
  
  .logo {
    padding: 0px 0px 0px 7px;
  }

  .logo img {
    height: 35px;
    width: 35px;
  }

  header .title_container {
    /* flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2; */
  }

  header .title {
    /* font-size: 12vw; */
    /* display: flex; */
    /* justify-content: start; */
    /* margin-top: 70px; */
    /* align-items: start; */
  }

  #my-avatar {
    display: flex;
    justify-content: center;
    align-items: end;
    order: 1;
  }
  #my-avatar img {
    position: relative;
    height: 30vh;
  }
}

@media (max-width: 450px) {
  #my-avatar {
    display: none;
  }
}

/* @media (min-width: 451px) {
  #video2 {
    display: none;
  }
} */
