:root
{
    --bs-primary: #3FD400;
    --bs-secondary: #2e9b00;
    --bs-third: #E2FFB7;
    --anthracite:#303133;
    --bs-font-serif:'Prata', serif;
    --bs-font-sans-serif:'lato',sans-serif;
}

html {
    scroll-behavior: smooth;
    }

body {
  text-align: justify;
  font-size:16px;
  background-color:#f8f9fa;
}

hr:not([size]) {
    height: 1px;
    opacity: 0.05;
    background:white;
    color:white;
}


.gal {
		
	-webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
    }	
    
.gal img{ width: 100%; padding: 7px 0;}

@media (max-width: 500px) {		
		.gal {
	-webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
	}
}

.yellow
{
    color: #ffb300;
}

.bg-white
{
    background-color:#ffffff;  
}

.bg-dark 
{
    background: rgb(0,0,0);
background: linear-gradient(113deg, rgba(0,0,0,1) 0%, rgba(50,50,50,1) 49%, rgba(2,2,2,1) 100%);
}

.bg-primary
{
    background-color:var(--bs-primary)!important; 
}

.bg-purpledark
{
    background-color:rgb(22, 10, 43);
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.text-primary {
    color: var(--bs-primary)!important;
}

.text-secondary {
    color: var(--bs-secondary)!important;
}

a {
    color: var(--bs-primary);
    text-decoration: none;
}

.row:before, .row:after {display: none !important;}

div.contact--icon svg.svg-inline--fa
{
	font-size:1rem;
	color:var(--first-color);
}

.contact-info
{
	border: dashed var(--first-color) 3px;
	padding: 1rem;
	border-radius:25px;
}

.contact--panel
{
	border: dashed var(--first-color) 3px;
	padding: 1rem;
    border-radius:25px;
    margin-bottom: 2rem;
}

.contact--panel a , .contact--panel h4
{
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 23px;
    font-size: 1.1rem;
}

.contact--panel h4
{
    margin-bottom: 7px;
}


@keyframes topback{
    from {transform: translateY(0);}
    to   {transform: translateY(-5px);}
}

.topback {
    animation: topback 0.7s ease infinite;
}

#myBtn {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: var(--bs-third); 
    color:var(--bs-primary);
    cursor: pointer;
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }
#myBtn:hover {
    background-color: var(--bs-primary);
    color:white; 
  }


    .mobile-on-flex 
    {
        display: none;
    }
    .mobile-on 
    {
        display: none;
    }
    .mobile-off-flex{
        display: flex;
    }

    .mobile-off{
        display: block;
    }

@media (max-width:991px)
{
    .mobile-on-flex 
    {
        display: flex!important;
    }
    .mobile-off-flex{
        display: none;
    }

     .mobile-off{
        display: none;
    }

    .mobile-on 
    {
        display: block!important;
    }

}

.vick-shadow
{
    box-shadow: inset 1000px 1000px #00000082;
}
 
.text-thin
{
    font-weight:lighter;
}

.text-font-light 
{
    font-weight:200;
}
.font-weight-bold 
{
    font-weight:600;
}

.box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(72,78,85,.6);
    box-shadow: 0 1px 1px rgba(72,78,85,.6);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.box-shadow:hover {
    -webkit-box-shadow: 0 20px 40px rgba(72,78,85,.6);
    box-shadow: 0 20px 40px rgba(72,78,85,.6);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}