@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'gothamUltraItalic';
    src: url("../fonts/Gotham Ultra Italic.ttf") format('truetype');
}

body {
    /* font-family: 'gothamUltraItalic'; */
    font-family: 'Poppins' !important;
    padding: 0;
    margin: 0;
}

#page {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
}

header {
    min-height: 4.1em;
}

main {
    flex: 1 0 auto;
}

footer {
    color: white;
    background-color: #3b3b3a;
    padding: 1em;
}

footer .footer-text {
    text-align: center;
    font-size: 0.9em;
}

footer .btn-social {
    font-size: 1.1em;
    border-radius: 50%;
    width: 35px;
    text-align: center;
    transition: transform 0.2s ease;
}

footer .btn-social:hover {
    transform: translateY(-3px);
}


.btn-orange {
    background-color: #db7419;
    color: white;
    border-radius: 2em;
}

.btn-orange:hover {
    background-color: #f4a864;
    color: white;
}

.bg-orange {
    background-color: #db7419;
    color: white;
}

.btn-black-one {
    background-color: #3e3e3d;
    color: white;
}

.btn-black-one:hover {
    background-color: #666;
    color: white;
}

.bg-black-one {
    background-color: #3e3e3d;
    color: white;
}

.text-normal {
    /* font-family: var(--bs-font-sans-serif); */
}

.error {
    font-size: 0.8em;
}

/* =========== Servicio single ============ */

.text-servicio {
    line-height: 1.7em;
    /* font-family: var(--bs-font-sans-serif); */
    font-size: 1.0em;
}

.img-servicio {
    width: 90%;
}

.text-servicio-hero {
    font-size: 2.2em;
    line-height: 1.3em;
}


/* dashboard */

.text-hero {
    font-size: 2.0em;
    line-height: 1.3em;
}

.text-container {
    background-color: rgba(0, 0, 0, 0.35);
    margin: -1em;
    padding: 1em;
    height: 6.5em;
}

.card {
    /* font-family: var(--bs-font-sans-serif); */
    border: 0px #000 solid;
    max-width: 540px;
}

.btn-service {
    border-radius: 1.5em;
    width: 50%;
}

.card-title {
    font-weight: bold;
}

.card-image {
    width: 60%;
    margin: 1em;
    object-fit: contain;
    object-position: left top;
    transition: transform 0.5s ease;
}

.card-image:hover {
    transform: translateY(-10px);
}

.img_emp {
    border-radius: 1em;
    max-height: 150px;
    object-fit: fill;
    background-color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    /* background-color: #424242; */
}

.card-body .btn {
    transition: transform 0.5s ease;
}

.card-body .btn:hover {
    transform: translateY(-5px);
}

.slick-slide {
    height: 200px !important;
}

.slick-prev::before,
.slick-next::before {
    color: #5e5f60;
}


#confetti-canvas {
    position: absolute;
    height: 80vh;
    top: 0;
    left: 0;
}

.toggleContainer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    border: 3px solid #343434;
    border-radius: 20px;
    background: #343434;
    font-weight: bold;
    color: #343434;
    cursor: pointer;
}

.toggleContainer::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0%;
    border-radius: 20px;
    background: white;
    transition: all 0.3s;
}

.toggleCheckbox:checked+.toggleContainer::before {
    left: 50%;
}

.toggleContainer div {
    padding: 6px;
    text-align: center;
    z-index: 1;
}

.toggleCheckbox {
    display: none;
}

.toggleCheckbox:checked+.toggleContainer div:first-child {
    color: white;
    transition: color 0.3s;
}

.toggleCheckbox:checked+.toggleContainer div:last-child {
    color: #343434;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:first-child {
    color: #343434;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:last-child {
    color: white;
    transition: color 0.3s;
}

.accordion-button {
    color: #fff;
    background-color: #db7419;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #a85711;
}

.accordion-button:focus {
    border-color: white;
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 0.25);
}

@font-face {
    font-family: 'Twemoji Country Flags';
    unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
    src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');
}

select {
    font-family: 'Twemoji Country Flags', sans-serif;
    
}

select option {
    font-family: 'Twemoji Country Flags', sans-serif;
}