/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import "fontawesome.min.css";
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

@keyframes lexprofitBackAnim {
  0% {
    transform: scaleX(0.7) scaleY(0.7);
  }
  25% {
    transform: scaleX(1.2) scaleY(1.2);
  }
  50% {
    transform: scaleX(1.5) scaleY(1.5);
  }
  65% {
    transform: scaleX(1.2) scaleY(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0;
  }
}
@keyframes lexprofitBorderAnim {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  50% {
    transform: scaleX(1.5) scaleY(1.5);
  }
  100% {
    transform: scaleX(2) scaleY(2);
    opacity: 0;
  }
}
@keyframes lexprofitBoundingAnim {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(0deg);
  }
  45% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  color: var(--text-color);
}

div, header {
  display: flex;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  margin: 0 auto;
}

.checklist {
  flex-direction: column;
  row-gap: 5px;
  padding-left: 10px;
}
.checklist:not(:last-child) {
  margin-bottom: 25px;
}
.checklist .item {
  font-size: 18px;
  line-height: 26px;
  color: var(--primary-color);
  column-gap: 5px;
}
.checklist .item i {
  margin-top: 4px;
  color: var(--secondary-color);
}

.topbar {
  background: var(--primary-color);
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
}
.topbar .container {
  height: 68px;
  align-items: center;
  color: #FFF;
  justify-content: center;
  column-gap: 30px;
  font-size: 26px;
}
.topbar .container .stars {
  margin-top: -7px;
}
.topbar .container .phone {
  margin-top: -6px;
  font-family: "Anton", sans-serif;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.topbar .container .phone:hover {
  color: var(--secondary-color);
}

header {
  margin-top: 68px;
}
header .container {
  gap: 50px;
  padding: 40px 0;
  align-items: center;
}
header .container .logo {
  flex-direction: column;
  font-weight: 700;
}
header .container .logo .title {
  color: var(--primary-color);
  font-family: "Anton", sans-serif;
  font-size: 45px;
  text-transform: uppercase;
}
header .container .logo .slogan {
  color: var(--secondary-color);
  font-family: "Courgette", cursive;
  font-size: 26px;
}
header .container .cta {
  margin-left: auto;
  flex-direction: column;
  font-family: "Anton", sans-serif;
  flex-shrink: 0;
}
header .container .cta .text {
  color: var(--secondary-color);
  font-size: 26px;
}
header .container .cta .phone {
  font-size: 56px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  margin-left: -9px;
  cursor: pointer;
}
header .container .cta .phone:hover span {
  text-decoration: underline;
}

.menu {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.menu .container {
  justify-content: center;
  padding: 18px 0;
}
.menu .container a {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  padding: 17px 20px 14px 20px;
  margin: 0 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}
.menu .container a:hover {
  border-bottom-color: var(--secondary-color);
}

.hero {
  overflow: hidden;
  height: 500px;
  background: var(--primary-color);
}
.hero .container {
  column-gap: 50px;
}
.hero .container .headline {
  flex-direction: column;
  padding: 40px 0;
  flex: 1;
  position: relative;
  z-index: 2;
}
.hero .container .headline h1 {
  font-size: 58px;
  color: #FFF;
  font-family: "Anton", sans-serif;
  border-bottom: 5px solid var(--secondary-color);
  padding-bottom: 20px;
}
.hero .container .headline p {
  font-size: 18px;
  line-height: 27px;
  padding: 20px 0;
  color: #FFF;
  font-weight: 500;
}
.hero .container .image {
  height: 100%;
  position: relative;
  width: 600px;
  margin-left: auto;
}
.hero .container .image:before, .hero .container .image:after {
  content: "";
  z-index: 1;
  position: absolute;
  top: -50%;
  left: 60px;
  height: 200%;
  width: 200px;
  background: var(--primary-color);
  transform: rotateZ(20deg);
  transform-origin: left top;
}
.hero .container .image:after {
  left: calc(100% + 90px);
}
.hero .container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp {
  background: var(--secondary-color);
}
.usp .container {
  justify-content: space-between;
  color: #FFF;
  font-size: 30px;
  column-gap: 20px;
  font-family: "Anton", sans-serif;
  padding: 15px 0;
}
.usp .container .item {
  align-items: center;
  column-gap: 5px;
}

.intro {
  padding: 50px 0 95px 0;
}
.intro .container {
  justify-content: center;
  padding-left: 140px;
  padding-right: 140px;
  flex-direction: column;
}
.intro .container h2 {
  font-size: 39px;
  font-family: "Anton", sans-serif;
  color: var(--primary-color);
  text-align: center;
  line-height: 60px;
}
.intro .container h3 {
  font-size: 32px;
  font-family: "Anton", sans-serif;
  color: var(--primary-color);
  text-align: center;
  line-height: 40px;
}
.intro .container h3:not(:last-child) {
  padding-bottom: 10px;
}
.intro .container h4 {
  font-size: 24px;
  font-family: "Anton", sans-serif;
  color: var(--primary-color);
  text-align: center;
  line-height: 30px;
}
.intro .container h4:not(:last-child) {
  padding-bottom: 20px;
}
.intro .container .spacer {
  min-width: 200px;
  height: 4px;
  margin: 20px auto;
  background: var(--secondary-color);
}
.intro .container p {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.intro .container p:not(:last-child) {
  padding-bottom: 20px;
}

.function .container {
  justify-content: center;
  flex-direction: column;
}
.function .container h2 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  color: var(--primary-color);
}
.function .container .steps {
  padding-top: 75px;
  gap: 50px;
}
.function .container .steps .step {
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.function .container .steps .step .icon {
  background: var(--secondary-color);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  color: #FFF;
}
.function .container .steps .step h3 {
  padding: 20px 0 10px 0;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  color: var(--primary-color);
}
.function .container .steps .step p {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.section {
  padding-top: 130px;
}
.section .container .content {
  width: 65%;
  flex-direction: column;
}
.section .container .content h2 {
  font-size: 38px;
  line-height: 46px;
  color: var(--primary-color);
  font-family: "Anton", sans-serif;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--secondary-color);
}
.section .container .content h3 {
  font-size: 25px;
  line-height: 31px;
  color: var(--primary-color);
  font-family: "Anton", sans-serif;
  margin-bottom: 15px;
}
.section .container .content p {
  font-size: 18px;
  line-height: 26px;
}
.section .container .content p:not(:last-child) {
  margin-bottom: 25px;
}
.section .container .content strong {
  font-weight: 800;
  color: var(--primary-color);
}
.section .container .content blockquote {
  background: var(--highlight-color);
  padding: 20px 25px;
}
.section .container .content blockquote:not(:last-child) {
  margin-bottom: 25px;
}
.section .container .content blockquote p {
  color: var(--primary-color);
}
.section .container .content .checklist:not(:last-child) {
  margin-bottom: 25px;
}
.section .container .border {
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 30px;
}
.section .container .sidebar {
  flex: 1;
  flex-direction: column;
  padding: 0 15px;
}
.section .container .sidebar .widget {
  flex-direction: column;
}
.section .container .sidebar .widget:not(:last-child) {
  padding-bottom: 80px;
}
.section .container .sidebar .widget .title {
  align-items: center;
  font-size: 24px;
  line-height: 32px;
  color: var(--secondary-color);
  column-gap: 10px;
  font-family: "Anton", sans-serif;
  padding-bottom: 20px;
}
.section .container .sidebar .widget .title i {
  color: var(--primary-color);
  margin-top: 2px;
}
.section .container .sidebar .widget img {
  width: 100%;
  height: auto;
}
.section .container .sidebar .widget p {
  font-size: 16px;
  line-height: 25px;
}

.banner {
  background: var(--primary-color);
  margin-top: 150px;
}
.banner .container {
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  padding: 70px 0;
  font-family: "Anton", sans-serif;
  font-weight: 900;
}
.banner .container h2 {
  font-size: 33px;
  line-height: 46px;
  color: var(--secondary-color);
  text-align: center;
}
.banner .container h4 {
  font-size: 50px;
  line-height: 62px;
  color: #FFF;
  text-align: center;
}
.banner .container .phone {
  display: flex;
  font-size: 48px;
  line-height: 56px;
  color: var(--primary-color);
  background: #FFF;
  padding: 20px 45px;
  align-items: center;
  column-gap: 5px;
}
.banner .container .phone:hover {
  background: var(--secondary-color);
  color: #FFF;
}

.reviews {
  padding-top: 60px;
}
.reviews .container {
  flex-direction: column;
  row-gap: 20px;
}
.reviews .container h2 {
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  color: var(--primary-color);
}
.reviews .container .list {
  gap: 20px;
}
.reviews .container .list .review {
  flex: 1;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  align-items: center;
  row-gap: 10px;
}
.reviews .container .list .review .author {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  line-height: 28px;
}
.reviews .container .list .review p {
  font-size: 16px;
  line-height: 22px;
}
.reviews .container .list .review .stars {
  margin-top: 10px;
  font-size: 24px;
  color: var(--secondary-color);
}

.related {
  padding: 60px 0;
  flex-direction: column;
}
.related .title {
  justify-content: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 20px;
  line-height: 22px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.related .links .container {
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.related .links .container a {
  font-size: 18px;
  line-height: 24px;
  color: var(--primary-color);
}
.related .links .container a:hover {
  text-decoration: underline;
}
.related .links .container span:last-child {
  display: none;
}

footer {
  background: var(--primary-color);
}
footer .container {
  padding: 25px 0;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  row-gap: 8px;
  color: #FFF;
}
footer .container span {
  font-size: 15px;
  line-height: 20px;
}
footer .container .links {
  display: flex;
  column-gap: 20px;
}
footer .container .links a {
  font-size: 15px;
  line-height: 20px;
}
footer .container .links a:hover {
  text-decoration: underline;
}

@media (max-width: 1219px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .topbar .stars {
    display: none;
  }

  header .container {
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
  }
  header .container .logo .title {
    text-align: center;
  }
  header .container .logo .slogan {
    text-align: center;
  }
  header .container .cta {
    align-items: center;
    margin: 0 auto;
  }
  header .container .cta .text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  header .container .cta .phone {
    font-size: 40px;
    line-height: 52px;
  }

  .menu {
    display: none;
  }

  .hero {
    height: auto;
  }
  .hero .container .image {
    display: none;
  }
  .hero .container .headline h1 {
    font-size: 48px;
    line-height: 56px;
  }
  .hero .container .headline p {
    text-align: center;
    padding-bottom: 0;
  }

  .usp .container {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 26px;
    line-height: 32px;
  }

  .intro {
    padding: 50px 0 50px;
  }
  .intro .container h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .function .container h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .function .container .steps {
    flex-direction: column;
    padding-top: 30px;
  }
  .function .container .steps .step .icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  .function .container .steps .step h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .section {
    padding-top: 50px;
  }
  .section .container {
    flex-direction: column-reverse;
    row-gap: 50px;
  }
  .section .container .content {
    width: 100%;
  }
  .section .container .content h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .section .container .content h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .section .container .border {
    display: none;
  }
  .section .container .sidebar .widget:not(:last-child) {
    padding-bottom: 50px;
  }
  .section .container .sidebar .widget .title {
    font-size: 22px;
    line-height: 30px;
  }

  .banner {
    margin-top: 50px;
  }
  .banner .container h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .banner .container h4 {
    font-size: 40px;
    line-height: 50px;
  }
  .banner .container .phone {
    font-size: 28px;
    line-height: 40px;
    padding: 10px 20px;
  }

  .reviews .container .list {
    flex-direction: column;
  }

  .related {
    padding: 30px 0;
  }
  .related .links .container {
    flex-direction: column;
    align-items: center;
  }
  .related .links .container a {
    text-align: center;
  }
  .related .links .container span {
    display: none;
  }
}
@media (max-width: 320px) {
  header .container .cta .phone i {
    display: none;
  }

  .banner .container .phone i {
    display: none;
  }
}
.fixed-call-button {
  display: block;
  background: none;
  border: 0;
  border-radius: 0;
  position: fixed;
  float: none;
  font-style: normal;
  text-transform: none;
  width: 80px;
  max-width: none;
  max-height: none;
  opacity: 1;
  outline: 0;
  overflow: visible;
  text-decoration: none;
  vertical-align: top;
  word-spacing: normal;
  letter-spacing: normal;
  color: var(--cta-color);
  bottom: 8%;
  right: 7%;
  margin-left: -40px;
  margin-top: -40px;
  height: 80px;
  text-align: center;
  font-size: 10px;
  line-height: 80px;
  -webkit-font-smoothing: antialiased;
  z-index: 1000;
  cursor: pointer;
}
.fixed-call-button * {
  transition: 0.5s;
}
.fixed-call-button i {
  color: var(--cta-icon-color);
  font-size: 30px;
  padding-top: 25px !important;
}
.fixed-call-button:after, .fixed-call-button:before {
  content: "";
  border-radius: 100%;
  position: absolute;
  width: 80px;
  height: 80px;
  transform-origin: center center;
  box-sizing: border-box;
  z-index: 9;
  transition: 0.5s;
}
.fixed-call-button:after {
  background: var(--cta-color);
  animation: lexprofitBackAnim 3s linear infinite;
}
.fixed-call-button:before {
  border: 1px solid var(--cta-color);
  animation: lexprofitBorderAnim 3s -0.5s linear infinite;
}
.fixed-call-button a {
  z-index: 10;
  position: absolute;
  background-color: var(--cta-color);
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.fixed-call-button a:hover {
  animation: lexprofitBoundingAnim 1s linear infinite;
}
.fixed-call-button:hover a {
  background-color: #bbb;
}
.fixed-call-button:hover:after {
  background-color: #aaa;
}
.fixed-call-button:hover:before {
  border-color: #aaa;
}
@media (max-width: 768px) {
  .fixed-call-button {
    right: 18%;
    bottom: 5%;
  }
}

/*# sourceMappingURL=style.css.map */
