/* 
================================================================
============================ FONTS =============================
================================================================ 
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* font-family: "Inter", sans-serif; */
/* 
================================================================
============================ FONTS =============================
================================================================ 
*/

:root {
  --primary: #2af350;
  --secondary: #232230;
}

/* 
================================================================
============================ COMMON ============================
================================================================ 
*/
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.container {
  padding-inline: 32px;
  margin-inline: auto;
  max-width: 1280px;
}
.anchor {
  display: block;
  height: 79px;
  margin-top: -79px;
  visibility: hidden;
}
p {
  font-size: 16px;
}
button {
  all: unset;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 540px;
  }
  .anchor {
    height: 63px;
    margin-top: -63px;
  }
}
/* 
================================================================
============================ COMMON ============================
================================================================ 
*/

h2 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
  position: relative;
  margin-bottom: 60px;
  word-break: break-word;
}
h2::after {
  content: "";
  background-color: var(--primary);
  height: 3px;
  width: 100%;
  top: calc(100% + 29px);
  left: 0;
  position: absolute;
}
h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  word-break: break-word;
}
.btn {
  all: unset;
  color: #000;
  background-color: var(--primary);
  padding: 16px 58px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  transition: none;
}
.btn.btn-back-white {
  background-color: transparent;
  padding: 0 !important;
}
.btn.btn-back-white .btn-back-white-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 100px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  padding: 16px 58px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
}
.btn.btn-back-white .btn-back-white-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 100px;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn.btn-back-white img {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 40px;
  z-index: -1;
}
.btn.btn-back-white:hover .btn-back-white-text {
  transform: translateX(-56px);
}
ul {
  list-style-type: none;
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  h2 {
    text-align: center;
  }
  h2::after {
    content: none;
  }
  h3 {
    text-align: center;
  }
  .btn {
    font-size: 16px;
    padding: 10px 40px;
  }
  .btn-back-white-text {
    font-size: 16px !important;
    padding: 10px 40px !important;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 12px;
  }
}
@media screen and (pointer: coarse) {
  .btn.btn-back-white:hover .btn-back-white-text,
  .btn.btn-back-white:focus .btn-back-white-text {
    transform: none;
  }
}

/* 
================================================================
========================== PRE-LOADER ==========================
================================================================ 
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary);
  width: 100vw;
  height: 100vh;
  -webkit-animation: fade-out 2000ms ease-in-out;
  animation: fade-out 2000ms ease-in-out;
  visibility: hidden;
}
#status {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  margin: -50px 0 0 -50px;
}
.preloader {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
}
.preloader > div {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate-elements 8000ms infinite linear;
  animation: rotate-elements 8000ms infinite linear;
}
.preloader div div {
  border-radius: 50%;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  opacity: 0.1;
}
.preloader div div:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: var(--primary);
  -webkit-animation: pulse-elements 1000ms infinite ease alternate;
  animation: pulse-elements 1000ms infinite ease alternate;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.preloader div div:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
  background: var(--primary);
  -webkit-animation: pulse-elements 1000ms infinite ease alternate;
  animation: pulse-elements 1000ms infinite ease alternate;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.preloader div div:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 50%;
  background: var(--primary);
  -webkit-animation: pulse-elements 1000ms infinite ease alternate;
  animation: pulse-elements 1000ms infinite ease alternate;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
.preloader div div:nth-child(4) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background: var(--primary);
  -webkit-animation: pulse-elements 1000ms infinite ease alternate;
  animation: pulse-elements 1000ms infinite ease alternate;
  -webkit-animation-delay: 750ms;
  animation-delay: 750ms;
}
@-webkit-keyframes rotate-elements {
  from {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes rotate-elements {
  from {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@-webkit-keyframes pulse-elements {
  from {
    top: -50%;
    left: -50%;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0.8;
  }
}
@keyframes pulse-elements {
  from {
    top: -50%;
    left: -50%;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0.8;
  }
}
@keyframes fade-out {
  0% {
    background-color: #000;
    opacity: 1;
    z-index: 100000000;
    visibility: visible;
  }
  75% {
    background-color: var(--secondary);
    opacity: 1;
    z-index: 100000000;
    visibility: visible;
  }
  90% {
    opacity: 0;
    z-index: 100000000;
    visibility: visible;
  }
  100% {
    opacity: 0;
    z-index: -100000000;
    visibility: hidden;
  }
}
/* 
================================================================
========================== PRE-LOADER ==========================
================================================================ 
*/

/* 
================================================================
============================ NAVBAR ============================
================================================================ 
*/
.navbar-01.nav-conditions {
  background-color: var(--secondary) !important;
}
.navbar-01 {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999999;
  transition: all 0.5s ease-in-out;
  padding-block: 4px;
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar-01.nav-colored {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 12px;
}
.navbar-01 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar-01 h1 {
  margin: 0;
}
.navbar-01 a {
  display: block;
}
.navbar-01 .right-side {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar-01 .right-side .btn.btn-back-white .btn-back-white-text {
  font-size: 16px;
  padding: 10px 36px;
}
.navbar-01 .right-side .btn.btn-back-white .btn-back-white-img img {
  filter: invert(1);
  width: 32px;
  right: 4px;
}
.navbar-01 button.menu {
  position: relative;
  width: 36px;
  height: 28px;
  z-index: 121321321;
  transition: all 0.5s ease-in-out;
}
.navbar-01 button.menu.menu-opened {
  transform: translateY(8px);
}
.navbar-01 button.menu .menu-line:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}
.navbar-01 button.menu.menu-opened .menu-line:nth-child(1) {
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
}
.navbar-01 button.menu .menu-line:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}
.navbar-01 button.menu.menu-opened .menu-line:nth-child(2) {
  filter: invert(30%) sepia(97%) saturate(540%) hue-rotate(69deg) brightness(100%) contrast(91%);
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
}
.navbar-01 button.menu .menu-line:nth-child(3) {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}
.navbar-01 button.menu.menu-opened .menu-line:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
}
.navbar-01 .menu-expander .menu-expander-bottom .btn-back-white .btn-back-white-img img {
  filter: invert(1);
  width: 36px;
}
.navbar-01 .right-side .btn.btn-back-white:hover .btn-back-white-text {
  transform: translateX(-40px);
}
.navbar-01 .menu img {
  width: 100%;
}
.navbar-01 .menu-expander {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  background-color: rgba(0, 0, 0, 0.97);
  top: 0;
  right: 0;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 1s ease-in-out, visibility 1s;
  overflow: auto;
  visibility: hidden;
}
.navbar-01 .menu-expander.menu-open {
  transform: translateX(0);
  visibility: visible;
}
.navbar-01 .menu-expander .menu-logo {
  margin-top: 16px;
}
.navbar-01 .menu-expander .container {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  position: relative;
}
.navbar-01 .menu-expander .menu-expander-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  height: 100%;
  width: 100%;
  gap: 32px;
}
.navbar-01 .menu-expander .menu-expander-content .btn {
  text-align: center;
}
.navbar-01 .menu-expander .menu-expander-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.navbar-01 .menu-expander .menu-expander-bottom img {
  width: 32px;
}
.navbar-01 .menu-expander .menu-expander-bottom .menu-social {
  display: flex;
  gap: 22px;
  height: fit-content;
}
.navbar-01 .menu-expander ul {
  margin-top: 30px;
  width: fit-content;
}
.navbar-01 .menu-expander li {
  margin-bottom: 4px;
}
.navbar-01 .menu-expander .menu-item-link {
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: all 0.5s ease-in-out;
  padding-block: 12px;
  gap: 64px;
}
.navbar-01 .menu-expander .menu-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  max-width: 0px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.navbar-01 .menu-expander .menu-item-link:hover::after {
  max-width: 1280px;
}
.navbar-01 .menu-expander .menu-item-link img {
  filter: brightness(0) invert(1);
  width: 24px;
  transform: rotate(-90deg) translateY(-8px);
  transition: all 0.5s ease-in-out;
}
.navbar-01 .menu-expander .menu-item-link:hover img {
  transform: rotate(-90deg) translateY(0px);
}
.navbar-01 .language {
  display: flex;
  gap: 16px;
}
.navbar-01 .language-item {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: block !important;
}
.navbar-01 a.language-item:hover {
  opacity: 0.75;
}
.navbar-01 .language-item.active {
  font-weight: 700;
  position: relative;
}
.navbar-01 .language-item.active::after {
  content: "";
  width: 150%;
  height: 2px;
  top: 100%;
  left: -25%;
  background-color: var(--primary);
  position: absolute;
}
@media screen and (max-width: 992px) {
  .navbar-01 .right-side > a {
    display: none;
  }
  .navbar-01 .menu-expander {
    transition: transform 0.8s ease-in-out;
  }
  .navbar-01 .menu-expander .menu-item-link {
    font-size: 24px;
  }
  .navbar-01 .menu-expander .menu-item-link img {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .navbar-01 .menu-expander {
    width: 100vw;
  }
  .navbar-01 .menu-expander .menu-item-link {
    font-size: 20px;
  }
  .navbar-01 .menu-expander .menu-item-link img {
    width: 16px;
  }
}
@media screen and (max-width: 576px) {
  .navbar-01 {
    height: 64px;
  }
  .navbar-01 .right-side a {
    display: none;
  }
  .navbar-01 a img {
    width: 64px;
  }
  .navbar-01 button.menu {
    width: 28px;
    height: 20px;
  }
  .navbar-01 button.menu.menu-opened .menu-line {
    width: 25px !important;
  }
  .navbar-01 .menu-expander {
    transition: transform 0.5s ease-in-out;
  }
  .navbar-01 .menu-expander .menu-item-link {
    font-size: 16px;
    gap: 32px;
  }
  .navbar-01 .language-item {
    font-size: 13px;
  }
}
/* 
================================================================
============================ NAVBAR ============================
================================================================ 
*/

/* 
================================================================
============================= HOME =============================
================================================================ 
*/
.home {
  position: relative;
  padding-bottom: 100px;
  color: #fff;
  padding-top: 150px;
}
.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--secondary);
  width: 100%;
  height: 100%;
  z-index: -100;
}
.home .container,
.home .container #home-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.home .container {
  gap: 32px;
}
.home .description {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.home .subtext {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
  text-align: center;
}
.home h2 {
  align-self: flex-start;
  width: 100%;
  margin-top: 120px;
}

.home .slide-show {
  width: 100%;
  position: relative;
}
.home .slide-show::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: calc(40% + 100px);
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: -10;
}

.home .slide-show .desktop {
  width: 100%;
}
.home .slide-show .desktop-slide {
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  width: 75%;
  height: 73%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 2px;
  z-index: -1;
}
.home .slide-show .desktop-slide img,
.home .slide-show .mobile-slide img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.home .slide-show .mobile {
  width: auto;
  height: 100%;
  position: absolute;
  top: 20%;
  right: 0;
}
.home .slide-show .mobile-slide {
  position: absolute;
  top: 70%;
  left: 80.9%;
  width: 27%;
  height: 89%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 30px;
}
.home .swiper {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home {
    padding-top: 128px;
    padding-bottom: 64px;
  }
  .home .container {
    gap: 32px;
  }
  .home .description {
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
  }
  .home .subtext {
    font-size: 16px;
    font-weight: 400;
  }
  .home h2 {
    margin-top: 32px;
  }
  .home .subtext {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
  .home .slide-show::after {
    height: calc(50% + 64px);
    top: 50%;
  }
  .home .slide-show .desktop,
  .home .slide-show .desktop-slide {
    display: none;
  }
  .home .slide-show .mobile {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    right: auto;
  }
  .home .slide-show .mobile-slide {
    top: 50%;
    left: 50%;
    width: 70%;
    height: 89%;
  }
}
/* 
================================================================
============================= HOME =============================
================================================================ 
*/

/* 
================================================================
======================== YOUR BUSINESS =========================
================================================================ 
*/
.your-business {
  padding-bottom: 150px;
}
.your-business h2 {
  margin-top: 0;
}
.your-business .your-business-list {
  display: flex;
  gap: 32px;
  align-self: flex-start;
  width: 100%;
}
.your-business .your-business-list .your-business-item {
  color: #000;
  flex: 1;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.your-business .your-business-list .your-business-item p {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .your-business .your-business-list {
    flex-direction: column;
    text-align: center;
  }
  .your-business .your-business-list .your-business-item {
    position: relative;
  }
  .your-business .your-business-list .your-business-item::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
  }
}
/* 
================================================================
======================== YOUR BUSINESS =========================
================================================================ 
*/

/* 
================================================================
========================= SUBSCRIPTION =========================
================================================================ 
*/
.subscription {
  background-color: var(--secondary);
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100vw;
}
.subscription h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
}
.subscription h2::after {
  content: none;
}
.subscription h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 22px;
  text-align: left;
}
.subscription .container {
  padding-block: 100px;
  z-index: 3;
  position: relative;
}
.subscription .subscription-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
}
.subscription .subscription-image::before {
  content: "";
  position: absolute;
  background: var(--secondary);
  opacity: 0.9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.subscription .subscription-image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.subscription .subscription-details {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.subscription .subscription-item {
  flex: 1;
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: all 0.3s ease-in-out;
  max-width: 350px;
}
.subscription .subscription-item:hover {
  transform: scale(1.03);
}
.subscription .subscription-item:nth-child(2) {
  background-color: #5f5f5f;
  color: #fff;
}
.subscription .subscription-item:nth-child(2) h3 {
  color: #fff;
}
.subscription .subscription-price {
  color: var(--primary);
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: 1px;
}
.subscription .subscription-month {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2.508px;
}
.subscription .subscription-have {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 28px;
}
.subscription ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  list-style-image: url("../assets/icons/check.svg");
  padding-left: 24px;
}
.subscription li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.subscription .subscription-item-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.subscription .subscription-iva {
  opacity: 0.7;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.subscription .btn {
  font-size: 14px;
  padding: 12px 16px;
}
@media screen and (max-width: 992px) {
  .subscription h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .subscription .subscription-details {
    gap: 20px;
  }
  .subscription .subscription-item {
    gap: 24px;
  }
  .subscription .subscription-price {
    font-size: 55px;
    line-height: 41px;
  }
  .subscription .subscription-month {
    font-size: 11px;
  }
  .subscription ul {
    gap: 8px;
    margin-top: 13px;
  }
  .subscription li {
    font-size: 14px;
  }
  .subscription .btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .subscription .container {
    padding-block: 60px;
  }
  .subscription h2 {
    text-align: center;
    font-size: 40px;
  }
  .subscription h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .subscription .subscription-details {
    gap: 10px;
  }
  .subscription .subscription-item {
    gap: 26px;
  }
  .subscription .subscription-price {
    font-size: 40px;
    line-height: 41px;
  }
  .subscription .subscription-have {
    font-size: 12px;
    margin-top: 10px;
  }
  .subscription ul {
    gap: 5px;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .subscription li {
    font-size: 12px;
  }
  .subscription .subscription-iva {
    font-size: 10px;
  }
}
@media screen and (max-width: 620px) {
  .subscription .subscription-details {
    flex-direction: column;
    gap: 20px;
  }
  .subscription .subscription-item {
    max-width: none;
  }
  .subscription .subscription-iva {
    font-size: 9px;
  }
}
/* 
================================================================
========================= SUBSCRIPTION =========================
================================================================ 
*/

/* 
================================================================
=========================== SERVICES ===========================
================================================================ 
*/
.services {
  padding-block: 96px;
}
.services .services-list {
  display: flex;
  gap: 32px;
  align-self: flex-start;
  width: 100%;
}
.services .services-list .services-item {
  color: #000;
  flex: 1;
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: relative;
}
.services .services-list .services-item p {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .services .services-list {
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
    text-align: center;
  }
  .services .services-list .services-item::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
  }
}
/* 
================================================================
=========================== SERVICES ===========================
================================================================ 
*/

/* 
================================================================
========================== CONTACT US ==========================
================================================================ 
*/
.contactUs {
  padding-block: 120px;
  overflow: hidden;
  position: relative;
}
.contactUs video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.contactUs .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.contactUs .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contactUs p {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.contactUs .btn-back-white.mobile-only {
  display: none;
}
.contactUs .btn-back-white.mobile-only .btn-back-white-text {
  width: fit-content;
}
#talk-with-us-left img {
  right: auto;
  left: 8px;
}
#talk-with-us-left img,
#talk-with-us-right img {
  width: 28px;
}
#talk-with-us-left.btn-back-open {
  transform: translateX(-44px);
}
#talk-with-us-right.btn-back-open {
  transform: translateX(44px);
}
.contactUs .btn-back-white-img img {
  width: 36px;
}

@media screen and (max-width: 992px) {
  .contactUs .btn-back-white-img img {
    width: 32px;
  }
}
@media screen and (max-width: 576px) {
  .contactUs p {
    font-size: 24px;
  }
}
@media screen and (pointer: coarse) {
  .contactUs .btn-back-white.desktop-only {
    display: none;
  }
  .contactUs .btn-back-white.mobile-only {
    display: initial;
  }
}
/* 
================================================================
========================== CONTACT US ==========================
================================================================ 
*/

/* 
================================================================
============================= FAQS =============================
================================================================ 
*/
.faq {
  background-color: var(--secondary);
  padding-block: 100px;
  padding-bottom: 98px;
}
.faq h2 {
  color: #fff;
  font-size: 61.365px;
  font-style: normal;
  font-weight: 700;
  line-height: 66.159px; /* 107.813% */
  letter-spacing: -1.841px;
  margin: 0;
  margin-bottom: 32px;
}
.faq h2::after {
  content: none;
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq .faq-item {
  background-color: #fff;
  padding: 24px 20px;
  border-radius: 20px;
  position: relative;
}
.faq .faq-item::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
  max-width: 0%;
}
.faq .faq-item .faq-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq .faq-item .faq-title h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px; /* 125% */
  position: relative;
  text-align: left;
}
.faq .faq-item .faq-title h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out 0.3s;
  max-width: 100%;
}
.faq .faq-item .faq-title .icon {
  flex: none;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: 31px;
  height: 31px;
  box-shadow: 0px 0px 6.975px 0px var(--primary);
  padding-top: 2px;
  transition: all 0.5s ease-in-out;
}
.faq .faq-item .faq-body {
  max-height: 0px;
  color: #6c6c6c;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  margin-top: 8px;
}
.faq .faq-item.faq-open::after {
  max-width: 100%;
  transition: all 0.5s ease-in-out 0.3s;
}
.faq .faq-item.faq-open .faq-title h3::after {
  max-width: 0%;
  transition: all 0.5s ease-in-out;
}
.faq .faq-item.faq-open .faq-title .icon {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .faq .faq-item .faq-title h3 {
    font-size: 14px;
  }
  .faq .faq-item .faq-body {
    font-size: 12px;
  }
}
/* 
================================================================
============================= FAQS =============================
================================================================ 
*/

/* 
================================================================
============================ FOOTER ============================
================================================================ 
*/
footer {
  background-color: var(--secondary);
  padding-top: 100px;
  padding-bottom: 50px;
  color: #fff;
}
footer .footer-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
footer .footer-top::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
footer .footer-contacts {
  display: flex;
  gap: 32px;
  align-items: center;
}
footer .footer-contact {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 260px;
  justify-content: end;
  text-decoration: none;
}
footer .footer-contact p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16.443px; /* 126.484% */
  letter-spacing: 2.145px;
  color: #fff;
  text-decoration: none;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
footer .footer-social {
  display: flex;
  gap: 22px;
  height: fit-content;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .footer-links-top {
  display: flex;
  gap: 32px;
  position: relative;
}
footer .footer-links-top a {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.443px; /* 102.769% */
  letter-spacing: 2.145px;
  color: #fff;
  text-decoration: none;
}
footer .footer-author {
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.443px; /* 102.769% */
  letter-spacing: 2.145px;
}
footer .footer-author a {
  color: var(--primary);
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  footer {
    padding-bottom: 32px;
  }
  footer .footer-top {
    flex-direction: column-reverse;
    gap: 32px;
  }
  footer .footer-top > img {
    width: 100px;
  }
  footer .footer-top::after {
    bottom: 0;
  }
  footer .footer-bottom {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  footer .footer-links-top a,
  footer .footer-links-top a:not(:last-of-type)::after,
  footer .footer-author {
    font-size: 12px;
    font-weight: 400;
    line-height: 9.329px; /* 164.43% */
    letter-spacing: 1.217px;
    color: #fff;
    text-decoration: none;
  }
  footer .footer-author {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding-top: 0;
  }
  footer .footer-contacts {
    flex-direction: column;
    gap: 55px;
    margin-bottom: 32px;
  }
  footer .footer-contact {
    flex-direction: column;
  }
  footer .footer-contact img {
    width: 60px;
  }
  footer .footer-links {
    gap: 32px;
  }
  footer .footer-links-top {
    flex-direction: column;
    gap: 16px;
  }
  footer .footer-links-top a {
    text-align: center;
  }
}
/* 
================================================================
============================ FOOTER ============================
================================================================ 
*/

/* 
================================================================
========================== CONDITIONS ==========================
================================================================ 
*/
.conditions h1::after,
.conditions h1::before,
.conditions h2::after,
.conditions h2::before {
  content: none;
}
.conditions h1 {
  padding-top: 180px;
  margin-bottom: 100px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.conditions h2 {
  margin-top: 70px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}
.conditions ul {
  list-style-type: initial;
  padding-left: 16px;
}
.conditions ol {
  padding-left: 16px;
}
.conditions li {
  padding-top: 16px;
  font-size: 16px !important;
}
.conditions p {
  font-size: 16px !important;
}
@media screen and (max-width: 768px) {
  .conditions h1 {
    font-size: 40px;
  }
  .conditions h2 {
    margin-top: 70px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }
}
/* 
================================================================
========================== CONDITIONS ==========================
================================================================ 
*/

/* 
================================================================
=========================== COOKIES ===========================
================================================================ 
*/
.freeprivacypolicy-com---palette-light.freeprivacypolicy-com---nb {
  position: fixed;
  left: 0;
  bottom: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -8px 12px;
  z-index: 10000000;
}
.freeprivacypolicy-com---palette-light .cc-nb-okagree,
.freeprivacypolicy-com---palette-light .cc-nb-reject,
.freeprivacypolicy-com---palette-light .cc-cp-foot-save {
  background-color: var(--primary) !important;
  color: #000 !important;
}
/* 
================================================================
=========================== COOKIES ===========================
================================================================ 
*/
