@font-face {
    font-family: 'Field Gothic';
    src: url('../../fonts/FieldGotic/FieldGothic.70.woff') format('opentype');
    font-weight: 100;
}

@font-face {
    font-family: 'Field Gothic';
    src: url('../../fonts/FieldGotic/FieldGothic.71.woff') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Field Gothic';
    src: url('../../fonts/FieldGotic/FieldGothic.72.woff') format('opentype');
    font-weight: 600;
}








:root{
    --main-orange : #ffa500;
    --main-orange-hover : #d78d01;

    --main-blue-green: #0692ae;
    --main-blue-green-hover: #047185;

    --aaa: #00c4ff29;
}




/**-------------------------------------------------------------------------------------------------------------------
RESET DEFAULT CSS
-------------------------------------------------------------------------------------------------------------------**/



*{
    /*font-family: 'Playpen Sans', serif;*/
    font-family: 'Montserrat', serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    margin: 0;
}


a{
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

b{
    font-weight: 500;
}


button{
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    font-size: 1em;
    display: block;
}


table{
    border-collapse: collapse;
}


li{
    list-style: none;
}









.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}








.app_icon{
    width: 1em;
    min-width: 1em;
}










#breadcrumb{
    margin: 2em auto;
    font-size: min(1.1em, 4vw);
}

#breadcrumb .items{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
}

#breadcrumb .items a{
    padding: 0.5em;
}


#breadcrumb .items .current{
    padding: 0.5em;
    font-weight: 500;
}







#go_to_top{
    position: fixed;
    z-index: 99;
    bottom: 2em;
    right: 2em;
    width: 3em;
    background: var(--main-orange);
    border-radius: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
    cursor: pointer;
}

#go_to_top .app_icon{
    width: 90%;
    fill: white;
    stroke: none
}







.cta{
    padding: 0.75em 1.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    border-radius: 0.25em;
    color: white;
    fill: white;
}


.cta.main_cta{
    background: var(--main-orange);
}
.cta.main_cta:hover{
    background: var(--main-orange-hover);
}

.cta.sub_cta{
    background: var(--main-blue-green);
}
.cta.sub_cta:hover{
    background: var(--main-blue-green-hover);
}



.cta .arrow-right{
    min-width: 2em;
    transition: 0.25s margin-left ease-in-out;
}

.cta:hover .arrow-right{
    margin-left: 1em;
}








/*----------------------------------------------------------------------------------------------------------------------
FORM
----------------------------------------------------------------------------------------------------------------------*/

form .form_group{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


form .form_group label{
    color: #8f8f8f;
    margin-bottom: 0.5em;
    font-size: 0.9em;
    text-transform: uppercase;
}


form .form_group input{
    padding: 1em;
    border: none;
    background: white;
    border-radius: 0.25em;
    font-size: 1em;
    width: 100%;
    min-width: 20em;
    box-shadow: 0 0px 1px 0px #535353;
}


form .form_group textarea{
    background: white;
    padding: 1em;
    border: none;
    border-radius: 0.5em;
    overflow: auto;
    outline: none;
    box-shadow: 0 0px 1px 0px #535353;
    font-size: 1em;
    line-height: 2em;
}



form .form_group .error{
    font-size: 0.9em;
    color: rgba(206, 11, 11, 0.7);
    margin-top: 0.25em;
}



form button[type="submit"] .loader{
    width: 1.5em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 0.2em solid white;
    background: transparent;
    clip-path: polygon(0 0, 10% 0, 50% 50%, 90% 0, 100% 0, 100% 100%, 0 100%, 0 0);
    animation: animateButtonLoader 1s linear infinite;
}

@keyframes animateButtonLoader {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
