@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

:root{
    --white: #fff;
    --black: #080101;
    --a-1: #8c8cf9;
    --a-2: #837fcb;
    --a-3: #00d1b2;
    --a-4: #00b289;
    --a-5: #039be5;
    --a-6: #0f7cff;
    --a-7: #4a00e0;
    --a-8: #f5c62c;
    --a-9: #f83600;
    --a-10: #f55;
    --accent: var(--a-6);
    --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --hero-bg: #f5f6fa;
    --nav-box: #344258;
    --color-title: #444f60;
    --serv-bg: #252f3e;
    --serv-item: #19202b;
    --grey: #999;
}

body{
  box-sizing: border-box;
  font-family: 'Inria Sans', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  direction: ltr;
}

*{
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

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

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: 98px 0;
}

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

.hero{
  background-color: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.blob-hero .morphing-blob-wrapper.is-blob-1 {
  top: 20%;
  right: 12%;
}

.morphing-blob-wrapper {
  position: absolute;
  opacity: .6;
}

.levitate {
  -webkit-animation-name: levitate;
  animation-name: levitate;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.morphing-blob-wrapper svg, .morphing-blob-wrapper svg circle {
  fill: var(--accent);
}

.morphing-blob-wrapper .Circle1 {
  -webkit-animation: from0to360 3s linear infinite;
  animation: from0to360 3s linear infinite;
  cx: 150;
  cy: 145;
  r: 100;
  -webkit-transform-origin: 145px 150px;
  transform-origin: 145px 150px;
}

@keyframes from0to360{
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.morphing-blob-wrapper .Circle2 {
  -webkit-animation: from360to0 4s linear infinite;
  animation: from360to0 4s linear infinite;
  cx: 150;
  cy: 155;
  r: 100;
  -webkit-transform-origin: 155px 150px;
  transform-origin: 155px 150px;
}

@keyframes from360to0{
  0% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

100% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
}

.morphing-blob-wrapper .Circle3 {
  -webkit-animation: from0to360 5s linear infinite;
  animation: from0to360 5s linear infinite;
  cx: 145;
  cy: 150;
  r: 100;
  -webkit-transform-origin: 150px 145px;
  transform-origin: 150px 145px;
}

.morphing-blob-wrapper .Circle4 {
  -webkit-animation: from360to0 4.4s linear infinite;
  animation: from360to0 4.4s linear infinite;
  cx: 155;
  cy: 150;
  r: 100;
  -webkit-transform-origin: 150px 155px;
  transform-origin: 150px 155px;
}

.blob-hero .morphing-blob-wrapper.is-blob-2 {
  bottom: 13%;
  left: 12%;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.blob-hero .morphing-blob-wrapper.is-blob-3 {
  bottom: 0%;
  right: 5%;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
}

.blob-hero .morphing-blob-wrapper.is-blob-4 {
  top: 2%;
  left: 30%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
}

.blob-hero .morphing-blob-wrapper.is-blob-5 {
  bottom: 45%;
  left: 10%;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
}

.blob-hero .morphing-blob-wrapper.is-blob-6 {
  bottom: 25%;
  left: 2%;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
}

.blob-hero .morphing-blob-wrapper.is-blob-7 {
  top: -12%;
  left: -8%;
}

.nav{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 13px 0;
}

.menu{
  cursor: pointer;
  width: 28px;
  height: 28px;

  svg{
    width: 28px;
    height: 28px;
    color: var(--black);
    transition: var(--transition);
  }

  &:hover > svg,
  &:focus > svg{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
  }
}

.nav-box{
  inset-inline-start: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--nav-box);
  width: 300px;
  height: 100%;
  padding: 13px;
}

.btn-close{
  width: 21px;
  height: 21px;
  color: var(--white);
  margin-left: auto;
  cursor: pointer;


  svg{
    width: 100%;
    height: 100%;
    transition: var(--transition);
  }

  &:hover > svg,
  &:focus > svg{
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
  }
}

.menu-nav{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.drop-menu{
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 15px;
}

.menu-item{
  border-bottom: 2px solid var(--white);
  
  a{
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
    padding: 13px;
    width: 100%;
    height: 100%;
  }

  &:hover > a,
  &:hover > a{
    transform: scale(1.03);
    -webki-transform: scale(1.03);
  }
}

.drop-item{
  a{
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
    padding: 13px;
    width: 100%;
    height: 100%;
  }

  &:hover > a,
  &:hover > a{
    transform: scale(1.03);
    -webki-transform: scale(1.03);
  }
}

.nav-wr{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.hero-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 0;
  justify-content: center;
  position: relative;
}

.logo-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  gap: 13px;

  &:hover,
  &:focus{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

.logo-img{
  width: 70px;
  height: 70px;

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

.logo-title{
  color: var(--color-title);
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 1.4px;
  text-transform: inherit;
  margin-bottom: 1rem !important;
}

.head-title-box{
  background-color: var(--white);
    -webkit-box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  padding: 15px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.row-4{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}

.col-4{
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
}

.ben-box{
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 28px 21px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  -webkit-box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateY(-4px);
  }
}

.ben-img{
  width: 64px;
  height: 64px;
  color: var(--accent);

  svg{
    width: 100%;
    height: 100%;
  }
}

.main-img{
  width: 100%;
  height: auto;

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

.title{
  color: var(--color-title);
  font-family: 'Teko', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 1.4px;
  word-break: break-word;
  text-transform: inherit;
  margin-bottom: 1rem;
  text-align: center;
}

.price{
  text-align: center;
  color: var(--accent);
  font-family: 'Teko', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 1.4px;
  word-break: break-word;
  text-transform: inherit;
  margin-bottom: 1rem;
}

.main-content{
  margin-bottom: 1rem;
}

.pb0{
  padding-bottom: 0;
}

.row-2{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}

.col-40,
.col-60{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

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

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

.video-player{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
}

.history-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.history-item{
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateY(-4px);
  }
}

.history-icon{
  background-color: var(--accent);
  height: 60px;
  width: 60px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;

  svg{
    width: 28px;
    height: 28px;
    fill: var(--white);
  }
}

.bg2{
  background-color: var(--a-2);
}

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

.service-col-bg{
  background-color: var(--serv-bg);
}

.service-col-img{
  background: url('static/images/pattern-bg_1366x7680.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service{
  position: relative;

  .wrapper{
    position: relative;
  }
}

.serv-row{
  gap: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services-box{
  padding: 15px;

  .title{
    color: var(--white);
  }
}

.serv-box{
  background-color: var(--serv-item);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 21px;
  width: 100%;
  border-radius: 13px;
  border: 2px solid var(--serv-item);
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  height: 100%;

  &:hover,
  &:focus{
    border: 2px solid var(--accent);
  }

  &:hover .serv-img,
  &:focus .serv-img,
  &:hover .serv-title,
  &:focus .serv-title{
    color: var(--accent);
  }
}

.serv-img{
  color: var(--grey);
  width: 37px;
  height: 37px;
  transition: all .2s;

  svg{
    width: 100%;
    height: 100%;
  }
}

.serv-title{
  color: var(--white);
  transition: all .2s;
  margin: 0;
}

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

.art-col{
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
}

.articles{
  background-color: var(--serv-bg);
}

.art-box{
  background-color: var(--serv-item);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 21px;
  width: 100%;
  border-radius: 13px;
  border: 2px solid var(--serv-item);
  text-align: center;
  height: 100%;
}

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

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

  &:hover > img,
  &:focus > img{
    transform: scale(1.03);
  }
}

.art-title{
  color: var(--white);
  transition: var(--transition);
  font-size: 18px;

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.art-t{
  color: var(--white);
}

.tarif{
  background: var(--serv-bg) url(static/images/overlay_2025-06-14_11-43-350.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.row-3{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}

.col-3{
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
}

.tarif-box{
  width: 100%;
  padding: 37px;
  border-radius: 8px;
  background: #fff;
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.tarif-title{
  color: var(--color-title);
  font-family: 'Teko', sans-serif;
  font-size: 35px;
  margin-bottom: 21px;
  text-align: center;
}

.tarif-price{
  text-align: center;
  color: var(--accent);
  font-family: 'Teko', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 1.4px;
  word-break: break-word;
  text-transform: inherit;
  margin-bottom: 1rem;
}

.form{
  width: 100%;
  max-width: 540px;
  margin: 0 auto 60px auto;
  border: 2px solid #ededed;
  -webkit-box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  border-radius: 8px;
  background: #fff;
  padding: 49px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.contact-page-form > input,
.contact-page-form > textarea,
.input-groupelement_part,
.textarea-groupelement_part{
  width: 100%;
  padding: .625em .625em .625em .3125em;
  display: block;
  border: none;
  border-bottom: 2px solid #a9abac;
  background-color: rgba(0, 0, 0, 0) !important;
}

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

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.partners-box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: center;
  flex-direction: column;
  max-width: 740px;
  margin: 0 auto;
}

.partner-item{
  flex-grow: 1;
  box-sizing: border-box;
  padding: 13px;
  height: 80px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 6px black);
  }
}


.footer-areas{
  background-color: var(--serv-bg);
  color: var(--white);
  padding: 50px 0;
}

.footer-wrapper{
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom:  15px;
}

.footer-privacy-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}


.copyright{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  color: var(--grey);

  p{
    margin: 0;
  }
}

.footer-privacy{
  text-align: center;

  a{
    color: var(--white);
    transition: var(--transition);
  }

  &:hover > a,
  &:focus > a{
    color: var(--accent);
  }
}

.gallery{
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.gallery-item{
  width: 100%;
  height: 100px;
  overflow: hidden;
  flex-grow: 1;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);

    &:hover,
    &:focus{
      transform: scale(1.02);
    }
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  color: #fff;
  position: absolute;
  top: 14px;
  right: 34px;
  font-size: 35px;
  font-weight: 800;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}

.contact-box{
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  margin-bottom: 21px;
  transition: all .2s;
  height: 100%;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
}

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

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.contact-text{
  word-break: break-word;
  font-weight: 800;
  text-align: center;
}

.map{
  width: 100%;
  height: 400px;
  margin-top: 50px;
  border-radius: 8px;
  border: 2px solid #eaeaea;
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, .06);
  overflow: hidden;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }
}

@media(max-width: 420px){
  .nav-box{
    width: 100%;
  }

  .nav-wr{
    flex-direction: column;
    gap: 13px;
  }

  .logo-box{
    flex-direction: column;
  }
}
@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .main-img{
    height: 300px;
  }

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


}

@media(max-width: 767px){
    .blob-hero .morphing-blob-wrapper.is-blob-1 {
    top: 21%;
    right: -1%;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }

  .blob-hero .morphing-blob-wrapper.is-blob-2 {
    display: none;
  }

  .blob-hero .morphing-blob-wrapper.is-blob-3 {
    bottom: -1%;
    right: 26%;
  }

  .blob-hero .morphing-blob-wrapper.is-blob-4 {
    top: -3%;
    left: 46%;
  }

  .blob-hero .morphing-blob-wrapper.is-blob-5 {
    bottom: 45%;
    left: 38%;
  }

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

  .form{
    padding: 28px;
  }
}

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

  .head-title-box{
    width: 80%;
  }

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

  .col-4{
    width: calc(50% - 15px);
  }

  .main-img{
    height: 400px;
  }

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

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

  .art-col{
    width: calc(50% - 15px);
  }

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

  .col-3{
    width: calc(50% - 15px);
  }

  .footer-privacy-box{
    flex-direction: column;
  }

  .footer-wrapper{
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media(max-width: 991px){
  .main-img{
    margin-bottom: 1rem;
  }

  .video-player{
    height: 200px;
  }

  .service-col-img{
    display: none;
  }

  .tarif-box{
    height: 100%;
    justify-content: space-between;
  }

  .logo-title{
    font-size: 32px;
    text-align: center;
  }
}

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

  .head-title-box{
    width: 60%;
  }

  .col-4{
    width: calc(25% - 15px);
  }

  .main-img{
    padding: 15px;
    width: 500px;
    float: left;
    margin: 0 auto;
  }

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

  .col-40{
    width: calc(40% - 15px);
  }
  .col-60{
    width: calc(60% - 15px);
  }
  .col-2{
    width: calc(50% - 15px);
  }
  
  .art-col{
    width: calc(25% - 15px);
  }

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

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

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

.button-1 {
 background-color: var(--accent);
 border-radius: 4px;
 color: #fff;
 cursor: pointer;
 padding: 15px 28px;
 font-size: 17px;
 font-weight: 800;
 letter-spacing: 2px;
 border: none;
 display: inline-block;
 transition: var(--transition);
 text-align: center;
}

.button-1:hover {
 background-image: linear-gradient(90deg, #53cbef 0%, #dcc66c 50%, #ffa3b6 75%, #53cbef 100%);
 animation: slidernbw 5s linear infinite;
 color: #000;
}

@keyframes slidernbw {
 to {
  background-position: 20vw;
 }
}

.button-2 {
  position: relative;
  padding: 15px 17px;
  background-color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 21px;
  gap: 120px;
  border-radius: 13px;
  cursor: pointer;
  text-align: center;
}

.btn-box-2{
  position: relative;
  z-index: 0;
}

.button-2::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 2px;
  top: -4px;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  background: linear-gradient(-45deg, #10d32a 0%, rgb(119, 235, 235) 100%);
  z-index: -10;
  pointer-events: visiblePainted;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-2::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #00ff22 0%, rgb(0, 250, 250) 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(15px);
}

.button-2:hover::after {
  filter: blur(37px);
}

.button-2:hover::before {
  transform: rotate(-180deg);
}

.button-2:active::before {
  scale: 0.7;
}

.button-3 {
  position: relative;
  display: inline-block;
  padding: 13px 28px;
  font-size: 18px;
  font-weight: 800;
  text-transform: inherit;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1f347b;
  overflow: hidden;
  border: none;
}

.button-3:before {
  transition: 1s;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.button-3:hover:before {
  width: 300px;
  height: 300px;
  opacity: 0.4;
  transition: all 0.4s ease-out;
}

.button-3:hover {
  background-color: #fff;
  color: #202960;
  transition: all 0.4s ease-out;
}

.button-3:hover:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #255ea4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.btn-box-4 {
  position: relative;
  width: fit-content;
  height: fit-content;
  border-radius: 9999px;
}

.btn-box-4::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #06b5d4;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.8;
  transition: all 0.6s cubic-bezier(1, 0, 0, 1);
}

.btn-box-4:hover::before {
  width: 100%;
  height: 28px;
}

.button-4 {
  cursor: pointer;
  position: relative;
  padding: 21px 48px;
  background-color: #083344;
  font-size: 17px;
  color: #fefefe;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  box-shadow: inset 0px 2px 2px var(--accent);
  transition: all 0.2s ease-in-out, box-shadow 0.1s ease-in-out;
  display: inline-block;
  text-align: center;
}

.button-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0px 0px 28px 2px #67e8f97e;
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
}

.button-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 0;
  height: 0;
  background-image: linear-gradient(
    to right,
    #06b5d400,
    #4ec4db00,
    #72d0e200,
    #90ddea3d,
    #ace9f277,
    #ace9f2,
    #ace9f2,
    #ace9f277,
    #90ddea3d,
    #72d0e200,
    #4ec3db00,
    #06b6d400
  );
  border-radius: 0 0 50% 50%;
  opacity: 0.8;
  filter: drop-shadow(0px 0px 28px #06b6d4);
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
}

.btn-box-4:hover .button-4 {
  background: #18181898;
  box-shadow: inset 0px 0px 0px #fefefe;
}

.btn-box-4:hover .button-4::before {
  width: 30%;
  height: 2px;
}

.btn-box-4:hover .button-4::after {
  width: 100%;
  height: 2px;
}

.button-5 {
  background-color: #36A9AE;
  background-image: linear-gradient(#37ADB2, #329CA0);
  border: 2px solid #2A8387;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 2px 2px;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-family: -apple-system,".SFNSDisplay-Regular","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 17px;
  line-height: 100%;
  margin: 0;
  outline: 0;
  padding: 12px 15px 12px;
  text-align: center;
  transition: box-shadow .05s ease-in-out,opacity .05s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button-5:hover {
  box-shadow: rgba(255, 255, 255, 0.3) 0 0 2px inset, rgba(0, 0, 0, 0.4) 0 2px 2px;
  text-decoration: none;
  transition-duration: .15s, .15s;
}

.button-5:active {
  box-shadow: rgba(0, 0, 0, 0.15) 0 2px 4px inset, rgba(0, 0, 0, 0.4) 0 2px 2px;
}

.button-5:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.button-5:disabled:active {
  pointer-events: none;
}

.button-5:disabled:hover {
  box-shadow: none;
}

.privacy-content h2, .privacy-content h3{
  margin: 7px 0 !important;
  font-size: clamp(18px, 2.5vw, 22px) !important;
}

.main-content h2, .main-content h3{
  font-size: 17px !important;
}