@property --angle {
  syntax: "<angle>";
  initial-value: 120deg;
  inherits: true;
}

/*---------------- Header --------------------*/

/*---------------- Navbar --------------------*/

.navbar a,
.navbar button {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.7px;
}

@media (min-width:990px) {

  .navbar {
    background-color: rgba(205, 33, 34, 0.9);
  }

  .navbar a,
  .navbar button {
    font-size: 1rem;
    color: #fff;
  }

  .container-navbar {
    background-color: #cd2122;
  }

  .navbar button.dropdown-show+.dropdown-menu {
    background-color: rgba(205, 33, 34, 0.9);
  }

}

/*================ common elements ============== */

.section-title {
  font-family: 'Gilroy', sans-serif;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
}

@media (min-width: 770px) {
  .section-title {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 2.2rem;
  }
}

@media (min-width: 990px) {

  main {
    padding-top: 140px
  }

  .section-title {
    font-size: 2.8rem;
  }
}

.link-button {
  display: inline-block;
  width: 250px;
  border: 2px solid #cd2122;
  background-color: transparent;
  transition: all 0.5s ease 0s;
  text-align: center;
}

.link-button-red {
  background-color: #cd2122;
}

.link-button span {
  text-transform: uppercase;
  font-weight: bold;
  color: #cd2122;
  letter-spacing: 1.2px;
  line-height: 3rem;
}

.link-button-red span {
  color: #fff;
}

.link-button:hover {
  background-color: #cd2122;
  cursor: pointer;
}

.link-button-red:hover {
  background-color: transparent;
}

.link-button:hover span {
  color: #fff;
}

.link-button-red:hover span {
  color: #cd2122;
}

.group-link-button {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 450px) {
  .link-button {
    width: 100%;
  }
}

/*============= container-half-and-half ============*/

.container-half-and-half {
  display: flex;
  flex-direction: column;
}

.container-half-and-half .first-half {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-right: 20px;
}

.container-half-and-half .second-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1100px) {
  .container-half-and-half {
    flex-direction: row;
  }

  .container-half-and-half .first-half {
    flex: 0 0 50%;
    justify-content: space-between;
  }

  .container-half-and-half .second-half {
    flex: 1 1 auto;
  }
}

/*================= section-carousel ============

.container-carousel-section {
  position: relative;
}

.container-carousel-section::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 270px;
  background-color: #ddd;
}

.container-carousel {
  display: flex;
  position: relative;
  flex-direction: column;
}

@media (min-width: 1100px) {
  .container-carousel .section-title {
    font-size: 1.8em;
  }

  .container-carousel-section::before {
    position: absolute;
    top: 60px;
    left: 0;
    content: " ";
    width: 100%;
    height: 160px;
    background-color: #ddd;
  }

  .container-carousel {
    flex-direction: row;
  }

  .header-carousel {
    flex: 0 0 auto;
    width: 250px;
    text-align: left;
  }

  .container-carousel .container-link-button {
    position: absolute;
    width: 250px;
    padding: 0;
    left: 0;
    bottom: 0;
    margin: 0;
  }
}

/*=============== section-whiteboard ==============*/

.whiteboard {
  padding-top: 20px;
  padding-bottom: 50px;
}

.whiteboard-wrapper {
  display: grid;
  grid-template-columns: auto;
  grid-auto-rows: auto;
  gap: 50px;
  padding: 20px 0;
  justify-content: center;
}

.whiteboard-img {
  display: none;
}

.whiteboard-cell {
  display: grid;
  grid-template-columns: 90px auto;
  grid-template-rows: auto;
}

.whiteboard-cell-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 26px;
  padding-bottom: 15px;
  text-align: left;
}

.whiteboard-cell-item-text {
  font-size: 1.1em;
  letter-spacing: 0.7px;
  line-height: 25px;
  color: #777777;
  text-align: left;
}

[class^="whiteboard-cell-icon-"] {
  display: inline-flex;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #cd2122;
  font-size: 65px;
  justify-self: start;
  align-items: flex-start;
}

@media (min-width: 770px) {
  .whiteboard {
    padding-bottom: 60px
  }

  .whiteboard-wrapper {
    grid-template-columns: auto auto;
    grid-auto-rows: auto;
    gap: 40px 50px;
  }

  .whiteboard-cell {
    max-width: 350px;
  }
}

@media (min-width: 1100px) {
  .whiteboard-wrapper {
    grid-template-columns: auto auto auto;
    grid-auto-rows: auto;
  }

  .whiteboard-img {
    display: block;
    grid-column: 2/3;
    align-self: center;
  }
}

/*===================== section-blackboard =================*/

.blackboard {
  background:
    linear-gradient(63deg, #262626 23%, transparent 23%) 7px 0,
    linear-gradient(63deg, transparent 74%, #262626 78%),
    linear-gradient(63deg, transparent 34%, #262626 38%, #262626 58%, transparent 62%),
    #222;
  background-size: 16px 48px;
}

.blackboard .section-title {
  color: #fff;
}

.blackboard-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.blackboard-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 310px;
  height: 310px;
  background-color: #fff;
  padding: 20px;
  transition: all 1s ease 0s;
}

.blackboard-cell-border {
  border: 2px solid #cd2122;
  height: 100%;
  padding: 10px;
}

.blackboard-cell:hover {
  background-color: #cd2122;
}

.blackboard-cell:hover .blackboard-cell-text,
.blackboard-cell:hover .blackboard-cell-icon::before {
  color: #fff;
}

.blackboard-cell:hover .blackboard-cell-border {
  border-color: #fff;
}

.blackboard-cell:hover .blackboard-cell-icon::before {
  border-bottom: 2px solid #fff;
}

.blackboard-cell:hover>a span {
  background-color: #fff;
  color: #cd2122;
}

.blackboard-cell a {
  padding-bottom: 20px;
}

.blackboard-cell a span {
  padding: 8px 20px;
  background-color: #aaa;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.blackboard-cell a span:hover {
  background-color: #222;
  color: #fff;
}

.blackboard-cell-icon::before {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #cd2122;
  border-bottom: 2px solid #cd2122;
  font-size: 45px;
  padding: 15px;
}

.blackboard-cell-text {
  color: #666;
  font-size: 1.2em;
  font-weight: 500;
}

@media (min-width: 770px) {
  .blackboard-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
}

/*============= section-welcome =============*/

.container-welcome {
  padding: 0;
}

.wrapper-welcome {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}

.welcome-img2,
.welcome-img3,
.welcome-logo,
.welcome-text {
  display: none;
}

.welcome-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.welcome-title h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #555;
  text-shadow: 2px 2px 4px #777;
}

.welcome-title p {
  font-size: 1.2rem;
  text-align: justify;
  font-style: italic;
}


@media (min-width: 680px) {
  .welcome-title {
    padding: 40px 20px 80px 20px;
  }
}

@media (min-width: 770px) {

  .welcome-title h2 {
    font-size: 2.2em;
  }

  .welcome-title p {
    font-size: 1.4rem;
  }
}

@media (min-width: 990px) {
  /*.welcome {
    padding-top: 60px;
  }*/

  .wrapper-welcome {
    grid-template-columns: 60% 40%;
    grid-template-rows: repeat(3, auto);
  }

  .welcome-title h2 {
    font-size: 1.8em;
  }
  
  .welcome-title p {
    font-size: 1.1rem;
  }

  .welcome-title {
    padding: 15px;
  }

  .welcome-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .welcome-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: left;
    p {
      font-family: 'Comforter', sans-serif;
      font-weight: 400;
      font-style: normal;
      letter-spacing: 1.2px;
      font-size: 1.5rem;
      color:#1c61c2;
    }
  }

  .welcome-img2,
  .welcome-img3 {
    display: block;
  }

}

@media (min-width: 1100px) {

  .welcome-title {
    padding: 20px;
  }

  .welcome-title h2 {
    font-size: 2.2rem;
  }
}

/*@media (min-width: 1500px) {
  .welcome-title h2 {
    font-size: 2.6rem;
  }
}*/

/*================== section-main-directs =================*/

.container-main-directs {
  padding: 60px 20px;
  text-align: center;
}

.blackboard-cell-icon::before {
  content: "\e62e";
}

@media (min-width: 990px) {
  .main-directs .section-title {
    padding: 80px 0;
  }
  .container-main-directs {
    padding: 100px 20px;
  }
}

@media (min-width: 1100px) {
  .main-directs .section-title {
    padding: 120px 0;
  }
}

/*================= section-principles ============*/

.principles .section-title {
  font-size: 1.4rem;
  font-family: 'Ysabeau SC', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: #cd2122;
  text-shadow: 2px 2px 4px #777;
}

.whiteboard-cell-icon-e64f::before {
  content: "\e64f";
}

.whiteboard-cell-icon-e693::before {
  content: "\e693";
}

.whiteboard-cell-icon-e65e::before {
  content: "\e65e";
}

.whiteboard-cell-icon-e6c6::before {
  content: "\e6c6";
}

.whiteboard-cell-icon-e619::before {
  content: "\e619";
}

.whiteboard-cell-icon-e68e::before {
  content: "\e68e";
}

@media (min-width: 770px) {
  .container-principles {
    padding: 0 20px;

    .section-title {
      font-size: 2.2rem;
    }
  }
}

@media (min-width: 990px) {
  .principles .section-title {
    padding: 80px 0;
  }
}

@media (min-width: 1100px) {

  .principles .section-title {
    font-size: 2.8rem;
  padding: 120px 0;
  }

  .principles .whiteboard-img {
    grid-row: 1/4;
  }
}

/* -------- section comfortable --------- */

.container-header-comfortable {
  padding: 0 20px;

  h3 {
    padding-bottom: 40px;
    font-size: 1.4rem;
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--rd1);
    text-shadow: 2px 2px 4px #777;
  }
}

.banner-comfortable {
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--rd1);
}

.banner-comfortable .container {
  padding: 0 20px;
}

.wrapper-comfortable {
  display: grid;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  justify-content: center;
  gap: 1px;
}

.comfortable-cell {
  display: flex;
  flex-direction: column;
  background-color: var(--rd1);
  padding: 20px;
}

.comfortable-name {
  font-size: 1.1em;
  padding: 20px 0;
}

.comfortable-icon-wrapper {
  align-self: center;
}

.comfortable-icon-wrapper svg {
  fill: #fff;
  width: 50px;
  height: 50px;
}

@media (min-width: 600px) {
  .wrapper-comfortable {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 770px) {
  .container-header-comfortable {
    padding: 0 20px;

    .section-title {
      font-size: 2.2rem;
    }
  }
}

@media (min-width: 990px) {
  .comfortable .section-title {
    padding: 80px 0;
  }
}

@media (min-width: 1100px) {

  .comfortable .section-title {
    padding: 100px 0;
    font-size: 2.8rem;
  }

  .wrapper-comfortable {
    grid-template-columns: repeat(4, 1fr);
  }

  .comfortable-cell {
    gap: 40px;
    padding: 40px 20px;
  }

  .comfortable-name {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1.1px;
  }

  .comfortable-text {
    font-size: 1.2rem;
  }
}

/* ------- section clinic-trend ------- */

.container-clinic-trend {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wrapper-clinic-trends {
  display: flex;
  flex-direction: column;
}

.clinic-trends .section-title {
  color: #333;
  font-size: 1.3em;
  font-weight: 600;
  padding: 40px 0;
}

.clinic-trends p {
  line-height: 1.3;
  text-align: justify;
}

.clinic-trends .link-button {
  margin: 40px 0;
  border: none;
  background-color: #ccc;
}

.clinic-trends .link-button span {
  color: #fff;
}

.clinic-trends .link-button:hover {
  background-color: #cd2122;
}

@media (min-width: 770px) {
  .clinic-trend .section-title {
    padding: 80px 0;

    p {
      line-height: 1.6;
    }

    .section-title {
      font-size: 1.6rem;
      text-shadow: 2px 2px 4px #777;
      background-color: inherit;
    }

    .link-button {
      margin-top: 60px;
    }
  }

  .wrapper-clinic-trends {
    border: none;
  }
}

@media (min-width: 1100px) {
  .clinic-trends .section-title {
    font-size: 2.2rem;
    padding: 120px 0;
  }
}

/*========== section neuroDiscount ===========*/

#neuroDiscount .section-title {
  padding: 20px;
  text-align: center;
}

.neuroDiscount-bg {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.neuroDiscount-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 60%;
  transform: translateY(-50%);
  background-color: #f3f3f3;
}

.carousel-3d {
  position: relative;
  padding: 90px 20px;
  -webkit-perspective: 500px;
  perspective: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  /*background-color: var(--bg3);*/
}
.carousel-3d > * {
  flex: 0 0 auto;
}
.carousel-3d figure {
  margin: 0;
  width: 90%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.carousel-3d figure img,
.carousel-3d figure div {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}
.carousel-3d figure img {
  user-select: none;
}
.carousel-3d figure div:not(:first-of-type),
.carousel-3d figure img:not(:first-of-type) {
  position: absolute;
  left: 0;
  top: 0;
}
.carousel-3d nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 120px;
}

.carousel-3d nav button {
position: relative;
width: 80px;
height: 80px;
cursor: pointer;
border: none;
background-color: transparent;
}
.carousel-3d nav button::after {
  content: "";
  position: absolute;
  inset: 0;
}
.carousel-3d nav .prev::after {
  content: url('assets/svg/arrow_left_icon_133706.svg');
}
.carousel-3d nav .next::after {
  content: url('assets/svg/arrow_right_icon_133692.svg');
}

@media (min-width: 770px) {

  #neuroDiscount .section-title {
    padding: 0 20px;
  }

  .carousel-3d {
    padding: 100px;
  }
  .carousel-3d nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

}

/*========== neuroDiscount banners ===========*/

.discount-link {
  width: 90vw;
  aspect-ratio: 1 / 1.66;
  max-width: 600px;
  
  
}

.discount-card {
  width: 100%;
  height: 100%;
  padding: 20px 20px 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-between;
  border: 2px solid var(--bg4);
  outline-offset: -6px;
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--bg4);
}

.discount-card-1 {
  background: linear-gradient(to top, #000, 10%, rgba(0, 0, 0, 0.9), 15%, rgba(0, 0, 0, 0.8), 20%, rgba(0, 0, 0, 0.7), 25%, rgba(0, 0, 0, 0.6), 30%, rgba(0, 0 , 0, .5), 35%, rgba(0, 0, 0, 0.4), 40%, rgba(0, 0, 0, 0.3)),  url('assets/img/sale-banners/discount-bg-1.jpg') no-repeat top / cover;
}

.discount-card-2 {
  background: linear-gradient(to top, #000, 10%, rgba(0, 0, 0, 0.9), 15%, rgba(0, 0, 0, 0.8), 20%, rgba(0, 0, 0, 0.7), 25%, rgba(0, 0, 0, 0.6), 30%, rgba(0, 0 , 0, .5), 35%, rgba(0, 0, 0, 0.4), 40%, rgba(0, 0, 0, 0.3)),  url('assets/img/sale-banners/discount-bg-2.jpg') no-repeat top / cover;
}

.discount-logo {
  align-self: self-end;
  max-width: 25%;
  padding: 1%;
  margin: 4%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .3);
}

.discount-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw;
}

.discount-title {
  font-size: 4vw;
  color: #fff;
  letter-spacing: 1.4px;
  line-height: 1.4;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
;
}

.discount-text-1 {
  font-size: 10vw;
  color: var(--bg4);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.discount-text-2 {
  font-size: 3vw;
  color: #fff;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 990px) {
  .discount-title {
    font-size: 2.4rem;
  ;
  }
  
  .discount-text-1 {
    font-size: 6rem;
  }
  
  .discount-text-2 {
    font-size: 2.1rem;
  }
}

/*================= section team ==================*/

#team {
  background-color: #fff;
}

#team .container {
  padding: 0;
  overflow: hidden;
}

.header-crslTeam {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#team .section-title {
  padding: 40px 20px;
}

.wrapper-crslTeam {
  margin: 0 auto;
  position: relative;
  max-width: 1400px;
}

.crslTeam-item {
  padding: 0 20px;
}

.crslTeam-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #eee;
  background-color: #aaa;
}

.crslTeam-img {
  margin: auto;
}

.crslTeam-name {
  font-weight: 600;
  width: 100%;
  padding: 10px 0;
  background-color: var(--rd1);
  border-top: 2px solid #fff;
}
.crslTeam-descr {
  width: 100%;
  padding: 10px 0;
  background-color: #333;
  border-top: 2px solid #fff;
}

/*#team .container-link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 140px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}*/

.crslTeam-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px;
}

.crslTeam-arrow {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.crslTeam-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
}
.crslTeam-arrowRight::after {
  content: url('assets/svg/arrow_left_icon_133706.svg');
}
.crslTeam-arrowLeft::after {
  content: url('assets/svg/arrow_right_icon_133692.svg');
}


.crslTeam-arrow:hover {
  transform: scale(1.2);
}

/*@media (max-width: 450px) {
  #team .link-button {
    padding: 0 10px;
    text-wrap: nowrap;
  }
}

@media (min-width: 500px) {

  #team .container-link-button {
    height: 160px;
  }
}*/

@media (min-width: 680px) {

  #team .container {
    padding-bottom: 40px;
  }

  .wrapper-crslTeam {
    position: relative;
    padding: 0 60px;
  }

}

@media (min-width: 990px) {
  #team .container {
    padding-bottom: 80px;
  }

  .wrapper-crslTeam {
    padding: 0 80px;
  }
}

/*============== section-banner ================*/

.banner {
  background-color: var(--rd1);
}

.container-banner {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

.banner-icon::after {
  display: inline-block;
  border: 1px solid #fff;
  font-family: 'Pe-icon-7-stroke';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #fff;
  font-size: 45px;
  padding: 15px;
  content: "\e643";
  animation: flashing 4s infinite;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  line-height: 1.25;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes flashing {

  0%,
  100% {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background-color: #cd2122;
  }

  50% {
    border: 1px solid #cd2122;
    color: #cd2122;
    background-color: #fff;
  }
}

@media (min-width: 770px) {

  .banner-text {
    flex-direction: row;
    gap: 30px;
    text-align: left;
    border: none;
  }
}

/*================= section-consultation-online ================*/

.consultation-online .section-title {
  text-align: left;
  text-shadow: 2px 2px 4px #777;
}

.consultation-online .container-half-and-half {
  row-gap: 30px;
}

.first-half-header {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 26px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.first-half-wrapper li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  font-size: 1.1em;
  letter-spacing: 0.7px;
  line-height: 25px;
  color: #666;
}

.first-half-wrapper li::before {
  content: "\f0a3";
  font-family: FontAwesome;
  font-size: 13px;
  color: #d4a661;
  padding-right: 10px;
}

.consultation-online .second-half {
  img {
    padding: 15px;
  }
}

@media (min-width: 770px) {
  .consultation-online .section-title {
    text-align: center;
  }

  .consultation-online .container-half-and-half {
    flex-direction: row;
    justify-content: center;
    padding: 40px 0 80px 0;
  }

  .consultation-online .first-half {
    text-align: right;
    border-right: 5px solid #d4a661;
    justify-content: space-between;
    flex: 0 0 50%;

    .first-half-header {
      font-size: 1.25rem;
    }
  }

  .consultation-online .second-half {
    justify-content: flex-end;
    align-items: flex-end;
    padding-left: 60px;
  }

  .first-half-wrapper li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .first-half-wrapper li::before {
    display: none;
  }

  .first-half-wrapper li::after {
    content: "\f0a3";
    font-family: FontAwesome;
    font-size: 13px;
    color: #d4a661;
    padding-left: 10px;
  }
}

/*========== section crslReviews ===========*/

#reviewsNeuro .wrapper-reviewsCrsl::before {
  background-color: #f3f3f3;
}

#reviewsNeuro .crslReviews-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  color: var(--font1);
  height: 400px;
  border: 2px solid var(--rd1);
  overflow-y: auto;
}

#reviewsNeuro .reviews-item-autor {
  font-weight: 500;
}

#reviewsNeuro .reviews-item-txt {
  flex: 1 1 auto;
  text-align: left;
  padding: 20px;
}

#reviewsNeuro .reviews-item-autor,
#reviewsNeuro .reviews-item-date {
  text-align: center;
  color: var(--bg4);
  padding: 10px 20px;
  flex: 0 0 auto;
}

#reviewsNeuro .crslReviews-arrows {
  padding: 0;
}

#reviewsNeuro .crslReviews-arrow {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

#reviewsNeuro .crslReviews-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
}

#reviewsNeuro .crslReviews-arrowRight::after {
  content: url('assets/svg/arrow_left_icon_133706.svg');
}

#reviewsNeuro .crslReviews-arrowLeft::after {
  content: url('assets/svg/arrow_right_icon_133692.svg');
}

#reviewsNeuro .crslReviews-arrow:hover {
  transform: scale(1.2);
}

@media (min-width: 500px) {
  #reviewsNeuro .section-title {
    padding: 60px 20px;
  }
}

@media (min-width: 770px) {

  #reviewsNeuro .section-title {
    font-size: 2.4rem;
  }

}

@media (min-width: 990px) {

  #reviewsNeuro .section-title {
    padding: 80px 20px;
  }
}

/*========================= section-faq ========================*/

.container-section-faq {
  background:
    linear-gradient(63deg, #262626 23%, transparent 23%) 7px 0,
    linear-gradient(63deg, transparent 74%, #262626 78%),
    linear-gradient(63deg, transparent 34%, #262626 38%, #262626 58%, transparent 62%),
    #222;
  background-size: 16px 48px;
  color: #fff;
  padding-bottom: 40px;
}

.container-faq-rows {
  background-color: #fff;
  color: #222;
  padding: 35px;
  font-size: 1.1em;
  text-align: left;
}

.faq summary::marker {
  display: none;
}

.faq summary:hover {
  cursor: pointer;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  padding: 10px 0;
  transition: padding 0.5s;
}

.faq summary::after {
  font-family: FontAwesome;
  content: "\f078";
  color: #cd2122;
  width: 35px;
  vertical-align: middle;
  text-align: center;
  flex: 0 0 auto;
}

.faq-row summary:hover {
  padding-left: 40px;
}

.faq-row[open]>summary {
  padding-left: 40px;
  color: #cd2122;
}

.faq-row[open]>summary::after {
  font-family: FontAwesome;
  content: "\f077";
}

.faq-answer {
  padding: 15px 10px;
  background-color: #eee;
}

.faq-answer li {
  list-style: square;
}

@media (min-width: 770px) {
  .container-section-faq {
    padding-top: 60px;
    padding-bottom: 150px;
  }
}

/* ---------- section contact-us ---------- */
.contact-us {
  background-color: #f1f1f1;

  .section-title {
    color: #d4a661;
  }

  p {
    font-style: italic;
    font-size: 1.4rem;
  }
}

.container-contact-us {
  padding-top: 20px;
  background-color: #f1f1f1;
}

.container-contact-us p {
  font-size: 1.3em;
  padding: 15px 0;
}

.contact-us .link-button {
  margin: 25px 0;
}

@media (min-width: 770px) {
  .container-contact-us {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .contact-us .section-title {
    padding: 30px 0;
  }

  .contact-us p {
    font-size: 1.3em;
  }
}