#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#000;
  display:none;
}  
#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:auto;
  display:none;
  z-index:9999;
  padding:20px;
  border-radius: 15px;
  text-align: center;
}
#boxes #dialog {
  width:50%; 
  height:auto;
  padding:5px;
  background-color:#ffffff;
  font-family: 'Segoe UI Light', sans-serif;
  font-size: 15pt;
  top: 10px!important;
}
.maintext{
	text-align: center;
  font-family: "Segoe UI", sans-serif;
  text-decoration: none;
}
body{
  background: url('bg.jpg');
}
#lorem{
	font-family: "Segoe UI", sans-serif;
	font-size: 12pt;
  text-align: left;
}
#popupfoot{
	font-family: "Segoe UI", sans-serif;
	font-size: 16pt;
  padding: 10px 20px;
}
#popupfoot a{
	text-decoration: none;
}
.agree:hover{
  background-color: #D1D1D1;
}
.popupoption:hover{
	background-color:#D1D1D1;
	color: green;
}
.popupoption2:hover{
	
	color: red;
}

   
 /* [1] The container */
.img-hover-zoom {
  height: auto; /* [1.1] Set it as per your need */
  overflow: hidden;
    padding: 20px;
    /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover{
  transform: scale(1.5);
}
    
   



/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #0060aa;
}


a.social-icon.whatsapp {
  position: fixed;
  z-index: 3000;
  right: 5px;
  font-size: 60px;
  bottom: 130px;
  color: green;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
img.social-icon.whatsapp {
  width: 45px;
  height: 45px;
}
img.social-icon.call {
  width: 45px;
  height: 45px;
}
a.social-icon.call {
  position: fixed;
  z-index: 3000;
  right: 5px;
  font-size: 60px;
  bottom: 60px;
  color: green;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.modal {
  z-index: 10;
  display: block;
  padding-top: 50px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5)
}
.modal-content {
  margin: auto;
  background-color: #fff;
  position: relative;
  padding: 0;
  outline: 0;
  max-width: 875px
}
.modal-inner {
  padding: 20px 30px;
}
.modal-close {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  right: 0;
  top: 0;
  background: #ccc;
  padding: 6px 10px;
}
@media only screen and (max-width: 600px) {
  .mid {
    margin-top: 50%;
  }
}
.just {
  text-align: justify;
}
.animate-opacity {
  animation: opac 0.8s
}
@keyframes opac {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
.animate-opacity is optional as it’s the animated effect when modal opens.


