@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

:root{
  --b-1: #12B6B6;
  --b-2: #1288b6;
  --b-3: #b68212;
  --b-4: #6f12b6;
  --b-5: #12b682;
  --accent: var(--b-1);
  --c-1: linear-gradient(to bottom, #ffffff, #bbe9df 100%);
  --c-2: linear-gradient(to bottom, #ffffff, #bbd4e9 100%);
  --c-3: linear-gradient(to bottom, #ffffff, #e9d4bb 100%);
  --c-4: linear-gradient(to bottom, #ffffff, #d7bae9 100%);
  --c-5: linear-gradient(to bottom, #ffffff, #bbe9d6 100%);
  --gradient: var(--c-1);
  --d-1: #d0f5ed6b;
  --d-2: #d5e8f76b;
  --d-3: #faebd96b;
  --d-4: #eedafa6b;
  --d-5: #ddf9ee6b;
  --bg: var(--d-1);
  --white: #fff;
  --black: #040807;
  --transition: 0.4s linear;
  --text: #0B2239;
}

body{
  direction: ltr;
  font-family: 'Albert Sans', sans-serif !important;
  font-size: 17px;
  margin: 0;
  padding: 0px;
  position: relative;
}

*{
  box-sizing: border-box;
}

a{
    text-decoration: none;
}

p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.2;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 27px;
}

li {
  margin-bottom: 12px;
}

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

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.module{
  padding: 120px 0;
}
.module-priv {
  overflow: hidden;
  word-break: break-all;
}
.row-2,
.row-3,
.row-4{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

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


.header{
  background: var(--gradient);
  position: relative;
}

.hero-img-1{
  position: absolute;
  top: 10%;
  left: 1%;
  width: 124px;
  height: 146px;
  animation: opacityShape 3s linear;

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

.hero-img-2{
  position: absolute;
  bottom: 3%;
  right: 7%;
  width: 164px;
  height: 164px;
  animation: opacityShape 3s linear;

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

.hero{
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  min-height: 551px;
  display: flex;
  align-items: center;

  .wrapper{
    position: relative;
    z-index: 1;
  }
}

.hero::after{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: url('white.png'), linear-gradient(to bottom, var(--accent), var(--white));
  background-repeat: no-repeat;
  background-position: 0 18%;
  background-size: cover;
  width: 100%;
  height: 100%;
  animation: bg 20s linear infinite;
}

@keyframes bg{
  0%{
    background-position: 0 50%;
  }
  10%{
    background-position: 0 18%;
  }
  20%{
    background-position: 0 20%;
  }
  30%{
    background-position: 0 18%;
  }
  40%{
    background-position: 0 100%;
  }
  50%{
    background-position: 0 90%;
  }
  60%{
    background-position: 0 100%;
  }
  70%{
    background-position: 0 18%;
  }
  80%{
    background-position: 0 20%;
  }
  90%{
    background-position: 0 18%;
  }
  100%{
    background-position: 0 50%;
  }
}

.hero-box{
  display: flex;
  flex-direction: column;
  gap: 20px;

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

.nav{
  position: relative;
  z-index: 2;
}

.menu{
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;

  span {
    height: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0;
    background: var(--text);
    display: inline-block;
    width: 100%;
    position: absolute;
    content: "";
  }

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

  span:first-child {
    top: 0;
  }

  span:nth-child(2) {
    top: 52%;
    transform: translateY(-50%);
  }

  span:last-child {
    bottom: 0;
  }

  &.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 7px);
    -ms-transform: rotate(45deg) translate(3px, 7px);
    transform: rotate(45deg) translate(3px, 7px);
  }

  &.active span:nth-child(2) {
    opacity: 0;
  }

  &.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -7px);
    -ms-transform: rotate(-45deg) translate(3px, -7px);
    transform: rotate(-45deg) translate(3px, -7px);
  }
}

.logo-box{
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  justify-content: center;

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

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

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

.logo-title{
  color: var(--text);
  font-weight:  600;
  text-transform: inherit;
  font-family: 'Lobster', sans-serif;
  font-size: 23px;
  transition:  var(--transition);
}


.nav-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-item{
  a{
    width: 100%;
    height: 100%;
    display: inline-block;
    color: var(--text);
    transition: var(--transition);
    padding: 12px 20px;
  }

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

.hero-img{
  width: 100%;
  height: 429px;
  margin: 0 auto;
  animation: heroImg 5s linear infinite;

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

@keyframes heroImg{
  0%{
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
  }
  50%{
    transform: scale(1.03) rotate(5deg);
    -webkit-transform: scale(1.05) rotate(5deg);
  }
  100%{
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
  }
}

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

.hero-text{
  font-weight: 600;
  letter-spacing: 1.4px;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
}

.ben{
  background-color: var(--bg);
  overflow: hidden;
}

.ben-wr{
  box-shadow: 0px 0px 24px rgba(179, 181, 191, 0.42);
  border-radius: 12px;
  background-color: var(--white);
  padding: 27px 0;
}

.ben-box{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  padding: 20px;

  &:hover .ben-icon > svg,
  &:focus .ben-icon > svg{
    transform: rotateY(180deg);
  }
}

.ben-icon{
  width: 46px;
  height: 46px;
  color: var(--accent);
  
  svg{
    transition: var(--transition);
    width: 100%;
    height: 100%;
  }
}

.ben-title{
  text-align: center;
  font-weight: 600;
}

.animated-element {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 2s, transform 2s;
}

.animated-element.visible {
  animation: opacity 2s forwards;
}

@keyframes opacity{
  0%{
    opacity: 0;
    transform: translateY(100%);
  }
  100%{
    opacity: 1;
    transform: translateY(0%);
  }
}

.main-box{
  box-shadow: 0px 0px 24px rgba(178, 180, 187, 0.42);
  background-color: var(--white);
  padding: 27px 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: space-between;
}

.main{
  background: var(--gradient);
}

.main-img{
  width: 100%;
  height: 227px;
  display: inline-block;

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

  &:hover > img,
  &:focus > img{
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
  }
}

.main-row{
  justify-content: center;

  .col-4{
    flex-grow: inherit !important;
  }
}

.rating{
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 7px;
}

.title{
  font-family: 'Lobster', sans-serif;
  margin-bottom: 27px;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.2;
}

.main-title{
  color: var(--text);
  font-size: 17px;
  transition: var(--transition);
  text-align: center;
  word-break: break-word;

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

  h3{
    margin: 0;
  }
}

.main-price{
  color: var(--accent);
  font-weight: 600;
  font-size: 23px;
  text-align: center;
}

#main1{
  display: block;
}

.main-img-2{
  width: 100%;
  height: 429px;
  display: inline-block;
  box-shadow: 0px 0px 24px rgba(179, 181, 191, 0.42);
  border-radius: 12px;
  overflow: hidden;

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

  &:hover > img,
  &:focus > img{
    opacity: 0.8;
  }
}

.main-desc{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: baseline;
}

.text-align-start{
  text-align: start !important;
}

.module-main{
  padding: 57px 0;
  box-shadow: 0px 24px 17px -27px rgba(0,0,0,0.45);
}

.ho{
  background: var(--bg);
}

.how-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.how-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.how-img{
  width: 100%;
  height: 316px;

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

.animation {
  position: relative;
  perspective: 1000px;
}

.animation-img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.animationTwo {
  position: relative;
  perspective: 1000px;
}

.animation-imgTwo {
  position: absolute;
  width: 100%;
  height: 100%;
}

.how-step{
  width: 64px;
  height: 64px;
  border-radius: 5px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: {font_weight_bold};
}

.how-question{
  font-weight: {font_weight_bold};
}

.comments{
  background: var(--gradient);
}

.carousel {
  width: 100%;
  overflow: hidden;
  margin: auto;
  direction: ltr !important;
}

.carousels {
  display: flex;
  flex-direction: row;
  gap: 12px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: calc(50% - 12px);
  box-sizing: border-box;
  padding:  20px;
  background: #f1f1f1;
}

.navigation-dots {
  text-align: center;
  direction: ltr;
  margin-top: 12px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 7px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: var(--accent);
}

.comment-item{
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.com-author{
  width: 127px;
  height: 227px;
  background-color: var(--white);
  padding: 5px;
  
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.com-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.author-name{
  font-weight: 600;
}

.rating{
  width: max-content;
  padding: 7px 12px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  height: 429px;
}

.parent > div{
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
  }

  &:hover > img,
  &:hover > img{
    opacity: 0.8;
  }
}

.div1 { 
  grid-area: 1 / 1 / 2 / 2;
  height: 136px;
}
.div2 { 
  grid-area: 2 / 1 / 4 / 3;
  height: calc(136px * 2);
}
.div3 { 
  grid-area: 4 / 1 / 5 / 3;
  height: 136px;
}
.div4 { 
  grid-area: 1 / 2 / 2 / 3;
  height: 136px;
}
.div5 { 
  grid-area: 1 / 3 / 5 / 4;
  height: 100%;
 }
.div6 { 
  grid-area: 3 / 4 / 5 / 5;
  height: calc(136px * 2);
 }
.div7 { 
  grid-area: 1 / 4 / 3 / 5;
  height: 100%;
 }

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

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

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 33px;
  color: #f1f1f1;
  font-size:  32px;
  font-weight: 900;
  transition: 0.3s;
}

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

.form-module{
  background-color: var(--bg);
}

.form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.connect-with-us-page-form{
  width: 100%;
}

.input-field--layoutgroup,
.textarea-field--layoutgroup{
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  border: none;
  background-color: var(--white);
}

.connect-with-us-page-form > input,
.connect-with-us-page-form > textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid var(--accent);
  background-color: var(--white);
}

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

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

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

.footer{
  background-color: var(--text);
  color: var(--white);
  padding: 27px 0;
}

.footer-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

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

.footer-politik-privacy{
  a{
    color: var(--white);
    transition: var(--transition);

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

.copyright{
  margin-top: 27px;
  padding-top: 12px;
  border-top: 1px solid #bbb;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;

  p{
    margin: 0;
  }
}

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

.page-wr{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.cover-image{
  width: 100%;
  height: auto;

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

.page-price{
  color: var(--accent);
  font-weight: 600;
  font-size: 23px;
  text-align: center;
}

.page-form{
  width: 100%;

  .input-field--layoutgroup,
  .textarea-field--layoutgroup{
    border: 1px solid var(--accent);
  }
}

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

.mt{
  margin-top: 27px;
}

.connect-with-us-module{
  background-color: var(--bg);
}

.cont-wr{
  padding:  20px;
}

.connect-with-us--page-item{
  padding: 20px;
  text-align: center;
}

.connect-with-us-page-link{
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  word-break: break-all;

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

.contact-adres{
  font-weight: 600;
  color: var(--text);
}

.map{
  margin: 20px 0;
  width: 100%;
  height: 316px;
  box-shadow: 0px 0px 24px rgba(179, 181, 191, 0.42);
  border-radius: 12px;
  overflow: hidden;

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

.contact-form-video{
  width: 100%;
  height: 316px;
  
  video{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.linked-box{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

@media (max-width: 480px){
  .logo-title{
    text-align: center;
  }

  .hero{
    padding: 57px 0;
  }

  .hero-box{
    margin-top: 46px;
  }
}

@media(max-width: 575px){
 .comment-item{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
 }

 .rating{
  margin: 0 auto;
 }

 .hero-img-1,
 .hero-img-2{
  display: none;
 }
}

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

  .slide {
    background: linear-gradient(to right, var(--accent) 20%, var(--white) 20%, var(--white) 100%);
  }

  .cover-image{
    height: 316px;
  }

  
.hero-box{
  .logo-title{
    font-size: 34px;
  }
}
}

@media (max-width: 767px){
  .nav-wr{
    position: relative;
  }

  .nav-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    padding:  20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
  }

  .nav-list.visible-nav{
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
  }

  .nav-item{
    border-bottom: 1px solid rgba(11, 34, 57, 0.1);

    &:last-child{
      border-bottom: none;
    }
  }
   
  .slide {
    min-width: calc(100% - 12px);
  }
}

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

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 20px);
  }

  .menu{
    display: none;
  }

  .nav-wr{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
  }

  .nav-list{
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .nav-box{
    padding: 0;
  }

  .hero-text{
    font-size: 23px;
  }

  .cover-image{
    height: 346px;
  }

  .page-price{
    font-size: 23px;
  }

  .hero-box{
  .logo-title{
    font-size: 46px;
  }
}
}

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

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

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

  .main1-col{
    width: calc((100% / 3) - 20px) !important;
  }

  .cover-image{
    height: 446px;
  }

  .page-price{
    font-size: 27px;
  }

  .page-form{
    width: 60%;
    margin: 0 auto;
  }

  .hero-box{
  .logo-title{
    font-size: 46px;
  }
}
}

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

  .main1-col{
    width: calc(25% - 20px) !important;
  }

  .cover-image{
    height: 500px;
  }
}

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

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

.button-1{
  padding: 20px;
  border-radius: 5px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background-color: transparent;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  font-size: 17px;
  line-height: 20px;

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

.button-2 {
 text-transform: uppercase;
 text-decoration: none;
 color: #1288b67f;
 padding: 12px 27px;
 border: 1px solid;
 border-radius: 1000px;
 display: inline-block;
 transition: all .2s;
 position: relative;
 text-align: center;
}

.button-2:hover {
 transform: translateY(-5px);
 box-shadow: 0 12px 20px #29a9dc73;
}

.button-2:active {
 transform: translateY(-3px);
}

.button-2::after {
 content: "";
 display: inline-block;
 height: 100%;
 width: 100%;
 border-radius: 90px;
 top: 0;
 left: 0;
 position: absolute;
 z-index: -1;
 transition: all .3s;
}

.button-2:hover::after {
 background-color: var(--accent);
 transform: scaleX(1.4) scaleY(1.5);
 opacity: 0;
}

.button-3 {
  position: relative;
  display: inline-block;
  padding:  20px  27px;
  text-align: center;
  font-size: 17px;
  letter-spacing: 1px;
  text-decoration: none;
  color: rgb(220, 155, 13);
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid rgb(220, 155, 13);
  border-radius: 12px;
  box-shadow: inset 0 0 0 0 rgb(220, 155, 13);
}

.button-3:hover {
  color: white;
  box-shadow: inset 0 -20px 0 0 rgb(220, 155, 13);
}

.button-3:active {
  transform: scale(0.9);
}

.button-4 {
  position: relative;
  font-size: 17px;
  padding: 0.7em 1.4em;
  background-color: #6f12b6;
  text-decoration: none;
  border: none;
  border-radius: 0.5em;
  color: #DEDEDE;
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.button-4::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, #6f12b6 50%, #9133da 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.button-4:hover::before {
  width: 24px;
  height: 24px;
}

.button-4:active {
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
}

.button-5 {
  padding: 12px 20px;
  text-transform: uppercase;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 600;
  color: #6d727f;
  text-shadow: none;
  background: transparent;
  cursor: pointer;
  box-shadow: transparent;
  border: 1px solid #6d727f;
  transition: 0.5s ease;
  user-select: none;
  display: inline-block;

  &:hover,
  &:focus {
    color: #ffffff;
    background: #00ffc3;
    border: 1px solid #00ffc3;
    text-shadow: 0 0 5px #ffffff, 0 0 12px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px #00ffc3, 0 0 20px #00ffc3, 0 0 50px #00ffc3,
      0 0 100px #00ffc3;
  }
}