/*body{
	font-size: 16px !important;
}
*/
:root {
    --bulma-arrow-color: #00d1b2;
    --bulma-input-focus-border-color: #00d1b2 !important;
    --bulma-input-focus-box-shadow-color: rgba(255, 0, 0, 0.25);
}

html { 
    font-size: 14px;
}

@media screen and (min-width: 769px) {
  html { 
        font-size: 16px; 
    }
}

@media screen and (min-width: 1024px) {
  html {
        font-size: 18px;
    }
}

input:focus, select:focus, textarea:focus {
    border-color: #00d1b2 !important;
    box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25) !important;
}

#herohome {
    background-image: url("/static/img/herohomebg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    background-blend-mode: overlay;
    background-color: rgba(26, 27, 34, 1);
}

.roboto-condenced-800 {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

/*
#herohome {
    background-image: url("/static/img/laptopbg.png");
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
}*/

.contact-btn { overflow: hidden; }
.contact-btn i { opacity: 0; }
.contact-btn div {
	transform: translateX(.6em);
	transition: .3s ease-in-out;
}

.contact-btn:hover div {
	transform: translate(0);
	transition: transform .3s ease-in-out;
}

.contact-btn:hover i {
	opacity: 1;
	transition: opacity .8s ease-in-out;
}

.rounded-4{ border-radius: .8em; }
.rounded-3{ border-radius: .6em; }
.rounded-2{ border-radius: .4em; }
.rounded{ border-radius: .2em; }

.has-background-white {
	--text-color: #000;
	color: var(--text-color);	
}

.has-background-white h1,
.has-background-white h2,
.has-background-white p,
.has-background-white strong { color: #000000 !important; }
.has-background-white .card { min-height: 450px; }
.has-background-white .card p { color: #ffffff !important; }

.has-background-primary {
    --text-color: #000000;
    color: var(--text-color);
}

.has-background-primary h1,
.has-background-primary h2,
.has-background-primary p,
.has-background-primary strong { color: #000000 !important; }

#ulaccordion li { list-style: none; }
#ulaccordion li label {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    vertical-align: top;
    border: 4;
    padding: 1em 1em 1em 1em;
}

#ulaccordion li label span i { transition: transform 0.3s ease; }
#ulaccordion li:has(input[type="radio"]:checked) label span i { transform: rotate(90deg); }
#ulaccordion input[type="radio"]:checked + .content { max-height: 200px; }
#ulaccordion input[type="radio"] { display: none; }
#ulaccordion .content {
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.custom-shape-divider-top-1772462652 {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1772462652 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top-1772462652 .shape-fill { fill: #14161a; }

.highlighted-text {
    position: relative;
    display: inline-block;
}

.highlighted-text::before {
    content: '';
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    height: 30%;
    background-color: #00d1b2; /* Change this to your desired highlight color */
    z-index: -1; /* Ensure the highlight is behind the text */
    transform: skew(-10deg); /* Optional: Add a skew effect for a more dynamic look */
    border-radius: .5em;
    rotate: 1deg;
}

.card { 
    box-shadow: none;
}

.notification > .delete {
    top: 0.6rem;
    right: 0.5rem;
}