/***************************************************              GENERAL RESET STYLES             ***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800;900&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

*:focus {
  outline: none;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 600;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border-style: none;
  width: 100%;
  height: auto;
}

form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #000c49;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #282828;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 1000px 1000px #fff;
}

.container {
  display: block;
  position: relative;
  width: 1200px;
  padding: 0px;
  margin: 0 auto;
  height: 100%;
}
.custom-container {
  padding-left: calc(50vw - 600px);
  padding-right: calc(50vw - 600px);
}

header,
main,
footer,
section {
  display: block;
  position: relative;
  width: 100%;
}

span {
  font: inherit;
}

/* lenis reset */
html {
  scroll-behavior: auto !important;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}
/* lenis reset */

/* common styles */

.main {
  overflow: hidden;
}

:root {
  --main-yellow: #fdd93e;
  --main-dark: #282828;
  --main-purple: #c1b7ff;
  --main-white: #fff;
  --body-white: #f3f3f3;
  --header-fix: 120px;
}

.font-14 {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.font-16 {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.font-18 {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.font-20 {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.section-title {
  color: var(--main-dark);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}

.bg-purple {
  background-color: var(--main-purple);
}
.bg-yellow {
  background-color: var(--main-yellow);
}

.font-dark {
  color: var(--main-dark);
}
.font-white {
  color: var(--main-white);
}
.font-yellow {
  color: var(--main-yellow);
}

.font-center {
  text-align: center;
}
.font-uppercase {
  text-transform: uppercase;
}
.font-auto {
  text-transform: unset;
}

.section-margin {
  margin-top: 120px;
}

body {
  background-color: var(--body-white);
}

.main-btn {
  padding: 20px 36px;
  border-radius: 30px;
  border: 1px solid;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s;
  width: fit-content;
  text-align: center;
}
.main-btn:hover {
  opacity: 0.8;
}
.main-btn--yellow {
  border-color: var(--main-yellow);
  background-color: var(--main-yellow);
  color: var(--main-dark);
}
.main-btn--dark {
  border-color: var(--main-dark);
  background-color: var(--main-dark);
  color: var(--main-white);
}
.main-btn--bordered {
  border-color: var(--main-dark);
  color: var(--main-dark);
  background-color: transparent;
}
.main-btn--bordered-white {
  border-color: var(--main-white);
  background-color: transparent;
  color: var(--main-white);
}
.main-btn--full {
  width: 100%;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--main-yellow);
  transition: all 0.4s;
  display: grid;
  place-content: center;
}
.social-icon:hover {
  opacity: 0.8;
}
/* common styles */

/* header styles */
.header {
  position: fixed;
  top: 10px;
  width: calc(100% - 40px);
  margin: 0px 20px;
  background-color: var(--main-white);
  z-index: 10;
  border-radius: 30px;
}
.header-inner {
  padding: 16px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav__link {
  color: var(--main-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s;
}
.header-nav__link:hover {
  color: var(--main-yellow);
}
.header-btn {
  padding: 16px 36px;
  border-radius: 30px;
  border: 1px solid var(--main-yellow);
  background-color: var(--main-yellow);
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}
.header-btn:hover {
  border-color: var(--main-dark);
  background-color: var(--main-dark);
  color: var(--main-white);
}
.logo {
  height: fit-content;
  display: grid;
  place-content: center;
}
/* header styles */

/* mobile menu */
.header-burger-wrap {
  display: none;
}
.burder-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--main-yellow);
  transition: all 0.4s;
  display: grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.line {
  fill: none;
  stroke: var(--main-dark);
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 75;
  stroke-width: 6;
  stroke-dashoffset: -134;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -90;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  height: 100vh;
  background: var(--body-white);
  transition: all 0.4s;
  transform: translateX(-101%);
  display: none;
}
.mobile-menu.active {
  transform: translateX(0px);
}
.mobile-menu__inner {
  width: calc(100% - 40px);
  margin: 0px 20px;
  height: calc(100% - var(--header-fix) - 10px);
  background-color: var(--main-white);
  border-radius: 30px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0px;
}
.mobile-nav-link {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--main-yellow);
  cursor: pointer;
  color: var(--main-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
/* mobile menu */

/* hero styles */
.header-fix {
  height: var(--header-fix);
  width: 100%;
}
.hero {
  height: calc(100vh - var(--header-fix) - 20px);
  position: relative;
  width: calc(100% - 40px);
  margin: 0px 20px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--main-yellow);
  border-radius: 30px;
  transition: all 0.4s;
}
.hero-container {
  position: relative;
  z-index: 1;
}
.hero-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.hero-title {
  color: var(--main-white);
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.hero-l {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.hero-r {
  width: 50%;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-btn {
  padding-inline: 50px;
  flex-shrink: 0;
}
.hero-l-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-img {
  position: relative;
}
.hero-label {
  display: block;
  width: fit-content;
  position: absolute;
  padding: 20px 30px;
  border-radius: 20px;
  background-color: var(--main-purple);
  font-size: 18px;
}
.hero-label1 {
  top: 0;
  right: -30px;
}
.hero-label2 {
  bottom: 192px;
  left: -30px;
}
.hero-label3 {
  bottom: -20px;
  right: -76px;
}
/* hero styles */

/* services styles */
.services-head__texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services-form {
  border-radius: 30px;
  background-color: var(--main-purple);
  padding: 40px;
}
.form-input {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--body-white);
  resize: none;
  width: 100%;
}
.form-input,
.form-input::placeholder {
  color: #989696;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.form-input {
  color: var(--main-dark);
}
.services-form,
.inputs-wrap,
.form-wrap form {
  display: flex;
  flex-direction: column;
}
.inputs-wrap {
  gap: 20px;
}
.services-form,
.form-wrap form {
  gap: 32px;
}
.services-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--main-dark);
  overflow: hidden;
}
.services-block__list-item,
.services-block__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-block__list-item {
  gap: 16px;
}
.services-block__list-more {
  display: flex;
  align-items: center;
  gap: 8px;
}
.services-block__list-more img {
  width: 12px;
  height: 12px;
}
.services-self {
  display: flex;
  gap: 10px;
}
.services-l {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.services-l-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-l-img img {
  max-width: 386px;
  width: 50%;
}
.services-r {
  width: 50%;
}
.services-block__list-label {
  color: var(--main-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
  width: fit-content;
  border-radius: 12px;
  background-color: var(--main-purple);
  padding: 8px 12px;
}
.services-block__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
/* services styles */

/* job styles */
.job-head > p {
  width: 50%;
}
.job-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.job-item {
  border-radius: 30px;
  border: 1px solid var(--main-purple);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.job-item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job-item-title {
  color: var(--main-dark);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.job-item-icon {
  width: 44px;
  aspect-ratio: 1 /1;
  flex-shrink: 0;
}
/* job styles */

/* rates styles */
.rates-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rates-item {
  border-radius: 30px;
  background-color: var(--main-dark);
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rates-item p {
  font: inherit;
}
.rates-item strong {
  font-weight: 500;
}
.rates-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.rates-label {
  display: block;
  padding: 8px 12px;
  border-radius: 12px;
}
.last-rate-item {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.last-rate-btn {
  padding-inline: 60px;
}
/* rates styles */

/* about styles */
.about__inner {
  display: flex;
  gap: 20px;
}
.about-l {
  width: 50%;
  background-color: var(--main-yellow);
  border-radius: 30px;
  padding: 40px;
}
.about-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-r {
  background-color: var(--main-dark);
  border-radius: 30px;
  overflow: hidden;
  width: 50%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-img {
  flex: 1;
  background-color: #c1b7ff;
  position: relative;
}
.about-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-socials {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 40px;
}
/* about styles */

/* screening styles */
.screening__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.screening-content {
  display: flex;
  gap: 20px;
}
.screening-l {
  position: relative;
  width: 50%;
  background-color: var(--main-white);
  border-radius: 30px;
  overflow: hidden;
}
.screening-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.screening-r {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.screening-block {
  padding: 40px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background-color: var(--main-purple);
}
.screening-last-block {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
/* screening styles */

/* faq styles */
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faqs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq {
  padding: 20px;
  border-radius: 30px;
  background-color: var(--main-yellow);
}
.faq__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}
.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 0.4s;
}
.faq__content > div {
  min-height: 0;
}
.faq-fix {
  display: block;
  height: 16px;
}
.faq.active .faq__content {
  grid-template-rows: 1fr;
}
.faqs-contact {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
/* faq styles */

/* contacts style */
.contacts__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__blocks {
  display: flex;
  gap: 20px;
}
.conatcts_r,
.conatcts_l {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.conatcts_l {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background-color: var(--main-purple);
}
.conatcts_r img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.conatcts__top {
  display: flex;
  gap: 8px;
  align-items: center;
}
.conatcts__top img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-position: center;
  object-fit: cover;
}
.conatcts_l-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conatcts_l-item a {
  transition: all 0.4s;
}
.conatcts_l-item a:hover {
  color: var(--main-yellow);
}
/* contacts style */

/* footer styles */
.footer-top {
  width: calc(100% - 40px);
  margin: 0px auto;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--main-dark);
}
.footer-main {
  padding: 80px 0px;
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  transition: all 0.4s;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer-social-block,
.nav-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-link {
  transition: all 0.4s;
}
.footer-link:hover {
  color: var(--main-yellow);
}
.footer-social-block {
  gap: 20px;
}
.footer-b-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0px;
}
.made-by {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.4s;
}
.made-by:hover {
  opacity: 0.7;
}
/* footer styles */

/* banner styles */
.banner {
  width: calc(100% - 40px);
  margin-inline: 20px;
  background-color: var(--main-dark);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.banner-inner {
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 312px;
}
.banner-img {
  position: absolute;
  bottom: 40px;
  left: 340px;
  max-width: 563px;
}
.banner-btns {
  display: flex;
  gap: 20px;
}
.banner > .container {
  position: relative;
  z-index: 1;
}
.marquee {
  position: absolute;
  width: 120%;
  height: 50px;
  background-color: var(--main-purple);
  overflow: hidden;
}
.marquee-1 {
  top: 50%;
  left: -5%;
  transform: rotate(-5.5deg);
  z-index: 1;
}
.marquee-2 {
  top: 50%;
  left: -5%;
  transform: rotate(1deg);
}
.marquee-scroll {
  width: max-content;
  display: flex;
  gap: 16px;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  transform: translateX(-20%);
}
/* banner styles */

/* sliders styles */
.slide-btn {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--main-purple);
  width: fit-content;
  transition: all 0.4s;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.slide-btn:hover {
  background-color: var(--main-purple);
}
.slide-btn.active {
  background-color: var(--main-purple);
}
.sliderNav .swiper-slide {
  width: fit-content;
}
.slider-nav {
  overflow: hidden;
  margin-top: 40px;
}
.slider-wrapper {
  position: relative;
  margin-top: 20px;
}
.slider-tab {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: -1000;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
}
.slider-tab.active {
  position: relative;
  opacity: 1;
  z-index: 8;
}
.slider-self-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  transition: all 0.4s;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--main-yellow);
  border: none;
  outline: none;
}
.slider-btn:hover {
  opacity: 0.8;
}
.slider-btn-next {
  transform: rotate(180deg);
}

.results-slide {
  background-color: var(--main-dark);
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.result-img {
  aspect-ratio: 387 / 414;
  overflow: hidden;
}
.result-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.results-title {
  position: absolute;
  bottom: 0;
  background-color: var(--main-dark);
  flex-shrink: 0;
  width: 100%;
  padding: 30px;
}
.swiper-slide:has(.review-slide) {
  height: auto;
}
.reviews .review-slide {
  height: auto;
}
.review-slide {
  background-color: var(--main-dark);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  height: 100%;
}
.review-head {
  display: flex;
  gap: 16px;
}
.review-head > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.rating {
  display: flex;
  gap: 4px;
}
.rating > svg {
  flex-shrink: 0;
}
.yellow-star {
  color: #fdd93e;
}
.grey-star {
  color: #494949;
}
/* sliders styles */

/* popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: grid;
  place-content: center;
  z-index: -20;
  opacity: 0;
  transition: all 0.5s;
  padding: 20px;
}
.popup.active {
  opacity: 1;
  z-index: 10000;
}

.popup__inner {
  width: 966px;
  padding: 40px;
  background-color: var(--main-purple);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.popup__inner form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.popup__inner .inputs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.popup__inner .inputs-wrap .last-input {
  grid-column: span 2;
}
.close-btn {
  cursor: pointer;
  margin-left: auto;
}
/* popup */

/* animations restyles */
.header {
  opacity: 0;
  transform: translateY(-101%);
}
.hero-bg {
  transform-origin: bottom right;
  scale: 0;
}
.hero-l-heading {
  transform: translateX(50px);
  opacity: 0;
}
.hero-btns {
  transform: translateY(40px);
  opacity: 0;
}
.hero-img {
  transform: scale(1.05);
  opacity: 0;
}

.screening__head,
.faq,
.rates-item,
.job-item,
.services-self > div,
.services-head p,
.services-head h2 {
  transform: translateY(20px);
  opacity: 0;
  will-change: transform, opacity;
}

.contacts__inner h2,
.banner-inner h2,
.reviews__head,
.faq__inner h2,
.results__head,
.rates-head,
.job-head {
  transform: translateX(20px);
  opacity: 0;
  will-change: transform, opacity;
}

.banner-img {
  transform: scale(1.05);
  opacity: 0;
  will-change: transform, opacity;
}
.marquee-scroll {
  will-change: transform;
}
/* animations restyles */

/* cf7 reset */
.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: -10px auto 0 !important;
  font-size: 14px !important;
  width: 100% !important;
  text-align: center;
  color: var(--white);
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form p {
  display: contents;
}
span.wpcf7-not-valid-tip {
  display: none !important;
}
@media screen and (max-width: 550px) {
  .wpcf7-response-output {
    width: 100% !important;
  }
}
.wpcf7-submit {
  cursor: pointer;
}
.wpcf7-not-valid {
  border: 1px solid red !important;
}
span.wpcf7-not-valid-tip {
  font-size: 12px;
}
div.wpcf7 form .wpcf7-response-output {
  margin: 0;
  border: none;
  padding: none;
}

.hero-form__form-wrap form p,
.contact-form-wrap form p,
.footer-from__wrap form p {
  display: contents;
}

.hero-form__form-wrap form p br,
.contact-form-wrap form p br,
.footer-from__wrap form p br {
  display: none;
}

.footer-from__wrap form {
  row-gap: 0px;
}
.footer-from__wrap div.wpcf7 form .wpcf7-response-output {
  grid-column: span 2;
  margin-top: 5px;
  margin-inline: auto;
}
.wpcf7-form-control-wrap {
  display: contents;
}
/* cf7 reset */
