@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root{
    --white: #fff;
    --black: #040807;
    --transition: 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --a-1: #fc8374;
    --a-2: #72edfd;
    --a-3: #a1b9ff;
    --a-4: #fd72bc;
    --a-5: #72fdbc;
    --hover: var(--a-1);
    --b-1: #34130e;
    --b-2: #0e1034;
    --b-3: #1f0e34;
    --b-4: #340e28;
    --b-5: #22340e;
    --bg: var(--b-1);
    --c-1: #64111299;
    --c-2: #11346499;
    --c-3: #36116499;
    --c-4: #64115299;
    --c-5: #11643d99;
    --extra-bg: var(--c-1);
}

body{
  box-sizing: border-box;
  font-family: 'Wix Madefor Text', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  direction: ltr;
  background-color: var(--bg);
}
*{
  box-sizing: border-box;
}
a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.module{
  padding: 65px 0;
  color: var(--white);
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.main-nav{
  padding: 26px 0;
  color: var(--white);
}

.main-nav-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 12px;
}

.main-nav-col{
  flex-grow: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
}

.main-nav-box{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box{
  position: relative;
}

.logo-img{
  width: 80px;
  height: 80px;
  position: absolute;
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-img > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-title{
  text-align: center;
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.2px;
  transition: var(--transition);
}

.logo-box:hover > .logo-title,
.logo-box:focus > .logo-title{
  color: var(--hover);
}

.menu-nav{
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 12px;
}

.menu-link{
  color: var(--white);
  transition: var(--transition);
  font-weight: 800;
  letter-spacing: 1.1px;
}

.menu-link:hover,
.menu-link:focus{
  color: var(--hover);
}

.drop{
  position: relative;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 1.1px;
  transition: var(--transition);
  padding: 12px;
}

.drop-menu{
  display: none;
}

.drop:hover > .drop-menu,
.drop:focus > .drop-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: var(--hover);
  border-radius: 20px;
  padding: 12px;
  z-index: 2;
}

.drop-link{
  display: inline-block;
  color: var(--white);
  transition: var(--transition);
  width: 100%;
  height: 100%;
}

.drop-link:hover,
.drop-link:focus{
  transform: translateX(2px);
  -webkit-transform: translateX(2px);
}

.hero{
  position: relative;
  color: var(--white);
}

.hero::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg));
}

.hero-img{
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 200px 0;
  background: url('media/hero-bg-1920x10800.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.hero-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-box{
  position: relative;
}

.hero-text{
  text-align: center;
  font-size: 20px;
  letter-spacing: 1.2px;
  font-weight: 400;
  padding: 65px 19px;
}

.partners-row{
  display: flex;
  flex-wrap: wrap;
  background-color: #f0f8ff0a;
  flex-direction: column-reverse;
  gap: 19px;
  border-radius: 10px;
}

.partners-col{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 19px;
}

.partners-img{
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-img > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.row-2{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 19px;
}

.col-2{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 19px;
}

.au-col{
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.au-img-box{
  position: relative;
  width: 90%;
  height: 400px;
  margin: 0 auto;
}

.triangle-1{
  clip-path: polygon(50% 0%, 89% 2%, 100% 15%, 58% 100%, 42% 100%, 0 15%, 11% 2%);
  width: 90%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.triangle-2,
.triangle-3{
  display: none;
}


.triangle-1 > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  animation: pulse 5s linear infinite;
}

.triangle-2 > img,
.triangle-3 > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  opacity: 0.7;
}

.triangle-2:hover > img,
.triangle-2:focus > img,
.triangle-3:hover > img,
.triangle-3:focus > img{
  opacity: 1;
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
}

@keyframes pulse{
  0%{
    opacity: 0.5;
    transform: scale(1);
  }
  50%{
    opacity: 1;
    transform: scale(1.04);
  }
  100%{
    opacity: 0.5;
    transform: scale(1);
  }
}


.au-box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 19px;
}

.au-title{
  font-size: 25px;
  font-weight: 800;
  color: var(--hover);
}

.au-text{
  text-align: center;
}

.col-rev{
  display: flex;
  flex-direction: column-reverse;
}

.main-box{
  background-color: var(--white);
  padding: 74px 19px;
  border-radius: 10px;
}

.price,
.title{
  font-size: 25px;
  text-transform: uppercase;
  background-image: linear-gradient(to bottom, var(--hover), var(--bg));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--hover);
  display: table;
  margin-bottom: 23px;
  font-weight: 800;
}
@media (max-width: 576px) {
  .title {
    font-size: 16px !important;
  }
  .contact-link {
    font-size: 12px !important;
  }
}
.sec-title{
  font-size: 25px;
  text-transform: uppercase;
  background-image: linear-gradient(to bottom, var(--hover), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--hover);
  display: table;
  margin-bottom: 23px;
  font-weight: 800;
}

.main-img{
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 19px 0;
}

.main-img > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.com-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 19px;
}

.com-col{
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.com-box{
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 32px 19px;
}

.quote{
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hover);
}

.quote > svg{
  width: 26px;
  height: 26px;
}

.com-text{
  border-bottom: 1px solid hsla(0, 0%, 100%, .1);
  padding-bottom: 19px;
}

.author-box{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}

.author-img{
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 0%;
}

.author-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serv-wrapper{
  background-color: var(--hover);
  border-radius: 10px;
  padding: 65px 19px;
}

.serv-section-title{
  font-size: 25px;
  text-transform: uppercase;
  color: var(--bg);
  display: table;
  margin-bottom: 23px;
  font-weight: 800;
}

.serv-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 19px;
}

.serv-col{
  background-color: var(--extra-bg);
  border-radius: 10px;
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 19px;
}

.serv-box{
  display: flex;
  flex-direction: column;
  gap: 19px;
  height: 100%;
  box-sizing: border-box;
}

.serv-img{
  width: 50px;
  height: 50px;
  color: var(--white);
}

.serv-img > svg{
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.serv-img:hover > svg,
.serv-img:focus > svg{
  opacity: 0.7;
}

.serv-title{
  font-size: 20px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 1px;
  transition: var(--transition);
}

.serv-title:hover,
.serv-title:focus{
  opacity: 0.7;
}

.serv-content{
  color: var(--white);
}

.art-img{
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.art-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.art-img:hover > img,
.art-img:focus > img{
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
}

.reas-wr{
  background-color: var(--white);
  border-radius: 10px;
}

.reas-box{
  color: var(--black);
  display: flex;
  flex-direction: column-reverse;
  gap: 19px;
}

.reas-item{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

.reas-icon{
  width: 26px;
  height: 26px;
  color: var(--hover);
}

.reas-icon > svg{
  width: 100%;
  height: 100%;
}

.com-mod{
  padding-bottom: 0;
}

.footer{
  background: url('media/overlay-J0v0.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 19px;
}

.footer-row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 19px;
}

.footer-col{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 19px;
}

.footer-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.form-col{
  background-color: var(--white);
  border-radius: 10px;
}

.form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: var(--hover);
}

.contact-page-form{
  width: 100%;
}

.contact-page-form > input,
.contact-page-form > textarea,
.input-usercomponentpart,
.textarea-usercomponentpart{
  width: 100%;
  padding: 5px 12px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--black);
  background-color: transparent;
  box-sizing: border-box;
}

.privacy{
  color: var(--black);
  transition: var(--transition);
}

.privacy:hover,
.privacy:focus{
  color: var(--hover);
}

.footer-box{
  height: 100%;
}

.footer-menu-nav{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 19px;
}

.footer-menu-item{
  padding-bottom: 12px;
  border-bottom: 1px solid var(--extra-bg);
}

.footer-menu-item > a{
  color: var(--white);
  width: 100%;
  display: inline-block;
  transition: var(--transition);
}

.footer-menu-item:hover > a,
.footer-menu-item:focus > a{
  color: var(--hover);
}

.copyright{
  padding-top: 12px;
  border-top: 1px solid var(--extra-bg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
}

.copyright > p{
  margin: 0;
}

.lfb{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo-box{
  height: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.contact-name{
  color: var(--white);
}

.contact-link{
  color: var(--black);
  font-weight: 800;
  transition: var(--transition);
  word-break: break-word;
}

.contact-link:hover,
.contact-link:focus{
  color: var(--hover);
}

.contact-serv-box{
  flex-direction: column;
}

.map{
  width: 100%;
  height: 300px;
  padding: 19px;
  box-sizing: border-box;
  background-color: var(--extra-bg);
  border-radius: 10px;
  margin: 19px 0; 
}

.map > iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 0;
}

.privacy-content{
  overflow: hidden;
  word-break: break-all;
}

.worker-img{
  width: 100%;
  height: 300px;
}

.worker-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worker-prof{
  text-align: center;
}

.worker-name{
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--hover);
}

.page-module{
  color: var(--black);
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .partners-row{
    flex-direction: row-reverse;
  }

  .partners-col{
    width: calc(50% - 19px);
  }

.triangle-2{
  display: block;
  clip-path: polygon(50% 100%, 87% 98%, 100% 83%, 58% 0, 43% 0, 0 83%, 13% 98%);
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 60px;
  left: 0;
  overflow: hidden;
}

.triangle-3{
  display: block;
  clip-path: polygon(50% 100%, 87% 98%, 100% 83%, 58% 0, 43% 0, 0 83%, 13% 98%);
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

}

@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .menu-nav{
    flex-direction: row-reverse;
  }

  .partners-col{
    width: calc((100% / 3) - 19px);
  }

  .row-2{
    flex-direction: row-reverse;
  }

  .col-2{
    width: calc(50% - 19px);
  }

  .triangle-2{
    width: 80px;
  }

  .triangle-3{
    width: 90px;
  }

  .com-row{
    flex-direction: row-reverse;
  }

  .com-col{
    width: calc((100% / 3) - 19px);
  }

  .serv-row{
    flex-direction: row-reverse;
  }

  .serv-col{
    width: calc(50% - 19px);
  }

  .footer-row{
    flex-direction: row-reverse;
  }

  .footer-col{
    width: calc((100% / 3) - 19px);
  }
}

@media (max-width: 991px){

}

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .logo-title{
    font-size: 26px;
  }

  .hero-text{
    padding: 65px;
  }

  .partners-col{
    width: calc((100% / 6) - 19px);
  }

  .triangle-2{
    width: 100px;
  }

  .triangle-3{
    width: 110px;
  }

  .main-img{
    width: 400px;
  }

    .main-img{
    width: 300px;
    height: 300px;
    float: right;
    padding: 19px;
  }

  .main-box{
    padding: 74px;
    }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1340px;
  }

    .main-nav-row{
    flex-direction: row-reverse;
  }

  .main-nav-col{
    width: calc((100% / 3) - 12px);
  }

  .mnw{
    width: 25% !important;
  }

  .triangle-1{
    width: 450px;
  }

  .triangle-2{
    width: 120px;
  }

  .triangle-3{
    width: 150px;
  }

  .main-img{
    width: 500px;
    height: 400px;
  }
}

.btn-box{
  text-align: center;
}

.button-1{
  background-color: var(--hover);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #fff !important;
  font-family: Rubik;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 12px;
  text-transform: none;
  display: inline-block;
  transition: var(--transition);
  border: none;
}

.button-1:hover,
.button-1:focus{
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
}


.button-2 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -26px 18px -15px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 5px,rgba(44, 187, 99, .15) 0 5px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: green;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 5px 23px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  display: inline-block;
}

.button-2:hover {
  box-shadow: rgba(44,187,99,.35) 0 -26px 18px -15px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 5px,rgba(44,187,99,.25) 0 5px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.button-3 {
  background-color: initial;
  background-image: linear-gradient(-180deg, #a1b9ff, #7492e9);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 5px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
  height: 40px;
  line-height: 31px;
  outline: 0;
  overflow: hidden;
  padding: 0 23px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  z-index: 9;
  border: 0;
  transition: box-shadow .2s;
}

.button-3:hover {
  box-shadow: hsla(225, 73%, 68%, 0.503) 0 2px 8px;
}

.button-4 {
  border: 1px solid;
  appearance: none;
  background-color: #FFFFFF;
  border-width: 0;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: Clarkson,Helvetica,sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height:  23px;
  margin: 0;
  opacity: 1;
  outline: 0;
  padding:  23px  23px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1),background-color 100ms cubic-bezier(.694, 0, 0.335, 1),color 100ms cubic-bezier(.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}

.button-4:before {

  animation: opacityFallbackOut .5s step-end forwards;
  backface-visibility: hidden;
  background-color: #72fdbc84;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
  width: 100%;
}

.button-4:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-4:after {
  background-color: #FFFFFF;
}

.button-4 span {
  z-index: 1;
  position: relative;
}


.button-5 {
  color: #fff;
  padding: 19px 26px;
  background-color: var(--hover);
  background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 66% at 26% 20%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
  box-shadow: inset -2px -2px 9px rgba(255, 255, 255, 0.25), inset 0px 2px 9px rgba(255, 255, 255, 0.3), inset 0px 1px 1px rgba(255, 255, 255, 0.6), inset 0px -8px 36px rgba(0, 0, 0, 0.3), inset 0px 1px 5px rgba(255, 255, 255, 0.6), 2px 19px 31px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.button-5:hover,
.button-5:focus{
  opacity: 0.7;
}

.colorBlack{
  color: #000;
}