@font-face {
  font-family: "Panchang";
  src: url("assets/fonts/Panchang-Bold.woff2") format("woff2"), url("assets/fonts/Panchang-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Panchang";
  src: url("assets/fonts/Panchang-Extrabold.woff2") format("woff2"), url("assets/fonts/Panchang-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Regular.woff2") format("woff2"), url("assets/fonts/DMSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Medium.woff2") format("woff2"), url("assets/fonts/DMSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Bold.woff2") format("woff2"), url("assets/fonts/DMSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #222222;
}

.header {
  max-width: 1430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  border-bottom: 1px solid transparent;
}

.logo-link {
  display: block;
  cursor: pointer;
}
.logo-link--desktop {
  display: block;
}
.logo-link--mobile {
  display: none;
}
.logo-link__image {
  width: 130px;
  height: 78px;
}

.nav-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-button span {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: #131313;
  transition: 0.33s;
}
.nav-button span:nth-of-type(3) {
  width: 14px;
  margin: 0 0 0 auto;
}
.nav-button:hover span:nth-of-type(3) {
  width: 20px;
}

.nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 0.75rem 0;
}
.nav__top-part {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 12px;
  font-weight: 500;
  font-size: 17px;
  border-bottom: 1px solid #e9e9e9;
}
.nav__close-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(210, 23, 142, 0.0941176471);
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.33s;
  border: none;
}
.nav__close-btn:hover {
  background-color: #d2178e;
}
.nav__close-btn:hover span {
  background-color: #ffffff;
}
.nav__close-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background-color: #131313;
  position: absolute;
  border-radius: 1px;
}
.nav__close-btn span:first-of-type {
  transform: rotate(-45deg);
  top: 19px;
  left: 12px;
}
.nav__close-btn span:last-of-type {
  transform: rotate(45deg);
  top: 19px;
  right: 12px;
}
.nav .list {
  padding: 0px 24px 24px;
  list-style: none;
}
.nav .list:first-of-type {
  padding: 20px 24px 24px;
  border-bottom: 1px solid #e9e9e9;
}
.nav .list__item {
  margin-top: 24px;
}
.nav .list__item a {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
  transition: 0.33s;
}
.nav .list__item:hover a {
  color: #d2178e;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transform: translateX(-100%);
  opacity: 0;
  z-index: 999;
  transition: 0.33s ease-in-out;
}

.is-open {
  transform: translateX(0);
}

.is-active {
  transform: translateX(0);
  opacity: 1;
}

.main {
  max-width: 1430px;
  margin: 10px auto 0;
  padding: 0 15px;
}

.section {
  padding: 0 15px;
}

.section--hero {
  display: flex;
}
.section--hero__box {
  padding: 15px;
}
.section--hero__box:first-of-type {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--hero__box:last-of-type {
  width: 60%;
  padding-left: 75px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section--hero__img--first {
  width: 100%;
}
.section--hero__img--second {
  margin: 0 auto;
}
.section--hero__heading {
  padding: 50px 0 50px 0;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.7px;
  word-spacing: 1px;
  line-height: 1;
  font-family: "Panchang", sans-serif;
}
.section--hero__cta-button {
  line-height: 30px;
  color: #ffffff;
  background: #d2178e;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  font-weight: 700;
  font-family: "Panchang", sans-serif;
  text-transform: uppercase;
  transition: 0.33s;
}
.section--hero__cta-button:hover {
  opacity: 0.7;
}

.section--about {
  margin-top: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--about__heading {
  padding: 50px 0 50px 0;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.7px;
  word-spacing: 1px;
  line-height: 1;
  font-family: "Panchang", sans-serif;
}
.section--about__cards-box {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px;
  margin-top: 110px;
  max-width: 100%;
}
.section--about__card {
  display: block;
  min-width: 300px;
  max-width: 33.3%;
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.section--about__card:nth-of-type(2) {
  margin-top: -40px;
}
.section--about__card .number {
  font-family: "Panchang", sans-serif;
  font-size: 80px;
  line-height: 40px;
  font-weight: 800;
  color: #7837d4;
}
.section--about__card .heading {
  display: block;
  background-color: #afea00;
  font-family: "Panchang", sans-serif;
  padding: 10px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.7px;
  word-spacing: 1px;
  line-height: 1;
}
.section--about__card .subheading {
  margin-top: 20px;
  line-height: 30px;
}
.section--about__card .description {
  margin-top: 20px;
  line-height: 30px;
}

.section--for-whom {
  margin-top: 135px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.section--for-whom__heading {
  padding: 50px 0 50px 0;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.7px;
  word-spacing: 1px;
  line-height: 1;
  font-family: "Panchang", sans-serif;
}
.section--for-whom__cards-box {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px;
  margin-top: 25px;
  align-items: center;
}
.section--for-whom__card {
  max-width: 33.3%;
}
.section--for-whom__card .heading {
  display: block;
  background-color: #afea00;
  font-family: "Panchang", sans-serif;
  padding: 10px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.7px;
  word-spacing: 1px;
  line-height: 1;
  display: inline-block;
}
.section--for-whom__card .subheading {
  margin-top: 20px;
  line-height: 30px;
}
.section--for-whom__card .list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
}
.section--for-whom__card .list__item {
  line-height: 30px;
}
.section--for-whom__card .cta-button {
  line-height: 30px;
  color: #ffffff;
  background: #d2178e;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  font-weight: 700;
  font-family: "Panchang", sans-serif;
  text-transform: uppercase;
  transition: 0.33s;
  display: inline-block;
  margin-top: 30px;
}
.section--for-whom__card .cta-button:hover {
  opacity: 0.7;
}
.section--for-whom__plus-decorator {
  font-family: "Panchang", sans-serif;
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4.7px;
  word-spacing: 1px;
  width: 33.3%;
  display: flex;
  justify-content: center;
}

.footer {
  display: flex;
  background-color: #2b2b2b;
  padding: 10px 0 20px;
  margin-top: 125px;
}
.footer__inner-box {
  width: 1430px;
  padding: 15px 15px;
  margin: 0 auto;
}
.footer__copyrights {
  padding-bottom: 10px;
  color: #b1b1b1;
  font-size: 14px;
}

#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #222222;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: 0.33s;
  border: none;
}

#scroll-to-top:hover {
  background-color: #d2178e;
}

#scroll-to-top span {
  display: block;
  width: 9px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  border-radius: 1px;
}

#scroll-to-top span:first-child {
  transform: rotate(45deg);
  top: 18px;
  right: 13px;
}

#scroll-to-top span:last-child {
  transform: rotate(-45deg);
  top: 18px;
  left: 13px;
}

@media (max-width: 1280px) {
  .section--about__cards-box {
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
  }
  .section--about__card {
    max-width: calc(50% - 25px);
  }
  .section--about__card:nth-of-type(2) {
    margin-top: 0;
  }
}
@media (max-width: 1000px) {
  .header {
    border-color: #e9e9e9;
    padding: 15px 75px;
  }
  .logo-link--desktop {
    display: none;
  }
  .logo-link--mobile {
    display: block;
  }
  .nav-button {
    display: flex;
  }
  .section--hero__heading {
    font-size: 28px;
  }
  .section--about__cards-box {
    flex-direction: column;
  }
  .section--about__card {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 15px 25px;
  }
  .section--hero {
    flex-direction: column;
    align-items: center;
  }
  .section--hero__box:first-of-type {
    max-width: 300px;
    width: 100%;
  }
  .section--hero__box:last-of-type {
    width: 100%;
    padding-left: 15px;
    align-items: center;
  }
  .section--hero__cta-button {
    text-align: center;
  }
  .section--hero__img--second {
    display: none;
  }
  .section--hero__heading {
    font-size: 24px;
    line-height: 2rem;
    text-align: center;
  }
  .section--about {
    margin-top: 100px;
  }
  .section--about__heading {
    width: 460px;
    max-width: 100%;
  }
  .section--about__cards-box {
    margin-top: 0px;
    max-width: 480px;
    width: 100%;
  }
  .section--about__card {
    max-width: 100%;
  }
  .section--about__card .heading {
    display: inline-block;
  }
  .section--for-whom {
    margin: 75px auto 0;
    align-items: flex-start;
    max-width: 460px;
    width: 100%;
  }
  .section--for-whom__cards-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .section--for-whom__card {
    max-width: 480px;
    width: 100%;
  }
  .section--for-whom__card:last-of-type {
    margin-top: 50px;
  }
  .section--for-whom__plus-decorator {
    display: none;
  }
  .section--for-whom .cta-button {
    text-align: center;
  }
  #scroll-to-top {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  #scroll-to-top span {
    width: 9px;
    background-color: #b1b1b1;
  }
  #scroll-to-top span:first-child {
    top: 14px;
    right: 8px;
  }
  #scroll-to-top span:last-child {
    top: 14px;
    left: 8px;
  }
}/*# sourceMappingURL=main.css.map */