/* mobile first */
/* desktop first */
/*
@mixin breakpoint($point) {
    @if $point == desktop {
        @media screen and (max-width: $largedesktop) { @content; }
    }
    @else if $point == tablet {
        @media screen and (max-width: $desktop) { @content; }
    }
    @else if $point == mobile {
        @media screen and (max-width: $tablet) { @content; }
    }
    
} 
*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;500;600;700;800;900&display=swap");
.myButton {
  background-color: #E41E96;
  display: inline-block;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 30px;
  text-decoration: none;
  text-transform: uppercase; }

.myButton:hover {
  background-color: rgba(228, 30, 150, 0.9); }

.myButton:active {
  position: relative;
  top: 1px; }

/* button go to top */
.btn-go-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #E83867;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px; }

.btn-go-top:hover {
  background-color: rgba(255, 255, 255, 0.9); }

.btn {
  display: flex;
  text-decoration: none;
  border: none;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.2px; }
  @media (min-width: 568px) {
    .btn {
      font-size: 15px; } }
  .btn::after {
    border-bottom: 2px solid #6A0FF3;
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-bottom: 5px; }

.btn-text-white, .btn-text {
  padding: 18px 0px;
  line-height: 20px;
  color: #FFFFFF; }

.btn-icon {
  position: relative;
  margin-left: 1px;
  padding: 10px; }
  @media (min-width: 992px) {
    .btn-icon {
      padding: 18px; } }

.btn-icon-white {
  position: relative;
  margin-left: 0px;
  padding: 10px; }
  @media (min-width: 992px) {
    .btn-icon-white {
      padding: 18px 0px 18px 8px; } }

.svg-arrow {
  height: 100%;
  animation: nudge 1s linear infinite alternate;
  fill: #ffffff; }

.svg-arrow-blue {
  height: 100%;
  animation: nudge 1s linear infinite alternate;
  fill: #FFFFFF; }

.btn:hover .btn-text {
  border-left: 3px solid blue;
  background-color: blue; }

.btn:hover .btn-icon {
  background-color: blue; }

@keyframes nudge {
  0% {
    transform: translateX(4px); }
  100% {
    transform: translateX(-2px); } }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif; }

.container {
  max-width: 100%;
  padding: 0 1.4rem;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container {
      max-width: 1200px; } }
  @media (min-width: 1440px) {
    .container {
      max-width: 1350px; } }

.link-in-text {
  color: #e9dbff;
  text-decoration: none; }

/*===  page  ===*/
.page {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF; }

/*===  Main  ===*/
.main {
  position: relative; }

.main-content {
  padding: 50px 0; }

.main-content-text {
  text-align: center; }

.main-content-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.3; }
  @media (min-width: 992px) {
    .main-content-title {
      font-size: 25px; } }
  @media (min-width: 1440px) {
    .main-content-title {
      font-size: 60px; } }

.main-content-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-top: 20px; }
  @media (min-width: 992px) {
    .main-content-subtitle {
      font-size: 20px; } }

.main-content-link {
  margin: 45px 0; }

.main-image img {
  width: 100%; }

/*===  Header  ===*/
.navbar {
  padding: 20px 0 0; }
  @media (min-width: 992px) {
    .navbar {
      padding: 15px 0 0; } }

@media (min-width: 992px) {
  .navbar-logo-link {
    display: none; } }

.navbar-container {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (min-width: 992px) {
    .navbar-container {
      flex-direction: column; } }

.navbar-item {
  margin: 0 0 0 25px;
  width: 100%;
  white-space: nowrap; }
  .navbar-item img {
    text-align: center; }

.navbar-link {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4em 0;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1.2px;
  position: relative;
  text-transform: uppercase; }

.navbar-link:focus,
.navbar-link:hover {
  color: #464646; }

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto; }
  @media (min-width: 992px) {
    .navbar-toggle {
      display: none; } }

.navbar-toggle-wrapper {
  width: 100%; }

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out,  transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  background-color: #FFFFFF;
  border: 2px solid #000000; }

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #000000;
  border: none;
  outline: none; }

.navbar.opened .navbar-toggle .icon-bar:first-child,
.navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px; }

.navbar.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg); }

.navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0; }

.navbar.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg); }

.navbar .navbar-menu,
.navbar.opened .navbar-menu {
  opacity: 1;
  visibility: visible; }
  @media (min-width: 992px) {
    .navbar .navbar-menu,
    .navbar.opened .navbar-menu {
      position: static;
      display: block;
      height: 100%; } }

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
  @media (min-width: 992px) {
    .navbar-links {
      margin: 0;
      padding: 0;
      box-shadow: none;
      position: static;
      flex-direction: row;
      list-style-type: none;
      max-height: max-content;
      width: 100%;
      height: 100%; } }

.navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
  background-color: #aaaaaa; }
  @media (min-width: 992px) {
    .navbar.opened .navbar-links {
      margin: 0;
      padding: 0;
      box-shadow: none;
      position: static;
      flex-direction: row;
      list-style-type: none;
      max-height: max-content;
      width: 100%;
      height: 100%; } }

.navbar.opened .navbar-link {
  color: #FFFFFF; }

.navbar.opened .navbar-item {
  margin: 0; }

.navbar .navbar-toggle:focus,
.navbar.opened .navbar-toggle:focus {
  outline: none; }

/*===  About us  ===*/
.section-aboutus {
  padding: 50px 0; }

.aboutus-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  padding: 20px 10px 0; }
  @media (min-width: 992px) {
    .aboutus-content {
      flex-direction: row;
      padding: 70px 0 0; } }

.aboutus-content-text {
  color: #000000;
  padding: 20px 50px 20px 0;
  width: 100%; }
  @media (min-width: 992px) {
    .aboutus-content-text {
      width: 50%; } }

.aboutus-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.3; }
  @media (min-width: 992px) {
    .aboutus-title {
      font-size: 25px; } }
  @media (min-width: 1440px) {
    .aboutus-title {
      font-size: 60px; } }

.aboutus-content-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
  padding: 30px 0; }
  @media (min-width: 992px) {
    .aboutus-content-subtitle {
      font-size: 20px; } }

.aboutus-content-img {
  border-radius: 20px;
  overflow: hidden; }
  .aboutus-content-img img {
    width: 100%; }

/*===  Service  ===*/
.section-service {
  height: 100%;
  padding: 50px 0; }

.service-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  grid-gap: 50px;
  padding: 10px; }
  @media (min-width: 992px) {
    .service-wrapper {
      grid-template-columns: repeat(3, 1fr);
      padding: 0 30px; } }
  @media (min-width: 1440px) {
    .service-wrapper {
      padding: 0 100px; } }

.service-content-item {
  background-color: #FFFFFF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 30px;
  max-width: 500px; }

.service-content-item-img {
  position: relative;
  padding-right: 20px; }

.services-content-item-text {
  margin-top: 20px;
  color: #131313;
  text-align: left; }

.service-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1; }
  @media (min-width: 992px) {
    .service-item-title {
      font-size: 18px; } }
  @media (min-width: 1440px) {
    .service-item-title {
      font-size: 21px; } }

.service-content-item:nth-child(4) .service-item-title {
  padding: 0 20px; }

.service-item-subtitle {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.6; }

/*===  Slide  ===*/
.section-slide {
  background-color: #FFF4FA;
  height: 100%;
  padding: 75px 0; }

.slide-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center; }

.slide-wrapper {
  display: grid;
  grid-gap: 40px;
  justify-content: center;
  margin-top: 170px;
  padding: 10px; }
  @media (min-width: 992px) {
    .slide-wrapper {
      grid-template-columns: repeat(4, 1fr);
      padding: 0 50px; } }
  @media (min-width: 1440px) {
    .slide-wrapper {
      padding: 0 100px; } }

.slide-item {
  background-color: #FFFFFF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 40px; }
  @media (min-width: 992px) {
    .slide-item {
      padding: 30px 45px 40px; } }
  .slide-item a {
    color: #E8421A;
    text-decoration: none; }

.slide-item-img {
  margin-top: -110px; }
  @media (min-width: 1440px) {
    .slide-item-img {
      margin-top: -150px; } }
  .slide-item-img img {
    width: 100%; }

.slide-item-wrapp {
  position: relative; }

.slide-item-text {
  padding: 70px 0; }

.slide-item-des {
  font-weight: 100;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  margin-top: 30px; }
  @media (min-width: 1440px) {
    .slide-item-des {
      font-size: 16px; } }

.slide-item-name {
  font-size: 20px;
  font-weight: 700; }
  @media (min-width: 1440px) {
    .slide-item-name {
      font-size: 30px; } }

.slide-item-info-profession {
  font-size: 16px;
  font-weight: 100;
  font-style: italic; }

.slide-item-quote-left {
  position: absolute;
  left: 0;
  top: 0; }

.slide-item-quote-right {
  position: absolute;
  right: 0;
  bottom: 0; }

/*===  FAQ  ===*/
.section-faq {
  background-color: #FFFFFF;
  height: 100%;
  padding: 50px 0; }

.faq-wrapp {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  padding: 20px 10px 0; }
  @media (min-width: 992px) {
    .faq-wrapp {
      flex-direction: row; } }

.faq-content {
  width: 100%; }
  @media (min-width: 992px) {
    .faq-content {
      padding-left: 50px;
      width: 50%; } }

.faq-title {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px;
  text-align: center; }

.accordion {
  background-color: #FFFFFF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  color: #000000;
  cursor: pointer;
  padding: 25px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.4s;
  margin: 13px 0;
  line-height: 24px;
  position: relative; }
  @media (min-width: 1440px) {
    .accordion {
      font-size: 16px; } }

.active,
.accordion:hover {
  color: #000000; }

.accordion:after {
  position: absolute;
  content: "+";
  font-size: 24px;
  right: 35px;
  color: #E41E96;
  top: 50%;
  transform: translate(50%, -50%); }

.accordion:hover:after {
  color: #E41E96; }

.active:after {
  content: "-";
  color: #E41E96; }

.accordion.active {
  color: #000000; }

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }

.panel p {
  padding: 10px 25px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #000000;
  line-height: 1.8; }

.panel a {
  color: #E41E96;
  text-decoration: none; }

.faq-wrapp-img {
  width: 100%; }
  @media (min-width: 992px) {
    .faq-wrapp-img {
      width: 50%; } }
  .faq-wrapp-img img {
    width: 100%;
    height: 100%; }

/*===  Contact  ===*/
.section-contact {
  background-color: #FFF4FA;
  padding: 50px 0; }

.contact-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000; }

.contact-list-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 50px;
  padding: 0 0 50px;
  align-items: center;
  justify-content: center; }
  @media (min-width: 992px) {
    .contact-list-content {
      grid-template-columns: auto 1fr 1fr 1fr;
      grid-column-gap: 0px;
      grid-row-gap: 20px; } }
  @media (min-width: 1440px) {
    .contact-list-content {
      font-size: 36px; } }

.contact-list-item:nth-child(2) {
  padding-left: 0px; }
  @media (min-width: 992px) {
    .contact-list-item:nth-child(2) {
      justify-self: center; } }

.contact-item-info {
  color: #000000;
  display: flex;
  padding-top: 20px;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 992px) {
    .contact-item-info {
      flex-direction: row; } }

.contact-item-image img {
  display: block;
  width: 70%;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .contact-item-image img {
      width: auto; } }
  @media (min-width: 1440px) {
    .contact-item-image img {
      width: auto; } }

.contact-item-des {
  font-size: 13px;
  color: #000000;
  text-align: center;
  padding: 10px; }
  @media (min-width: 992px) {
    .contact-item-des {
      text-align: left; } }

.contact-item-des span {
  display: block;
  font-family: 'Rubik', sans-serif; }

.contact-item-des a {
  color: #000000;
  text-decoration: none;
  font-family: 'Rubik', sans-serif; }

.contact-link {
  display: flex;
  justify-content: center; }
  @media (min-width: 992px) {
    .contact-link {
      justify-content: flex-end; } }

.contact-link a {
  font-size: 21px;
  padding: 10px 20px; }

/**************************************
******** section - Footer *************
***************************************/
.section-footer {
  background-color: #FFFFFF;
  padding: 35px 0; }

.footer-content {
  text-align: center;
  color: #000000;
  font-size: 13px;
  letter-spacing: 0.5px; }
