.overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    display: none;
    overflow: hidden;
    z-index: 9999999999999999;
  }
  
  .popup {
    text-align: center;
    position: absolute;
    width: 640px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #fff;
    color: #000;
  }
  
  .popup h2 {
    font-weight: bold;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 30px;
  }
  
  .popup p {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  .popup .input-email {
    border: 3px solid #608DC3;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 25px;
    width: 432px;
    height: 52px;
    text-align: center;
    margin: 0 auto; 
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #B5B5B5;
    outline: none;
    display: block;
  }
  
  .popup .btn-email {
    background: #608DC3;
    -webkit-box-shadow: 0px 4px 7px 1px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 7px 1px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    border: none;
    width: 432px;
    height: 52px;
  }
  
  .popup a {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    color: #000000;
    margin-top: -10px;
    display: block;
  }
  
  .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 23px;
    height: 23px;
    cursor: pointer;
  }
  
  .close-popup:before {
    content: '';
    background-color: #000;
    position: absolute;
    height: 1px;
    width: 31px;
    top: 11px;
    left: -4px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .close-popup:after {
    content: '';
    background-color: #000;
    position: absolute;
    height: 1px;
    width: 31px;
    top: 11px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    left: -4px;
  }
  
  @media screen and (max-width: 768px) {
    .popup {
      width: 90%;
      height: auto;
      font-size: 15px;
    }
  }

.button{
    position: fixed;
    right: 50px;
    bottom: 50px;
    padding: 20px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border: 2px solid #fff;
    background-color: #608DC3;
    border-radius: 100%;
}

.button img{
    width: 70px;
    height: 35px;
}

.button:hover {
    background: #29AEE3;
}

.button {
 animation: phone 0.8s infinite;
 animation-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1.0, 0.1);
 transition: 0.5s all;
}
.button:hover {
    animation: pulse 0.8s linear infinite;
   }
.button {
 animation-delay: .5s;
}

@keyframes phone {
    0%, 100% {
     transform: rotate(-20deg);
    }
    50% {
     transform: rotate(21deg);
    }
    0% {
		-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
		box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
		box-shadow: 0 0 0 10px rgba(204,169,44, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
		box-shadow: 0 0 0 0 rgba(204,169,44, 0);
	}
   }
@keyframes pulse {
0% {
    transform: scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    transform: scale(1.2);
    opacity: 0;
}
}
   
[data-tooltip] {
    position: fixed;
}
[data-tooltip]::after {
    content: attr(data-tooltip); 
    position: absolute; 
    width: 300px;
    left: -220px; top: -70px; 
    background: #3989c9; 
    color: #fff; 
    padding: 0.5em; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
    pointer-events: none; 
    opacity: 0;
    transition: 1s;
    display: none;
} 
[data-tooltip]:hover::after {
    opacity: 1;
    top: -70px; 
    display: block;
}