/* 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: #E8421A;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  max-width: 200px;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (min-width: 992px) {
    .myButton {
      font-size: 30px;
      max-width: 300px;
      height: 70px; } }
  @media (min-width: 1440px) {
    .myButton {
      font-size: 34px;
      max-width: 350px;
      height: 80px; } }

.myButton:hover {
  background-color: rgba(232, 66, 26, 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(232, 56, 103, 0.9); }

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

html {
  scroll-behavior: smooth; }

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

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

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

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

/*===  Main  ===*/
.main {
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto;
  position: relative;
  height: 900px;
  transition: background-position 0.1s; }
  @media (min-width: 992px) {
    .main {
      background-position: 345px top; } }
  @media (min-width: 1440px) {
    .main {
      background-position: right top; } }
  .main:before {
    content: '';
    background: linear-gradient(90deg, #000000 50%, rgba(255, 255, 255, 0.1) 100%);
    position: absolute;
    width: 30%;
    height: 900px;
    height: 100%;
    z-index: 5;
    right: 50%;
    top: 0;
    transition: all 0.1s; }
  .main:after {
    content: '';
    background-color: #000000;
    position: absolute;
    width: 37%;
    height: 100%;
    z-index: 5;
    left: 0;
    top: 0;
    transition: all 0.1s; }
    @media (min-width: 992px) {
      .main:after {
        width: 31%; } }
    @media (min-width: 1440px) {
      .main:after {
        width: 37%; } }
  .main .main-center-element {
    position: absolute;
    z-index: 6;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top; }
  .main #curved-corner-topleft,
  .main #curved-corner-bottomleft {
    width: 250px;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    left: -125px; }
  .main #curved-corner-bottomleft {
    top: 400px; }
  .main #curved-corner-topleft:before,
  .main #curved-corner-bottomleft:before {
    content: "";
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    border-radius: 50%; }
  .main #curved-corner-topleft:before {
    top: 0;
    left: 0;
    box-shadow: -250px -250px 0 0 #000000; }
  .main #curved-corner-bottomleft:before {
    bottom: 0;
    left: 0;
    box-shadow: -250px 250px 0 0 #000000; }

.main-wrapper {
  padding-bottom: 25%;
  position: relative;
  z-index: 7; }

.main-content {
  display: flex;
  flex-direction: column;
  height: 100%; }
  @media (min-width: 992px) {
    .main-content {
      flex-direction: row; } }

.main-content-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 70px; }
  @media (min-width: 992px) {
    .main-content-text {
      padding-top: 150px;
      width: 60%; } }
  @media (min-width: 1440px) {
    .main-content-text {
      padding-top: 170px; } }

.main-content-title {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 2px;
  line-height: 120%; }
  @media (min-width: 992px) {
    .main-content-title {
      font-size: 54px; } }
  @media (min-width: 1440px) {
    .main-content-title {
      font-size: 64px; } }
  .main-content-title span {
    display: block; }

.main-content-subtitle {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 100;
  margin-top: 1.4rem;
  letter-spacing: 1px; }
  @media (min-width: 992px) {
    .main-content-subtitle {
      font-size: 24px; } }
  @media (min-width: 1440px) {
    .main-content-subtitle {
      font-size: 28px; } }
  .main-content-subtitle span {
    display: block; }

.main-content-link {
  padding-top: 25px; }
  @media (min-width: 992px) {
    .main-content-link {
      padding-top: 55px; } }
  @media (min-width: 1440px) {
    .main-content-link {
      padding-top: 75px; } }

/*===  Header  ===*/
.navbar {
  padding: 40px 0 0;
  position: relative;
  z-index: 13; }

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center; }

.navbar-item {
  margin: 0 20px;
  width: 100%;
  white-space: nowrap;
  position: relative; }

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

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

.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 #FFFFFF; }

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #FFFFFF;
  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;
  z-index: 13; }
  @media (min-width: 992px) {
    .navbar .navbar-menu,
    .navbar.opened .navbar-menu {
      position: static;
      display: block;
      height: 100%; } }

@media (min-width: 992px) {
  .navbar-menu {
    background-color: #000000;
    border-radius: 50px;
    padding: 5px 20px; } }

.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: #000000; }
  @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; }

.logo-green {
  width: 150px;
  height: auto; }
  @media (min-width: 992px) {
    .logo-green {
      width: 220px; } }

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

.service-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px; }

.service-title {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #000000;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .service-title {
      font-size: 36px; } }
  @media (min-width: 1440px) {
    .service-title {
      font-size: 40px; } }

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

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

.service-content-item:nth-child(2n+2) {
  border: 2px solid red; }

.service-content-item-img {
  position: relative; }

.icon-img {
  width: 100%; }

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

.service-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  height: 75px; }
  @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; }

/*===  About us  ===*/
.section-aboutus {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0 150px; }

.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: #636363;
  padding: 20px 0;
  width: 100%; }
  @media (min-width: 992px) {
    .aboutus-content-text {
      width: 50%;
      padding-left: 75px; } }

.aboutus-content-text > p:nth-child(2) {
  margin-top: 30px; }

.aboutus-content-title {
  font-size: 18px;
  font-weight: 500px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .aboutus-content-title {
      font-size: 40px; } }

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

.aboutus-wrapp-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px; }
  @media (min-width: 992px) {
    .aboutus-wrapp-img {
      width: 50%; } }
  .aboutus-wrapp-img img {
    width: 100%;
    height: 100%; }

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

.aboutus-content-img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/3; }

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

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

.slide-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px; }
  @media (min-width: 992px) {
    .slide-wrapper {
      flex-direction: row; } }

.slide-item {
  background-color: #FFFFFF;
  border-radius: 250px;
  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;
      width: 30%; } }
  @media (min-width: 1440px) {
    .slide-item {
      padding: 40px 75px 60px; } }
  .slide-item a {
    color: #E8421A;
    text-decoration: none; }

.slide-item-des {
  font-weight: 100;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5; }
  @media (min-width: 992px) {
    .slide-item-des {
      font-size: 18px; } }
  @media (min-width: 1440px) {
    .slide-item-des {
      font-size: 21px; } }

.slide-item-info {
  padding-top: 20px; }

.slide-item-info-name {
  font-size: 18px;
  font-weight: 500; }

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

.slide-1, .slide-3 {
  border-radius: 200px;
  margin-right: -20px; }
  @media (min-width: 992px) {
    .slide-1, .slide-3 {
      width: 35%; } }
  @media (min-width: 1440px) {
    .slide-1, .slide-3 {
      width: 30%; } }
  .slide-1 .slide-item-des, .slide-3 .slide-item-des {
    font-size: 11px; }
    @media (min-width: 992px) {
      .slide-1 .slide-item-des, .slide-3 .slide-item-des {
        font-size: 11px; } }
    @media (min-width: 1440px) {
      .slide-1 .slide-item-des, .slide-3 .slide-item-des {
        font-size: 14px; } }
  .slide-1 .slide-item-info-name, .slide-3 .slide-item-info-name,
  .slide-1 .slide-item-info-profession,
  .slide-3 .slide-item-info-profession {
    font-size: 11px; }

.slide-2 {
  position: relative;
  width: 100%;
  z-index: 10; }
  @media (min-width: 992px) {
    .slide-2 {
      width: 55%; } }
  @media (min-width: 1440px) {
    .slide-2 {
      width: 44%; } }

.slide-3 {
  border-radius: 200px;
  margin-left: -20px;
  margin-right: 0; }

.slide-item-quote-left {
  position: absolute;
  left: 13%;
  top: 13%;
  width: 65px; }

.slide-item-quote-right {
  position: absolute;
  right: 16%;
  bottom: 7%;
  width: 65px; }

.dot-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 0; }

.dot {
  height: 25px;
  width: 25px;
  background-color: #FFFFFF;
  border: 1px solid #E8421A;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px; }

.dot-full {
  background-color: #E8421A; }

/*===  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%;
  padding-right: 10px; }
  @media (min-width: 992px) {
    .faq-content {
      width: 50%; } }

.faq-title {
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 20px; }

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

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

.accordion:after {
  background-color: #F7F7F7;
  padding: 2px 16px;
  border-radius: 20px;
  position: absolute;
  content: "+";
  font-size: 24px;
  right: 35px;
  color: #E8421A;
  top: 50%;
  transform: translate(50%, -50%); }

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

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

.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: red;
  text-decoration: none; }

.faq-wrapp-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px; }
  @media (min-width: 992px) {
    .faq-wrapp-img {
      width: 50%;
      padding-left: 65px; } }
  .faq-wrapp-img img {
    width: 100%;
    height: 100%; }

.faq-content-img {
  border-radius: 20px;
  overflow: hidden; }

.faq-content-img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/3; }

/*===  Contact  ===*/
.section-contact {
  background-color: #F7F7F7;
  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 {
      font-size: 15px;
      text-align: left; } }
  @media (min-width: 1440px) {
    .contact-item-des {
      font-size: 16px; } }

.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; }

.contact-link a {
  font-size: 21px;
  padding: 10px 30px;
  max-width: 250px; }

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

.footer-content {
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: 'Rubik', sans-serif; }
  .footer-content span {
    font-weight: 700; }
