/*/////////////////////////*/
/*//// HORIZONTAL RULE ////*/
/*/////////////////////////*/

.horizontal-rule {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: var(--primary-color);
  border: none;
}

.horizontal-rule-container {
  width: 100%;
  height: 10px;
  padding: 10px 50px;
}

/*/////////////////////////*/
/*//// VERTICAL LINE ////*/
/*/////////////////////////*/

.vertical-bar {
  opacity: 0.8;
  color: var(--primary-accent-color);
}

/***************************************/
/*********** CTA-primary ***************/
/***************************************/

.cta-primary-btn {
  width: fit-content;
  border: 0;

  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  cursor: pointer;
  outline: none;

  transition: 0.2s all;

  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;

  border-radius: 30px;

  padding: 1.2rem 2rem;

  color: var(--primary-accent-color);
  background-color: var(--primary-color);
}

.cta-primary-btn:hover {
  color: var(--primary-accent-color);
  background-color: var(--secondary-color);
}

.cta-primary-btn:active,
.cta-primary-btn:focus {
  transform: translateY(2px);
}

/****************************************/
/************ CTA Secondary ************/
/***************************************/

.cta-secondary-btn {
  width: fit-content;

  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  cursor: pointer;
  outline: none;

  transition: 0.2s all;

  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;

  border-radius: 30px;

  padding: 0.8rem 2rem;

  color: var(--primary-accent-color);
  background-color: var(--primary-color);
}

.cta-secondary-btn:hover {
  color: var(--primary-color);
  background-color: var(--primary-accent-color);
}

.cta-secondary-btn:active,
.cta-secondary-btn:focus {
  transform: translateY(2px);
}

/****************************************/
/********** CTA Contact Card **********/
/************************************/

.cta-contact-card {
  width: 100%;

  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: center;
  align-items: center;

  overflow: hidden;
  cursor: pointer;
  outline: none;

  transition: 0.2s all;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;

  padding: 0.8rem 2rem;

  background-color: var(--primary-color);
  color: var(--primary-accent-color);
}

.cta-contact-card:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.cta-contact-card:active,
.cta-contact-card:focus {
  transform: translateY(2px);
}

/*/////////////////////////*/
/*//// Start-Section //////*/
/*/////////////////////////*/

.start-section {
  width: 100%;
  background-color: var(--primary-accent-color);
}

.start-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.start-up-backnav {
  width: 100%;
  height: 90px;
}

.start-down {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

/*//// Start-left //////*/

.start-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.under-div-primary {
  width: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, 30%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 0 20px 0 20px;
}

.under-div-secondary {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  background-color: var(--primary-color);

  aspect-ratio: 2/1.2;
  transform: translate(-50%, -80%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.start-container-description2 {
  text-align: left;
  padding: 2rem 2rem;
  color: var(--primary-color);
}

.start-container-description-text2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/*//// Start-right //////*/

.start-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.start-svg-container {
  width: 70%;
  position: relative;
  height: fit-content;
}

.svg-pc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.svg-pc-border {
  width: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 2%;
}

.svg-pc-screen {
  width: 100%;
  aspect-ratio: 2/1;
  background-color: var(--secondary-accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}

.svg-stand {
  width: 10%;
  aspect-ratio: 1/1;
  background-color: var(--primary-color);
}

.svg-base {
  width: 30%;
  aspect-ratio: 8/1;
  background-color: var(--primary-color);
  border-radius: 5px 5px 0 0;
}

.svg-books {
  height: 30%;
  position: absolute;
  bottom: 0;
  right: -20px;
}

.svg-files {
  width: 20%;
  position: absolute;
  bottom: 0;
  left: -20px;
}

#cursor {
  color: var(--primary-color);
  font-weight: 400;
  animation: blink 1s linear infinite;
  padding: 2px;
}

@keyframes blink {
  0% {
    opacity: 100%;
  }

  50% {
    opacity: 0%;
  }
}

/*//// Start-extra //////*/

.start-container-logo2 {
  display: none;
}

.start-extra {
  
  background-color: var(--primary-accent-color-color);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0rem 0 0rem 0;
}

.start-container-description {
  display: none;
  text-align: center;
  padding: 0 3rem 3rem 3rem;
  color: var(--primary-color);
}

.start-container-description-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}

.extra-invert {
  padding: 4rem 0;
  background-color: var(--primary-accent-color);
}
.start-extra-invert {
  background-color: var(--secondary-color);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 0;
}

.start-container-description-invert {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--primary-color);
}

.start-container-description-text-invert {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}

/*//// Start-Section-logo //////*/

.start-container-logo {
  width: 100%;
  height: 100%;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-logo-svg {
  height: 100%;
  color: var(--secondary-color);
}

/******************************************/
.features {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  color: var(--primary-color);
  padding: 4rem 2rem 4rem 2rem;
  background-color: var(--primary-accent-color);
}

.features-box-container {
  width: 20%;
  aspect-ratio: 1/1;
}

.features-box {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.feature-box-icon-container {
  width: 55%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* .feature-box-icon-container-odd {
    background-color: var(--primary-color);

}

.feature-box-icon-container-even {

    background-color: var(--primary-color);

} */

.feature-box-title-container {
  width: 100%;
  height: 25%;
  display: flex;
  align-items: start;
  justify-content: center;
  color: var(--primary-color);
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 400;
}

/*************************************/

/******** Features-section ***********/

/*************************************/

.features-icon-odd {
  height: 40%;
  color: var(--primary-color);
}

.features-icon-even {
  height: 40%;
  color: var(--primary-color);
}

/*/////////////////////////*/
/*////// Media Query //////*/
/*/////////////////////////*/

/* Large devices (laptops/desktops, 992px and down) */
@media only screen and (max-width: 992px) {
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
  .start-extra {
    background-color: var(--primary-color);
  }

  .start-container-description {
    color: var(--secondary-color);
    display: block;

  }
  

  .start-container-logo2 {
    width: 80%;
    height: auto;
    padding: 10%;
    display: inline-block !important;
  }

  .start-left {
    display: none;
  }

  .start-right {
    background-color: var(--primary-accent-color);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .features-box-container {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .feature-box-icon-container {
    width: 50%;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/***************************************/
/********** Paid-Service-section ************/
/***************************************/

.paid-service {
  width: 100%;
}
.service-description-container {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-accent-color);
}

.service-description-container h4 {
  color: var(--primary-gray-color);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-steps-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  width: 100%;
}

.service-step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 40px 0;
}

.service-step img {
  height: 100px;
  margin-bottom: 30px;
}

.service-step p {
  color: #d3a124;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Large devices (laptops/desktops, 992px and down) */
@media only screen and (max-width: 992px) {
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
  .service-steps-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-step img {
    height: 70px;
  }

  .service-step p {
    color: #d3a124;
    font-size: 1.2rem;
  }

  .service-description-container h4 {
    font-size: 1.5rem;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/***************************************/
/********** Service-section ************/
/***************************************/

.service-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary-gray-color);
  background-color: var(--secondary-accent-color);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.125);
}

.services-container-section {
  background-color: var(--primary-accent-color);

  padding: 0rem 4rem 2rem 4rem;
}

.service-box {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.reverse {
  flex-direction: row-reverse;
}

.service-box-img {
  width: 50%;
  text-align: center;
  align-items: center;
  height: 100%;
  display: block;
  line-height: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.services-img {
  max-width: 100%;
  object-fit: fill;
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
  display: inline-block;
  margin: 0;
  padding: 0;
}

.service-box-img img {
  max-width: 100%;
  object-fit: fill;
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
  display: inline-block;
  margin: 0;
  padding: 0;
}

.service-box-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.service-box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 2rem;
}

/* Large devices (laptops/desktops, 992px and down) */
@media only screen and (max-width: 992px) {
  .service-box-title {
    font-size: 12px;
    text-align: center;
    line-height: 20px;
  }
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
  .service-box-img img.scrolled {
    opacity: 1;
    transform: scale(1.2);
  }

  .service-box-container {
    padding: 0rem 1rem 0rem 1rem;
    background-color: var(--primary-accent-color);
    box-shadow: none;
  }
  .services-container-section {
    padding: 0rem;
  }

  .service-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.125);
    margin: 1rem 0;
  }

  .service-box:nth-last-child(1) {
    margin-bottom: 10px;
  }

  .reverse .service-box-img {
    padding: 0;
  }

  .reverse .service-box-info {
    padding: 0;
  }

  .reverse {
    flex-direction: column;
  }

  .service-box-img {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
  }

  .service-box-img img {
    max-width: 100%;
    object-fit: fill;
    height: 100%;
    width: 100%;
    /* opacity: 0.6; */
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
  }

  .reverse .service-box-img {
    max-width: 100%;
    object-fit: fill;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
  }

  .reverse .service-box-info {
    max-width: 100%;
    width: 100%;
    line-height: 25px;
    padding: 1rem 0.5rem;
    border: none;
    box-shadow: none;
    background-color: var(--secondary-accent-color);
  }

  .service-box-info {
    max-width: 100%;
    width: 100%;
    background-color: var(--secondary-accent-color);
    line-height: 25px;
    padding: 1rem 0.5rem;
    border: none;
    box-shadow: none;
  }

  .service-box-title {
    font-size: 12px;
    text-align: center;
    background-color: transparent;
    padding: 10px 10px;
    border: none;
    box-shadow: none;
    background-color: none;
    color: var(--primary-color);
    background-color: var(--secondary-accent-color);
  }
}

/***************************************/
/********** Opening-section ************/
/***************************************/

.opening {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding: 3rem 1rem;
  background-color: var(--primary-accent-color);
}

.weekdays-box {
  background-color: var(--secondary-accent-color);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.125);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 1rem;
  color: var(--primary-color);
  width: 100%;
  min-width: 280px;
  max-width: 450px;
}

.weekdays-box p {
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 2px;
  position: relative;
  width: 100%;
}

.weekdays-list {
  width: 100%;
  max-width: 500px;
  display: table;
  list-style: none;
  margin-top: 2rem;
  font-size: 14px;
}

.day-row {
  display: table-row;
}

.opening-day {
  display: table-cell;
  text-align: left;
  padding: 15px 5px 15px 10px;
}

.opening-time {
  display: table-cell;
  text-align: right;
  padding: 15px 10px 15px 5px;
}

.day-row.current-day {
  font-weight: 400;
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.open-close {
  display: table-cell;
  font-size: 14px;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.appointment {
  color: green;
}

.open-now {
  color: orange;
}

.close-now {
  color: red;
}

/***************************************/
/********** location-section ************/
/***************************************/

.location {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.location-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.location-card {
  background-color: var(--primary-accent-color);
  margin: 40px 30px;
  /* border-radius:20px  30px  20px 20px ; */
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  padding: 2rem 2rem;
}

.location-icon {
  padding: 3px;
  width: 3.5rem;
  color: var(--secondary-color);
}

.location-card-header {
  color: var(--primary-color);

  letter-spacing: 0px;
  font-size: 16px;
  padding: 10px 0 5px 0;
  font-weight: 400;
}

.location-card-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 11px;
  line-height: 2;
  padding-bottom: 20px;
  /* border-left: 2px solid rgba(221, 221, 221, 0.3);
    border-right: 2px solid rgba(221, 221, 221, 0.3); */
  font-weight: 400;
  text-align: center;
}

.location-card-details-link {
  color: var(--primary-color);
  font-size: 11px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.location-card-map {
  overflow: hidden;
  width: 100%;
  overflow: hidden;
  padding-bottom: 30.25%;
  position: relative;
  height: 0;
  background-color: var(--secondary-color);
}

.location-card-map iframe {
  left: 0;

  top: 0;

  height: 100%;

  width: 100%;

  position: absolute;
}

/* Large devices (laptops/desktops, 992px and down) */
@media only screen and (max-width: 992px) {
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
  .location-card-map {
    height: 500px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/******************************************/
/************ Contact Card ***************/
/*****************************************/

.contact-cards-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 4rem 1rem;
  background-color: var(--primary-accent-color);
}

.contact-card {
  width: fit-content;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin: 2rem 0rem;
  padding: 0.8rem 0.8rem 1rem 0.8rem;
  width: 350px;
  background-color: var(--secondary-accent-color);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.125);
  border-radius: 10px;

}

.contact-card-header {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0px;
  font-size: 16px;
  padding: 0 5px 0px 10px;
  font-weight: 500;
}

.contact-card-header-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
}

.contact-icon {
  width: 1.5rem;
  color: var(--secondary-color);
}

.contact-card-header-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-card-details {
  font-size: 11px;
  line-height: 2;
  padding: 0px 5px 8px 10px;
  /* border-left: 2px solid rgba(221, 221, 221, 0.3);
    border-right: 2px solid rgba(221, 221, 221, 0.3); */
  font-weight: 500;
}

.contact-card-info {
  color: rgb(76, 168, 243);
  font-size: 11px;
  text-decoration: none;
  font-weight: 400;
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
  .contact-card {
    width: 100%;
  }
}
