/*
@tailwind base;
@tailwind components;
@tailwind utilities;
*/

@font-face {
    font-family: 'axiforma';
    src: url('../fonts/Kastelov-AxiformaRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'axiforma';
    src: url('../fonts/Kastelov-AxiformaMedium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'axiforma';
    src: url('../fonts/Kastelov-AxiformaBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'axiformaHeavy';
    src: url('../fonts/Kastelov-AxiformaExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'lato';
    src: url('../fonts/Lato-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;

}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    font-size: 14px;
}

.axiforma {
    font-family: 'axiforma', sans-serif !important;
}

.lato {
    font-family: 'lato', sans-serif;
}

html, body, * {
    font-family: 'lato', sans-serif;
}

h1 {
    font-family: 'axiformaHeavy', sans-serif;
}

h2,
.title-font {
    font-weight: bold;
}

h2,
h3,
h4,
h5,
a {
    font-family: 'axiforma', sans-serif;
}

h6,
p,
#ContactIcons,
span {
    font-family: 'lato', sans-serif;
}

.navbar.fixedd-top.top-nav-collapse {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: white;
}

#nav-icon3 {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 0.2rem;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
    display: block;
    height: 3px;
    width: 100%;
    background: #153354;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

/* Icon 3 */

#nav-icon3 span:nth-child(4) {
    display: none;
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
    position: absolute;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
    position: absolute;
    display: block;
}


.lang-switcher a {
    color: rgba(255, 255, 255, 0.7);
    transition: all ease-in-out 0.3s;
}

.lang-switcher a:hover {
    color: rgba(255, 255, 255, 1);
    transition: all ease-in-out 0.3s;
}

.navbar.fixedd-top.top-nav-collapse .lang-switcher a {
    color: rgba(64, 71, 80, 0.7);
    transition: all ease-in-out 0.3s;
}

.navbar.fixedd-top.top-nav-collapse .lang-switcher a:hover {
    color: rgba(64, 71, 80, 1);
    transition: all ease-in-out 0.3s;
}

.hero-height {
    height: 90vh;
}

.hero-post-height {
    height: 50vh;
}

.rounded-cta {
    border-top-left-radius: 10rem;
}

.rounded-hero {
    border-bottom-right-radius: 15rem;
}

.rounded-map {
    border-top-left-radius: 10rem;
}

.height-swiper-team {
    height: 95vh;
}

@media screen and (min-width: 768px) {
    .rounded-hero {
        border-bottom-right-radius: 25rem;
    }

    .rounded-cta {
        border-top-left-radius: 20rem;
    }

    .rounded-map {
        border-top-left-radius: 15rem;
    }
    
}

.three-lines-limit {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.top-nav-collapse .navbar-items li a.nav-link {
    transition: all ease-in-out .2s;
    letter-spacing: 0.025em;
    opacity: 0.75;
}

.top-nav-collapse .navbar-items li a.nav-link:hover {
    opacity: 1;
    color: #5FCC97;
    transition: all ease-in-out .2s;
}

.navbar-items li a.nav-link {
    transition: all ease-in-out .2s;
    letter-spacing: 0.025em;
    opacity: 1;
}

.navbar-items li a.nav-link:hover {
    opacity: 1;
    color: white;
    transition: all ease-in-out .2s;
}

.navbar-items li a.nav-link.active {
    font-weight: 700;
    color: #5FCC97;
    opacity: 1;
    transition: all ease-in-out .2s;
}

.btn-vermas::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0%;
    transition: all ease-in-out 0.3s;
}

.card-body:hover .btn-vermas::before {
    width: 100%;
    border: solid 1px #5FCC97;
    transition: all ease-in-out 0.3s;
}

.login-footer::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 75%;
    border: solid 1px #5FCC97 ;
    transition: all ease-in-out 0.3s;
}

.login-footer:hover::before {
    width: 100%;
    border: solid 1px #8DE892;
    transition: all ease-in-out 0.3s;
}

.test {
    -webkit-clip-path: url(#shape);
    clip-path: url(#shape);
}

.member .img-container {
    transition: all ease-in-out .5s;
}

.member .img-container::before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0px;
    z-index: 55;
    width: 0%;
    height: 4px;
    background-color: #8DE892;
    opacity: 0;
    transition: all ease-in-out 0.5s;
}

.member.active .img-container {
    transform: scale(110%);
    transition: all ease-in-out .5s;
}

.member.active .img-container::before {
    opacity: 1;
    width: 105%;
    transition: all ease-in-out 0.5s;
}

.member .img-container .member-img {
    transition: all ease-in-out .5s;
    filter: saturate(0%);
}

.member.active .img-container .member-img {
    filter: saturate(90%);
    transition: all ease-in-out .5s;
}


@media screen and (min-width: 1150px) {
    .member .img-container::before {
        position: absolute;
        content: "";
        bottom: 0px;
        left: 0px;
        z-index: 55;
        width: 0%;
        height: 8px;
        background-color: #8DE892;
        opacity: 0;
        transition: all ease-in-out 0.5s;
    }

    .member.active .img-container::before {
        opacity: 1;
        width: 105%;
        transition: all ease-in-out 0.5s;
    }

    .member .img-container {
        transition: all ease-in-out .5s;
    }

    .member.active .img-container {
        transform: translateY(10%) scale(110%);
        transition: all ease-in-out .5s;
    }

    .member .img-container .member-img {
        transition: all ease-in-out .5s;
        filter: saturate(0%);
    }

    .member.active .img-container .member-img {
        filter: saturate(90%);
        transition: all ease-in-out .5s;
    }
}

@media screen and (min-width: 768px) {

    #Partners .flex div img {
        filter: saturate(0%) ;
        transform: scale(100%);
        transition: all ease-in-out 0.5s;
        opacity: 50%;
    }

    #Partners .flex div img:hover {
        filter: saturate(100%);
        transform: scale(110%);
        transition: all ease-in-out 0.5s;
        opacity: 100%;
    }

    #Partners .flex div img.fx {
        filter: saturate(0%) brightness(0%);
        transform: scale(100%);
        transition: all ease-in-out 0.5s;
        opacity: 50%;
    }

    #Partners .flex div img.fx:hover {
        filter: saturate(100%) brightness(100%);
        transform: scale(110%);
        transition: all ease-in-out 0.5s;
        opacity: 100%;
    }

    #Reguladores div img {
        transform: scale(100%);
        transition: all ease-in-out 0.5s;
    }

    #Reguladores div img:hover {
        transform: scale(110%);
        transition: all ease-in-out 0.5s;
    }

    .card:hover .card-body {
        background-color: rgba(255, 255, 255, 0.95);
    }

    .btn-vermas::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        width: 0%;
        transition: all ease-in-out 0.3s;
    }

    .card-body:hover .btn-vermas::before {
        width: 100%;
        border: solid 1px #5FCC97;
        transition: all ease-in-out 0.3s;
    }

}