@font-face {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  margin: 50px auto 50px;
}

h1 {
  font-size: 48px;
  font-weight: bold;
}

h2 {
  font-size: 32px;
  font-weight: bold;
}

@media (max-width: 878px) {
  h2 {
    margin-top: -100px;
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p {
  font-size: 18px;
  font-weight: normal;
}

/* header & navigation section */
header.home-nav {
  background-color: #FEFFFB;
  position: fixed;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  z-index: 5;
  top: 0;
  left: 0;
  margin: 0;
  height: 100px;
  box-shadow: 0px 2px 8px #C0C0C0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
  transition: height 0.3s;
  /* Add a smooth transition effect */
}

.home-nav.normal {
  height: 100px;
  align-items: center;
  /* Center content vertically */
}

.home-nav.shrink {
  height: 80px;
  align-items: flex-start;
  /* Push content to the top */
}

nav ul.home-nav {
  list-style-type: none;
  padding: 0;
  margin: 1em 0 0 3em;
  /* Adjust margin as needed */
  display: flex;
  align-items: center;
  /* Vertically align items */
}

nav ul.home-nav li {
  display: inline-block;
  padding: 0 32px;
  /* Adjust padding as needed */
}

/* Align the "quote" and "talk" buttons to the right */
nav ul.home-nav {
  list-style-type: none;
  padding: 0;
  margin: 1em 0 0 3em;
  /* Adjust margin as needed */
  display: flex;
  align-items: center;
  /* Vertically align items */
}

nav ul.home-nav .actions {
  margin-left: auto;
  /* Push the buttons to the right */
}

nav.home-nav li a {
  color: #313131;
  text-decoration: none;
  font-size: 16px;
}

nav.home-nav li a.quote {
  color: #346cff;
  border: 1px solid #346CFF;
  padding: 16px 16px;
  border-radius: 30px;
  margin-right: 20px;
  /* Adjust as needed */
}

nav.home-nav li a.talk {
  color: #FEFFFB;
  background-color: #346CFF;
  border: 1px solid #346CFF;
  padding: 16px 45px;
  border-radius: 30px;
  margin-right: 4em;
}

/* media query */
@media (max-width: 1319px) {
  nav ul.home-nav li {
    padding: 0 1.5%;
  }

  nav ul.home-nav .quote {
    display: none;
  }
}

@media (max-width: 878px) {
  header.home-nav {
    height: 60px;
    margin: 0;
  }

  nav ul.home-nav li a {
    display: none;
  }

  nav ul.home-nav img {
    display: inline-block;
    position: absolute;
    top: 24px;
    left: 50px;
    height: 5vw;
    min-height: 40px;
  }

  nav ul.home-nav .talk {
    display: flex;
    position: absolute;
    top: 17px;
    right: 0;
  }

  .home-nav.shrink {
    height: 60px;
  }
}

@media (max-width: 768px) {
  header.home-nav {
    max-height: 48px;
  }

  nav.home-nav li a.talk {
    font-size: 0.9em;
    padding: 15px 35px;
  }
}

@media (max-width: 481px) {
  header.home-nav {
    max-width: 481px;
    width: 100%;
    padding: 1em;
    max-height: 35px;
  }

  nav ul.home-nav img {
    display: inline;
    transform: scale(75%);
    left: 25px;
    top: 15px;
  }

  nav.home-nav li a.talk {
    position: fixed;
    z-index: 6;
    right: 0;
    font-size: 0.6em;
    padding: 10px 20px;
  }
}

/* hero section */
.hero {
  position: relative;
  text-align: center;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  align-items: center;
  justify-content: center;
  margin: 80px auto;
  max-height: 70vh;
}

.hero-image img {
  width: 100%;
  /* Set the width to 100% */
  height: auto;
  /* Allow the height to adjust proportionally */
  min-height: 60vh;
  display: block;
  /* Remove any extra spacing below the image */
}

.hero-content {
  position: absolute;
  top: 25%;
  top: 250px;
  left: 0;
  right: 0;
  bottom: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.hero-text {
  font-size: 18px;
  text-align: center;
}

.hero-text span::after {
  content: "Dream Application";
  font-weight: bold;
}

.gradient {
  font-size: 48px;
  background: -webkit-linear-gradient(150deg, #5BA7FC, #346CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

ul.button-list {
  transform: translate(-5%, 0);
}

ul.button-list li {
  list-style: none;
  display: inline-block;
  margin-top: 20px;
}

ul.button-list li a {
  text-decoration: none;
  color: #FEFFFB;
  border-radius: 30px;
  margin: 20px;
}

.button-list li a.talk {
  background-color: #346CFF;
  padding: 16px 45px;
  z-index: 4;
}

.button-list li a.quote {
  border: 1px solid #FEFFFB;
  padding: 16px 16px;
  z-index: 4;
}

/* media query - hero section */
@media (max-width: 1700px) {
  .hero-text span::after {
    font-size: 48px;
    content: "Dream Application";
    white-space: pre;
    font-weight: bold;
  }

  .button-list li a.talk {
    z-index: 4;
  }

  .button-list li a.quote {
    z-index: 4;
  }
}

@media (max-width: 878px) {
  .hero-image img {
    opacity: 0;
  }

  .hero {
    background-image: linear-gradient(90deg, #346CFF, #131A31);
    min-height: 58vh;
  }

  .hero-text p {
    font-size: 14px;
    margin: 0 5%;
  }

  .hero-text h1 {
    font-size: 32px;
    font-weight: bold;
  }

  .hero-text span.gradient::after {
    font-size: 32px;
    content: "Dream \A Application";
    white-space: pre;
    font-weight: bold;
  }
  ul.button-list {
    padding: 0;
  }
  ul.button-list li {
    display: flex;
    flex-direction: column;
  }

  ul.button-list li a {
    margin: 0;
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .hero {
    background-image: linear-gradient(90deg, #346CFF, #131A31);
    min-height: 76vh;
    top: -20px;
  }
}

/* product section - We translate your idea into */
section.product {
  position: relative;
  top: -8vw;
  height: 600px;
  background-color: #FEFFFB;
  width: 85%;
  margin: 2% auto;
  text-align: center;
  padding: 3vw 20px;
  z-index: 2;
  border-radius: 20px;
  /* Rounded corners for the white box */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  /* Add a subtle shadow */
}

h2.product {
  margin-top: 4%;
}

h2.product span {
  color: #346cff;
}

.product div {
  margin: 20px;
}

.product-boxes {
  display: flex;
  justify-content: center;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid;
  border-radius: 5vh;
  font-size: 32px;
  font-weight: bold;
  transition: all ease-in-out 0.4s;
  cursor: pointer;
}

/* product-design */
.box.design span {
  margin-top: 35px;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(50deg, #F2C94C, #EB5757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box.design {
  z-index: 2;
  height: 390px;
  width: 390px;
  background-color: #FEF8F6;
  border-color: #F2C94C;
}

/* product- appdev */
.box.appdev span {
  margin-top: 35px;
  margin-bottom: -10px;
  background: -webkit-linear-gradient(50deg, #6FCF97, #219653);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box.appdev {
  z-index: 2;
  height: 390px;
  width: 390px;
  background-color: #F8FDFA;
  border-color: #6FCF97;
}

/* product- webdev */
.box.webdev span {
  margin-top: 35px;
  margin-bottom: -10px;
  background: -webkit-linear-gradient(50deg, #F9B0A9, #9B51E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box.webdev {
  z-index: 2;
  height: 390px;
  width: 390px;
  background-color: #FBF7FD;
  border-color: #F9B0A9;
}

/* after hover design */
.box.design:hover {
  opacity: 0;
}

.box.appdev:hover {
  opacity: 0;
}

.box.webdev:hover {
  opacity: 0;
}

.product-boxes.after {
  z-index: 1;
  position: relative;
  top: -456px;
  align-items: center;
}

.product-boxes.after img {
  display: none;
}

.product-boxes.after span {
  color: #FEFFFB;
  padding-top: 35px;
}

.product-boxes.after p {
  color: #FEFFFB;
  padding-top: 20px;
  position: relative;
  max-width: 250px;
  height: 196px;
}

.box.design2.after {
  background: linear-gradient(160deg, #F2C94C, #EB5757) padding-box;
  border: 0px;
  height: 398px;
  width: 398px;
}

.box.appdev2.after {
  background: linear-gradient(160deg, #6FCF97, #219653) padding-box;
  border: 0px;
  height: 398px;
  width: 398px;
}

.box.webdev2.after {
  background: linear-gradient(160deg, #F9B0A9, #9B51E0) padding-box;
  border: 0px;
  height: 398px;
  width: 398px;
}

.box.after:hover {
  opacity: 1;
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */

@media (max-width: 470px) {
  section.product {
    padding-bottom: 0;
  }

  div.product-boxes .after {
    min-height: 200px;
    height: fit-content;
  }

  div.product-boxes .after p {
    font-size: 14px;
    top: 0;
  }

  .product-boxes br {
    display: block;
  }

  div.product-boxes.after span {
    margin-top: 5px;
    padding-top: 0;
    position: relative;
    font-size: 16px;
  }
}

@media (max-width: 878px) {
  section.product {
    margin-top: 0;
    padding-top: 0;
    min-height: 820px;
  }

  .product {
    position: relative;
    top: -35px;
  }

  h2.product {
    margin-top: 0;
    font-size: 24px;
  }

  .product-boxes .after {
    max-height: 200px;
  }

  .product-boxes .after span {
    margin-top: 20px;
    padding-top: 0;
    font-size: 18px;
  }

  .product-boxes.after p {
    padding-top: 0;
    font-size: 16px;
  }
}

@media (max-width: 1103px) {
  h2.product {
    margin-top: 0;
  }

  section.product {
    background-color: none;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    height: 820px;
    top: 0;
  }

  section.product div {
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translate(0, 42%);
  }

  br {
    display: none;
  }

  .box span {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    padding-top: 0;
  }

  .box p {
    font-size: 16px;
    font-weight: thin;
    padding: 0 0;
  }

  section .product .box .design {
    display: none;
  }

  .product-boxes .after {
    padding: 20px 10px 10px 0;
    margin-top: 1%;
    z-index: 1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }

  .box.design {
    display: none;
  }

  .box.webdev {
    display: none;
  }

  .box.appdev {
    display: none;
  }

  .box.design2.after {
    height: 200px;
    width: auto;
    min-width: 70vw;
  }

  .box.appdev2.after {
    height: 200px;
    width: auto;
    min-width: 70vw;
  }

  .box.webdev2.after {
    height: 200px;
    width: auto;
    min-width: 70vw;
  }

  .product-boxes.after p {
    max-width: 50vw;
    height: auto;
  }
}

/* expertise section - Our Expertise*/
.expertise {
  position: relative;
  top: -500px;
  left: 0;
  right: 0;
  text-align: center;
  background-color: #F2F4F7;
  height: 600px;
  z-index: 1;
  padding: 0;
}

h2.expertise {
  position: absolute;
  top: 400px;
  margin-top: 50px;
  color: #313131;
  z-index: 1;
}

.expertise div ul.skills {
  text-align: center;
  list-style-type: none;
  background-color: transparent;
  position: relative;
  top: 550px;
  z-index: 2;
  width: auto;
  height: auto;
  margin: 0;
}

div ul.skills li img {
  padding: 1% 3%;
  position: relative;
  left: -20px;
}

.br {
  content: "";
  display: block;
  margin: 0;
}

.br2 {
  display: none;
}

@media (max-width: 1962px) {
  .expertise {
    top: -550px;
  }
}

@media (max-width: 1385px) {
  .expertise {
    top: -650px;
    height: 600px;
  }

  h2.expertise {
    top: 550px;
  }

  .expertise div ul.skills {
    top: 755px;
  }
}

@media (max-width: 1230px) {
  .expertise {
    top: -700px;
  }
}

@media (max-width: 1103px) {
  .expertise {
    top: 0;
    height: 350px;
  }

  h2.expertise {
    top: 10px;
  }

  .expertise div ul.skills {
    top: 125px;
  }

  .expertise div ul.skills img {
    height: 6vw;
  }
}

@media (max-width: 768px) {
  .expertise {
    height: 350px;
  }

  .expertise div ul.skills img {
    height: 8vw;
  }

  .br2 {
    content: "";
    display: block;
    margin: 0;
  }

  .br {
    display: none;
  }
}

@media (max-width: 482px) {
  .expertise {
    height: 280px;
  }
}

/* process section - How We Work */
.process {
  text-align: center;
  background-color: #FEFFFB;
  height: 500px;
  padding: 0;
  margin: 0;
}

h2.process {
  color: #313131;
  padding-top: 50px;
  z-index: 2;
}

div ul.process li {
  display: inline-block;
  position: relative;
  top: -425px;
}

div ul.process {
  z-index: 2;
  background-color: transparent;
  margin-top: 0;
}

div ul.process li {
  margin: 0 1%;
  padding: 0;
}

.br3 {
  content: "";
  display: block;
  margin: 0em;
}

.number {
  background: -webkit-linear-gradient(280deg, #5BA7FC, #346CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1103px) {
  .process {
    height: 450px;
  }

  h2.process {
    margin-top: 50px;
  }

  div ul.process {
    top: -400px;
  }

  .process h3 {
    font-size: 24px;
  }

  .process p {
    font-size: 16px;
  }
}

@media (max-width: 899px) {
  section.process {
    position: relative;
    max-width: 850px;
    width: auto;
    height: max-content;
  }

  ul.process {
    max-height: 500px;
    margin: 0;
  }

  div ul.process li {
    background-color: #FEFFFB;
    display: block;
    margin-bottom: 0;
  }

  div ul.process img {
    transform: rotate(90deg);
  }

  .process .number {
    margin: 25px 0;
  }

  .process h3 {
    margin: -10px 0;
  }

  .process p {
    font-size: 16px;
  }
}

@media (max-width: 878px) {
  section.process {
    height: max-content;
  }
  div ul.process li p {
    font-size: 16px;
  }

  div ul.process li h3 {
    font-size: 18px;
  }
}

/* portfolio section */
.portfolio {
  text-align: center;
  background-color: #FEFFFB;
  z-index: 1;
  position: relative;
  top: 0;
}

h2.portfolio {
  color: #313131;
  padding-bottom: 0;
  margin-bottom: 0;
}

.portfolio div.canva {
  max-height: 950px;
  padding-top: 0;
  margin: 25px 0;
}

.portfolio a img {
  /* transform: scale(80%, 80%); */
  max-width: 80%;
  max-height: max-content;
  padding-bottom: 0;
  margin-bottom: 0;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  /* Add a subtle shadow */
  z-index: 2;
}

@media (max-width: 878px) {
  .portfolio {
    top: 35px;
  }

  .portfolio div.canva {
    margin: 70px 30px 50px;
  }
}

/* value section */
.value {
  max-height: 600px;
  text-align: center;
  justify-content: center;
  max-width: 100%;
}

h2.value {
  color: #313131;
  padding-top: 4%;
}

div ul.value {
  display: flex;
  flex-direction: row;
  list-style: none;
  font-size: 32px;
  font-weight: bold;
  padding-left: 0;
}

div.boxes {
  position: relative;
  top: -5px;
}

div.boxes ul.value li {
  border: 4px solid #346CFF;
  border-radius: 60px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition: all ease-in-out 0.4s;
  z-index: 2;
  margin: 0 2%;
}

/* value - experienced team */
.experienced-team span {
  background: -webkit-linear-gradient(50deg, #346CFF, #1F2128);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: 50px;
}

.boxes .experienced-team {
  height: 390px;
  width: 390px;
  background-color: #FEFFFB;
}

.experienced-team img {
  margin-top: 55px;
}

/* value - client-centric */
.client-centric span {
  background: -webkit-linear-gradient(50deg, #346CFF, #1F2128);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: 50px;
}

span.br5 {
  content: "";
  display: block;
  margin: 0;
}

.boxes .client-centric {
  height: 390px;
  width: 390px;
  background-color: #FEFFFB;
}

/* value - timely-delivery */
.timely-delivery span {
  background: -webkit-linear-gradient(50deg, #346CFF, #1F2128);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: 50px;
}

.boxes .timely-delivery {
  height: 390px;
  width: 390px;
  background-color: #FEFFFB;
}

.timely-delivery img {
  margin-top: 55px;
}

/* value - content */
div.boxes-content {
  position: relative;
  top: -428px;
}

div.boxes-content ul.value {
  padding-left: 0;
}

div.boxes-content ul.value li {
  z-index: 1;
  transition: none;
  border: 0px solid;
  border-radius: 60px;
  margin: 0 2%;
}

.boxes-content .value li span {
  background: -webkit-linear-gradient(50deg, #FEFFFB, #FEFFFB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.et span,
.td span,
.cc span {
  text-align: center;
  position: relative;
  top: 50px;
}

.boxes-content li {
  border: none;
  background: linear-gradient(120deg, #346CFF, #1F2128);
  text-align: center;
  margin: 0;
}

div.boxes-content ul.value li p {
  background: transparent;
  color: #FEFFFB;
  font-size: 0.6em;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  left: 0;
  padding: 60px 30px;
}

.boxes-content .et {
  height: 390px;
  width: 390px;
  /* left: -20px; */
}

.boxes-content .cc {
  height: 390px;
  width: 390px;
}

.boxes-content .td {
  height: 390px;
  width: 390px;
  /* right: -4px; */
}

/* after hover value */
.boxes .experienced-team:hover {
  opacity: 0;
}

.boxes .client-centric:hover {
  opacity: 0;
}

.boxes .timely-delivery:hover {
  opacity: 0;
}

/* media query - value */
@media (max-width: 1385px) {
  .value span {
    font-size: 24px;
  }

  .boxes-content .et {
    left: 1px;
  }

  .boxes-content .td {
    right: 1px;
  }

  span.br5 {
    content: "";
    display: none;
    margin: 0;
  }
}

@media (max-width: 1239px) {
  .value {
    max-height: revert;
  }

  section .value {
    text-align: center;
    align-items: center;
    justify-self: stretch;
  }

  section.value div>*:not(div.boxes) {
    display: flex;
    flex-direction: column;
  }

  div.boxes {
    display: none;
  }

  div.boxes-content {
    position: relative;
    top: 0;
  }

  div.boxes-content ul.value li {
    border-radius: 30px;
    margin: 1% 0;
  }

  .boxes-content ul.value li {
    max-width: revert;
    height: auto;
    width: 66%;
    padding: 20px;
  }

  .boxes-content li p {
    max-width: revert;
  }
}

@media (max-width: 879px) {
  section.value {
    position: relative;
    top: 100px;
  }

  .et span,
  .td span,
  .cc span {
    top: 20px;
    font-size: 18px;
  }

  div.boxes-content ul.value li p {
    font-size: 16px;
    padding: 20px;
  }
}

/* section - consult */
.consult {
  position: relative;
  height: max-content;
  max-width: 100%;
}

.consult img {
  width: 100%;
  /* Set the width to 100% */
  height: auto;
  /* Allow the height to adjust proportionally */
  display: block;
  /* Remove any extra spacing below the image */
  z-index: 1;
}

h2.consult {
  position: absolute;
  top: 15%;
  left: 100px;
  z-index: 2;
  color: #FEFFFB;
}

span.br6 {
  content: "";
  display: block;
  margin: 0;
}

.consult p {
  position: absolute;
  top: 43%;
  left: 100px;
  color: #FEFFFB;
}

.consult .book {
  position: absolute;
  top: 70%;
  left: 100px;
  text-decoration: none;
  color: #FEFFFB;
  border: 1px solid #FEFFFB;
  border-radius: 30px;
  padding: 15px 35px;
  z-index: 4;
}

@media (max-width: 1104px) {
  h2.consult {
    font-size: 1.4em;
  }

  .consult p {
    font-size: 16px;
  }
}

@media (max-width: 879px) {
  section.consult {
    position: relative;
    top: 100px;
  }

  .consult {
    background: linear-gradient(120deg, #346CFF, #1F2128, #1F2128);
    height: 450px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .consult img {
    display: none;
  }

  h2.consult {
    position: relative;
    top: 15%;
    font-size: 1.4em;
    left: 0;
    background: transparent;
    margin: 0;
    height: fit-content;
    max-height: 250px;
  }

  .consult p {
    top: 22%;
    left: 50%;
    transform: translate(-50%, 50%)
  }

  .consult .book {
    padding: 10px 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 50%)
  }
}

@media (max-width: 643px) {
  .consult {
    height: 550px;
  }

  span.br7 {
    content: "";
    display: block;
    margin: 0;
  }

  @media (max-width: 518px) {
    h2.consult {
      top: 15%;
      font-size: 1.2em;
    }
    .consult p {
      top: 26%;
      font-size: 0.9em;
    }
    .consult .book {
      top: 60%;
    }
  }

  /* section - FAQ */
    section.faq {
    background-color: #F2F4F7;
    height: auto;
    width: 100%;
    z-index: 1;
    position: relative;
    top: -50px;
  }
  .faq h2 {
    margin: 50px auto 50px;
    text-align: center;
    background-color: #F2F4F7;
    position: relative;
    top: 50px;
  }
  
  .faq div{
    background-color: #F2F4F7;
    height: 1850px;
    max-height: 2800px;
    height: fit-content;
    padding-bottom: 100px;
  }
  details {
    position: relative;
    top: 50px;
    width: 85%;
    min-height: 5px;
    max-width: 900px;
    padding: 45px 70px 45px 45px;
    margin: 0 auto;
    position: relative;
    font-size: 22px;
    border: 2px solid #346CFF;
    background-color: rgba(52, 108, 255, 0.05);
    border-radius: 15px;
    box-sizing: border-box;
    transition: all .3s;
  }
  
  details + details {
    margin-top: 20px;
  }
  
  details[open] {
    min-height: 50px;
    box-shadow: 2px 2px 20px rgba(0,0,0,.2);
  }
  
  details p {
    color: #313131;
    font-weight: 400;
    font-size: 18px;
    display: none; /* Initially hide the <p> content */
  }
  
  summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
  }
  
  summary:focus {
    outline: none;
  }
  
  summary:focus::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  summary::-webkit-details-marker {
    display: none;
  }
  
  .control-icon {
    transition: .3s ease;
    pointer-events: none;
    margin: 0 15px;
  }
  
  .control-icon-close {
    display: none;
  }
  
  details[open] .control-icon-close {
    display: initial;
    transition: .3s ease;
  }
  
  details[open] .control-icon-expand {
    display: none;
  }
  
  /* Add styles to display the <p> content when <summary> is open */
  details[open] p {
    display: block;
    font-size: 18px;
  }
  @media (max-width: 1103px) {
    details {
      font-size: 24px;
    }
    details[open] p {
      font-size: 16px;
    }
  }
  @media (max-width: 768px) {
    details {
      min-height: 5px;
      padding: 25px 30px 25px 25px;
      font-size: 18px;
      border: 1px solid #346CFF;
    }
    details[open] p {
      font-size: 16px;
    }
  }

/* section - footer */
  .footer {
    display: flex;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FEFFFB;
    box-sizing: border-box;
    /* padding: 15px 5vw; */
    margin-bottom: 0;
  }

  .footer img {
    height: 4vw;
  }

  p.copyright{
    width: auto;
    color: #6B6B6B;
    font-size: 1em;
    margin-top: 10px;
  }

  p.social-media{
    width: auto;
    color: #6B6B6B;
    font-size: 1em;
    position: absolute;
    top: 20px;
    right: 3vw;
    margin-top: 0;
  }

  .consult .book {
    top: 55%;
  }
}

@media (max-width: 518px) {
  h2.consult {
    top: 15%;
    font-size: 1.2em;
  }

  .consult p {
    top: 26%;
    font-size: 0.9em;
  }

  .consult .book {
    top: 60%;
  }
}

/* section - FAQ */
section.faq {
  background-color: #F2F4F7;
  height: auto;
  width: 100%;
  z-index: 1;
  position: relative;
  top: -50px;
}

.faq h2 {
  margin: 50px auto 50px;
  text-align: center;
  background-color: #F2F4F7;
  position: relative;
  top: 50px;
}

.faq div {
  background-color: #F2F4F7;
  height: 1850px;
  max-height: 2800px;
  height: fit-content;
  padding-bottom: 100px;
}

details {
  position: relative;
  top: 50px;
  width: 85%;
  min-height: 5px;
  max-width: 900px;
  padding: 45px 70px 45px 45px;
  margin: 0 auto;
  position: relative;
  font-size: 22px;
  border: 2px solid #346CFF;
  background-color: rgba(52, 108, 255, 0.05);
  border-radius: 15px;
  box-sizing: border-box;
  transition: all .3s;
}

details+details {
  margin-top: 20px;
}

details[open] {
  min-height: 50px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, .2);
}

details p {
  color: #313131;
  font-weight: 400;
  font-size: 18px;
  display: none;
  /* Initially hide the <p> content */
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

summary:focus {
  outline: none;
}

summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

summary::-webkit-details-marker {
  display: none;
}

.control-icon {
  transition: .3s ease;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: .3s ease;
}

details[open] .control-icon-expand {
  display: none;
}

/* Add styles to display the <p> content when <summary> is open */
details[open] p {
  display: block;
  font-size: 18px;
}

@media (max-width: 768px) {
  details {
    min-height: 5px;
    padding: 25px 30px 25px 25px;
    font-size: 18px;
    border: 1px solid #346CFF;
  }

  details[open] p {
    font-size: 16px;
  }
}

/* section - footer */
.footer {
  display: flex;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FEFFFB;
  box-sizing: border-box;
  /* padding: 15px 5vw; */
  margin-bottom: 0;
}

.footer img {
  height: 4vw;
}

p.copyright {
  width: auto;
  color: #6B6B6B;
  font-size: 1em;
  margin-top: 10px;
}

p.social-media {
  width: auto;
  color: #6B6B6B;
  font-size: 1em;
  position: absolute;
  top: 20px;
  right: 3vw;
  margin-top: 0;
}

.footer li {
  list-style: none;
  display: inline-block;
  margin-top: 15px;
  position: absolute;
  top: 40%;
  right: 3vw;
}
.footer li img{
  height: 2.8vw;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 5vw;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer img {
    height: 5vw;
  }

  .footer div ul {
    padding: 0;
    margin-bottom: 10px;
    position: relative;
  }

  p.copyright {
    font-size: 0.7em;
  }

  p.social-media {
    position: revert;
    font-size: 0.7em;
  }

  span.br4 {
    content: "";
    display: block;
    margin: 0;
  }

  .footer li {
    position: revert;
    margin: 0;
  }

  .footer li img {
    height: 5vw;
  }
}