@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.primary-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: 2px solid #49004b;
  border-radius: 8px;
  overflow: hidden;
  transition: color 0.3s ease;
  background-color: #49004b;
  z-index: 0;
}
@media (min-width: 768px) {
  .primary-button {
    padding: 14px 50px;
    font-size: 16px;
  }
}
.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffd828;
  transition: left 0.4s ease;
  border: 2px solid #ffd828;
  z-index: -1;
}
.primary-button:hover {
  color: #49004b;
}
.primary-button:hover::before {
  left: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #333;
  background-color: #ffffff;
  line-height: 1.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 86vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 80vw;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

img {
  max-width: 100%;
  height: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  padding: 2.5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #49004b;
  border-radius: 3px;
  /* Rounded edges */
  border: 1px solid white;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(72, 0, 75, 0.9058823529);
}

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #49004b;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#scrollToTop.show {
  opacity: 1;
  transform: scale(1);
}
#scrollToTop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  clip-path: inset(calc(100% - var(--scroll)) 0 0 0);
  transition: clip-path 0.1s linear;
  z-index: 1;
}
#scrollToTop .arrow {
  position: relative;
  z-index: 2;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1056;
  padding: 3vh 1vw;
}
.header__logo img {
  width: 110px;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 140px;
  }
}
.header__menu-heading {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #49004b;
  margin: 25px 0px 0px 10px;
  cursor: pointer;
}
.header__menu .offcanvas {
  width: 100% !important;
  background-color: rgba(255, 255, 255, 0.6) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: none !important;
  z-index: -1;
}
.header__menu .offcanvas-body {
  padding: 0;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.header__menu-list li {
  list-style: none;
  text-align: right;
}
.header__menu-list li a {
  text-decoration: none;
  font-size: 30px;
  font-weight: 100;
  color: #072535;
  transition: color 0.3s ease;
}
.header__menu-list li a:hover {
  color: #49004b;
}
@media (min-width: 768px) {
  .header__menu-list li a {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .header__menu-list li a {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  .header__menu-list li a {
    font-size: 70px;
  }
}
.header__menu-contact {
  display: flex;
  align-items: end;
  justify-content: end;
  flex-wrap: wrap;
  gap: 50px;
}
.header__menu-wrapper {
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-right: 20px;
  flex-direction: column;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
  gap: 30px;
  --progress-height: 0%;
}
@media (min-width: 768px) {
  .header__menu-wrapper {
    margin-right: 90px;
    padding-right: 70px;
    gap: 50px;
  }
}
.header__menu-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: #ccc;
}
.header__menu-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  transform: translateX(50%);
  width: 3px;
  height: calc(var(--progress-height, 0%) - 10%);
  background: linear-gradient(180deg, #49004b 0%, #ffd828 100%);
  box-shadow: 0 0 8px 2px rgba(73, 0, 75, 0.15);
  transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.languages-switch {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 12px;
}
.languages-switch a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #072535;
}
.languages-switch a.active, .languages-switch a:hover {
  color: #49004b;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 1vw;
}
.hero::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  top: 70px;
  left: 60px;
  z-index: 1;
  background-color: #d3d3d3;
}
@media (min-width: 768px) {
  .hero::before {
    left: 73px;
  }
}
.hero .particles-wrapper {
  width: 86%;
  height: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 10% 0% 0%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero .particles-wrapper {
    justify-content: end;
  }
}
.hero .particles-wrapper #particles-js1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__content {
  padding-left: 35px;
}
@media (min-width: 768px) {
  .hero__content {
    padding: 0;
  }
}
.hero__content h1 {
  color: #49004b;
  font-size: 50px;
  font-weight: 400;
  margin: 0;
  z-index: 2;
  position: relative;
}
.hero__content h1 span {
  font-weight: 100;
}
.hero__content h1 .light-text {
  font-weight: 100 !important;
}
.hero__content h1 .light-text .char {
  font-weight: 100 !important;
}
@media (min-width: 768px) {
  .hero__content h1 {
    font-size: 80px;
  }
}
@media (min-width: 992px) {
  .hero__content h1 {
    font-size: 100px;
  }
}
@media (min-width: 1400px) {
  .hero__content h1 {
    font-size: 140px;
  }
}
.hero__content .button-wrapper {
  margin: 50px 0 0 0;
  z-index: 2;
  position: relative;
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 20px;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .hero .scroll-indicator {
    right: 45px;
  }
}
.hero .scroll-indicator .text-label {
  font-size: 12px;
  font-weight: 300;
  line-height: 110%;
  color: #072535;
  margin: 0;
  letter-spacing: 2px;
}
.hero .scroll-indicator .scroll-arrow {
  position: relative;
}
.hero .scroll-indicator .scroll-down {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero .scroll-indicator .scroll-down span:nth-child(2) {
  animation-delay: -0.2s;
}
.hero .scroll-indicator .scroll-down span:nth-child(3) {
  animation-delay: -0.4s;
}
.hero .scroll-indicator .scroll-down span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 4px solid #49004b;
  border-right: 4px solid #49004b;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
.hero .social-icons {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.hero .social-icons a i {
  font-size: 25px;
  color: #072535;
  transition: color 0.3s ease;
}
.hero .social-icons a i:hover {
  color: #49004b;
}

.statistics {
  padding: 50px 1vw;
}
@media (min-width: 768px) {
  .statistics {
    padding: 100px 1vw;
  }
}
.statistics__title-area h2 {
  color: #49004b;
  font-weight: 400;
  font-size: 30px;
}
@media (min-width: 768px) {
  .statistics__title-area h2 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .statistics__title-area h2 {
    font-size: 64px;
  }
}
.statistics__title-area h2 span {
  font-weight: 300;
}
.statistics__box {
  height: 100%;
  max-width: 440px;
  margin: 50px 0 0 0;
}
@media (min-width: 768px) {
  .statistics__box {
    margin: 90px 0 0 0;
  }
}
.statistics__box-numbers h3,
.statistics__box-numbers span {
  word-wrap: break-word;
  color: #072535;
  font-size: 45px;
  margin: 0;
  display: inline;
  font-weight: 400;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .statistics__box-numbers h3,
  .statistics__box-numbers span {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .statistics__box-numbers h3,
  .statistics__box-numbers span {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  .statistics__box-numbers h3,
  .statistics__box-numbers span {
    font-size: 90px;
  }
}
@media (min-width: 1650px) {
  .statistics__box-numbers h3,
  .statistics__box-numbers span {
    font-size: 100px;
  }
}
.statistics__box-numbers span {
  color: #49004b;
  font-weight: 300;
}
.statistics__box-numbers .decoline {
  background-color: rgba(210, 210, 210, 0.8);
  width: 30px;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
}
@media (min-width: 768px) {
  .statistics__box-numbers .decoline {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.statistics__box h4 {
  margin: 20px 0;
  font-size: 27px;
  font-weight: 300;
}
@media (min-width: 1400px) {
  .statistics__box h4 {
    font-size: 35px;
  }
}
.statistics__box p {
  margin: 0;
  color: rgba(39, 39, 39, 0.5882352941);
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 1400px) {
  .statistics__box p {
    font-size: 18px;
  }
}

.news {
  padding: 50px 1vw;
}
@media (min-width: 768px) {
  .news {
    padding: 100px 1vw;
  }
}
.news .scrolling-text {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}
.news .rail {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.news #move-left {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .news #move-left {
    padding-bottom: 30px;
  }
}
.news .rail h4 {
  font-size: 40px;
  font-weight: 700;
  margin-right: 40px;
  color: #ffd828;
}
@media (min-width: 768px) {
  .news .rail h4 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .news .rail h4 {
    font-size: 55px;
  }
}
@media (min-width: 1400px) {
  .news .rail h4 {
    font-size: 60px;
  }
}
.news .rail h4 span {
  color: #fff;
  text-shadow: 0 -1px #49004b, 1px 0 #49004b, 0 1px #49004b, -1px 0 #49004b;
}

.tax-allowance {
  padding: 50px 1vw;
}
@media (min-width: 768px) {
  .tax-allowance {
    padding: 100px 1vw;
  }
}
.tax-allowance__content h2 {
  color: #49004b;
  font-weight: 400;
  font-size: 30px;
}
@media (min-width: 768px) {
  .tax-allowance__content h2 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .tax-allowance__content h2 {
    font-size: 64px;
  }
}
.tax-allowance__content h2 span {
  font-weight: 300;
}
.tax-allowance__content p {
  margin: 30px 0 0 0;
  font-size: 18px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
}
@media (min-width: 768px) {
  .tax-allowance__content p {
    font-size: 20px;
  }
}

.letters-slide-up {
  overflow: hidden;
}

.letters-slide-up .light-text {
  font-weight: 300 !important;
  display: inline;
}

.letters-slide-up .bold-text {
  font-weight: 400 !important;
  display: inline;
}

.letters-slide-up .light-text .char {
  font-weight: 300 !important;
}

.letters-slide-up .bold-text .char {
  font-weight: 400 !important;
}

.run-fill-text {
  padding: 50px 1vw;
}
@media (min-width: 768px) {
  .run-fill-text {
    padding: 100px 1vw;
  }
}
.run-fill-text h2 {
  color: #cecece;
  margin: 0;
  display: inline;
  font-weight: 400;
  font-size: 50px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 768px) {
  .run-fill-text h2 {
    font-size: 65px;
  }
}
@media (min-width: 992px) {
  .run-fill-text h2 {
    font-size: 85px;
  }
}
@media (min-width: 1200px) {
  .run-fill-text h2 {
    font-size: 120px;
  }
}

.price {
  padding: 50px 1vw;
}
@media (min-width: 768px) {
  .price {
    padding: 100px 1vw;
  }
}
.price__title-area {
  margin: 0 0 50px 0;
}
@media (min-width: 768px) {
  .price__title-area {
    margin: 0 0 70px 0;
  }
}
.price__title-area h2 {
  color: #49004b;
  font-weight: 400;
  font-size: 30px;
}
@media (min-width: 768px) {
  .price__title-area h2 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .price__title-area h2 {
    font-size: 64px;
  }
}
.price__title-area h2 span {
  font-weight: 300;
}
.price__title-area p {
  margin: 30px 0 0 0;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 768px) {
  .price__title-area p {
    font-size: 20px;
  }
}
.price .card-simple {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  padding: 30px 20px;
  background-color: #fff;
  box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.0901960784);
  text-align: left;
  position: relative;
  min-height: 400px;
}
.price .card-simple .front-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}
.price .card-simple h2 {
  color: #49004b;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 300;
  text-transform: capitalize;
}
@media (min-width: 1200px) {
  .price .card-simple h2 {
    font-size: 35px;
  }
}
@media (min-width: 1750px) {
  .price .card-simple h2 {
    font-size: 40px;
  }
}
.price .card-simple span {
  color: #072535;
  margin: 30px 0;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.price .card-simple p {
  margin: 0;
  font-size: 16px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
}
.price .card-simple h3 {
  text-align: center;
  color: #ffd828;
}

.work {
  padding: 50px 1vw;
}
@media (min-width: 768px) {
  .work {
    padding: 100px 1vw;
  }
}
.work__title-area {
  margin: 0 0 50px 0;
}
@media (min-width: 768px) {
  .work__title-area {
    margin: 0 0 90px 0;
  }
}
.work__title-area h2 {
  color: #49004b;
  font-weight: 400;
  font-size: 30px;
}
@media (min-width: 768px) {
  .work__title-area h2 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .work__title-area h2 {
    font-size: 64px;
  }
}
.work__title-area h2 span {
  font-weight: 300;
}
.work .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #c4c4c4;
  border-radius: 0;
}
.work .accordion .accordion-item .accordion-button {
  background-color: transparent;
  padding: 20px 0;
  text-align: left;
  color: #49004b;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.3s ease;
  border: none !important;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .work .accordion .accordion-item .accordion-button {
    font-size: 40px;
  }
}
.work .accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2349004b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.work .accordion .accordion-item .accordion-button:hover {
  color: #0229b1;
  background-color: transparent;
}
.work .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.work .accordion .accordion-item .accordion-button:not(.collapsed) {
  border: none !important;
  box-shadow: none !important;
  color: #0229b1;
  background-color: transparent;
}
.work .accordion .accordion-item .accordion-body {
  padding-inline: 0;
}
@media (max-width: 767.98px) {
  .work .accordion .accordion-item .accordion-body {
    padding-top: 0;
  }
}
.work .accordion .accordion-item .accordion-body .thumb-wrapper img {
  border-radius: 9px;
  transition: all 0.3s ease;
  filter: grayscale(1);
}
.work .accordion .accordion-item .accordion-body .thumb-wrapper:hover img {
  filter: grayscale(0);
}
.work .accordion .accordion-item .accordion-body p {
  margin: 0;
  font-size: 18px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
}
@media (min-width: 768px) {
  .work .accordion .accordion-item .accordion-body p {
    font-size: 20px;
  }
}

.footer {
  padding: 50px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  margin-inline: 1vw;
}
@media (min-width: 768px) {
  .footer {
    padding: 100px 0 50px 0;
  }
}
.footer__column {
  height: 100%;
}
.footer__column .footer-logo {
  width: 110px;
  margin-bottom: 40px;
}
.footer__column h2 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
.footer__column .privacy-anchor {
  text-decoration: none;
  transition: all 0.3s ease;
  color: rgba(39, 39, 39, 0.5882352941);
}
.footer__column .privacy-anchor:hover {
  color: #0229b1;
}
.footer__column ul {
  padding: 0;
  margin: 0;
}
.footer__column ul li {
  list-style-type: none;
  margin: 20px 0 0 0;
}
.footer__column ul li a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: rgba(39, 39, 39, 0.5882352941);
}
.footer__column ul li a:hover {
  color: #0229b1;
}
.footer__column p {
  margin: 0;
  font-size: 16px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
  max-width: 270px;
}

.privacy {
  padding: 70px 1vw 50px 1vw;
}
@media (min-width: 768px) {
  .privacy {
    padding: 100px 1vw;
  }
}
.privacy__header-area {
  margin-bottom: 50px;
}
.privacy__header-area h1 {
  color: #49004b;
  font-weight: 400;
  font-size: 35px;
}
@media (min-width: 768px) {
  .privacy__header-area h1 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .privacy__header-area h1 {
    font-size: 64px;
  }
}
.privacy__header-area h1 span {
  font-weight: 300;
}
.privacy__content h2 {
  margin: 40px 0 20px 0;
  color: #49004b;
  font-weight: 400;
  font-size: 25px;
}
@media (min-width: 768px) {
  .privacy__content h2 {
    font-size: 30px;
  }
}
.privacy__content p {
  margin: 0;
  font-size: 18px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
}
@media (min-width: 768px) {
  .privacy__content p {
    font-size: 20px;
  }
}

.imprint {
  padding: 70px 1vw 50px 1vw;
}
@media (min-width: 768px) {
  .imprint {
    padding: 100px 1vw;
  }
}
.imprint__header-area {
  margin-bottom: 50px;
}
.imprint__header-area h1 {
  color: #49004b;
  font-weight: 400;
  font-size: 35px;
}
@media (min-width: 768px) {
  .imprint__header-area h1 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .imprint__header-area h1 {
    font-size: 64px;
  }
}
.imprint__header-area h1 span {
  font-weight: 300;
}
.imprint__content h2 {
  margin: 40px 0 0 0;
  color: #49004b;
  font-weight: 400;
  font-size: 25px;
}
@media (min-width: 768px) {
  .imprint__content h2 {
    font-size: 30px;
  }
}
.imprint__content p {
  margin: 0;
  font-size: 28px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
}
@media (min-width: 768px) {
  .imprint__content p {
    font-size: 20px;
  }
}
.imprint__content a {
  color: #49004b;
}
.imprint__content small {
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 400;
  font-size: 14px;
}

.contactus {
  padding: 70px 1vw 50px 1vw;
}
@media (min-width: 768px) {
  .contactus {
    padding: 100px 1vw;
  }
}
.contactus__header-area {
  margin-bottom: 50px;
}
.contactus__header-area h1 {
  color: #49004b;
  font-weight: 400;
  font-size: 35px;
}
@media (min-width: 768px) {
  .contactus__header-area h1 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .contactus__header-area h1 {
    font-size: 64px;
  }
}
.contactus__header-area h1 span {
  font-weight: 300;
}
.contactus__header-area p {
  margin: 20px 0 0 0;
  font-size: 18px;
  color: rgba(39, 39, 39, 0.5882352941);
  font-weight: 300;
  max-width: 800px;
}
@media (min-width: 768px) {
  .contactus__header-area p {
    font-size: 20px;
  }
}
.contactus__form {
  max-width: 800px;
  background-color: #eee;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .contactus__form {
    padding: 20px;
  }
}
.contactus__form label {
  font-size: 18px;
  font-weight: 400;
  color: #072535;
}
.contactus__form .form-control {
  border-radius: 0px;
}
.contactus__form .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgba(72, 0, 75, 0.0823529412);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(72, 0, 75, 0.0823529412);
}
.contactus__form .custom-height {
  height: 40px;
}
.contactus__form textarea {
  height: 190px;
}

.thanks {
  padding: 70px 1vw 50px 1vw;
}
@media (min-width: 768px) {
  .thanks {
    padding: 100px 1vw;
  }
}
.thanks__header-area h1 {
  color: #49004b;
  font-weight: 400;
  font-size: 35px;
}
@media (min-width: 768px) {
  .thanks__header-area h1 {
    font-size: 54px;
  }
}
@media (min-width: 992px) {
  .thanks__header-area h1 {
    font-size: 64px;
  }
}
.thanks__header-area h1 span {
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */