/*** Loading Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear 2s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Whatsapp button settings ***/
.whatsapp {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.flash {
	background: #65B530;
	border-radius: 50%;
    text-align: center;
    font-size: 20px;
	margin: 10px;
	height: 40px;
	width: 40px;

	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 40px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.btn-icons {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal; 
    background-color: #fff;
    border-radius: 50% 
}

.facts-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.facts-3column {
        flex: 0 0 auto;
        width: 33.33333% ;
        height: auto;   
}

/***Box formation and spacing for fadein quick facts ***/
.info-sqr-box {
    height: 100%;
    background-color: #F5F5F5;
	border: 2px solid #F5F5F5;
	border-radius: 10%;
    padding: 3rem;
} 

.info-sqr-box1 {
    max-width: 100%;
/**    height: auto; **/
    /**background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(215,215,215,1) 80%, rgba(34,34,34,1) 100%);**/
    /**background: #F5F5F5 radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(215, 215, 215, 0.6768908246892507) 80%, rgba(34, 34, 34, 0.5480392840730042) 100%); **/
    border: 2px solid #F5F5F5;
	border-radius: 5vh;
    display: flex;
    justify-content: center;
    text-align: justify;
    text-justify: inter-word;
    margin-left: auto;
    margin-right: auto;
	padding: 1rem
}

.info-sqr-box2 {
     max-width: 100%;
/**    height: auto; **/
    /**background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(215,215,215,1) 80%, rgba(34,34,34,1) 100%);**/
    /**background: #F5F5F5 radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(215, 215, 215, 0.6768908246892507) 80%, rgba(34, 34, 34, 0.5480392840730042) 100%); **/
    border: 2px solid #F5F5F5;
	border-radius: 5vh;
    
    text-align: justify;
    text-justify: inter-word;
    margin-left: auto;
    margin-right: auto;
	padding: 1rem   
}

.info-sqr-imgbox {
    max-width: 100%;
    height: auto;
	border-radius: 10%;
	border: 2px solid #F5F5F5;

}

.facts-icon {
	padding: 0;
	display: flex;
	width: 64px; 
	height: 64px; 
	background: #F5F5F5;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.lowbtn {
   display: inline-flex;
}

#logocrawl {
  width: 100px;
  height: 100px;
  animation: scroll 10s linear infinite;
}

summary {
    font-weight: bold;
    margin: -0.5em -0.5em 0;
    padding: 0.5em;
}

details[open] {
    padding: 0.5em;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: 0.5em;
}


