/* 
box
grey        #CEDDDE = rgb(206,221,222) 
green       #9CD2D5 = rgb(156.210.213)
blue-green   #82CFD8 = rgb(130,207,216)
blue        #007FA9 = rgb(0,127,169)
dark-blue   #00334A = rgb(0,51,74)

*/


@charset "UTF-8";

body {
    font-family: "Oswald", sans-serif;
}

div,
p {
    margin: 0;
    padding: 0;
}

/*************  TEXTE ********/

.light-text {
    font-weight: 300;
}

.bold-text{
    font-weight:500;
}

.small-text {
    font-size: 0.9rem;
}

.xtra-small-text {
    font-size: 0.7rem;
}

.big-text{
    font-size:1.2rem;
}

.xtra-big-text{
    font-size:2.5rem;
}

.white-text {
    color: white;
}

.grey-text{
    color:grey;
}

.green-text{
    color:#9CD2D5;
}


.dark-grey-text{
    color:rgb(88, 88, 88);
}

.blue-text {
    color: #007FA9;
}

.blue-green-text{
    color:#82CFD8;
}

.dark-blue-text{
    color:#00334A;
}

.text-justify{
    text-align: justify;
}


/*************  LIENS ********/
.black-link {
    color: black;
    text-decoration: none;
}

.black-link:hover {
    color: rgb(28, 138, 202);
    text-decoration: none;
}

.white-link {
    color: white;
    text-decoration: none;
}

.white-link:hover {
    color: #007FA9;
    text-decoration: none;
}

.blue-link {
    color: #007FA9;
    text-decoration: none;
}

.blue-link:hover {
    color: #00334A;
    text-decoration: none;
}

.green-link {
    color: #82CFD8;
    text-decoration: none;
}

.green-link:hover {
    color: #007FA9;
    text-decoration: none;
}

.dark-blue-link {
    color: #00334A;
    text-decoration: none;
}

.dark-blue-link:hover {
    color: #82CFD8;
    text-decoration: none;
}

/*************  TITRES ********/
.big-title{
    font-size:1.8rem;
}

.small-title{
    font-size:1.2rem;
}

.blue-big-title{
    font-size:1.8rem;
    color:rgb(28, 138, 202);
}

.white-big-title{
    font-size:1.8rem;
    color:white;
}

.blue-small-title{
    font-size:1.2rem;
    color:rgb(28, 138, 202);
}

.white-small-title{
    font-size:1.2rem;
    color:white;
}


/*************  BOUTONS ********/
.blue-green-btn{
    background-color:rgb(130,207,216);
    color:rgb(0,51,74);
}

.blue-green-btn:hover{
    background-color: rgb(206,221,222);
    color:rgb(0,51,74);
}

.light-blue-btn{
    background-color: rgb(28, 138, 202);
    color:white;
}

.light-blue-btn:hover{
    background-color:rgb(130,207,216);
    color:white;
}

.dark-blue-btn{
    background-color: rgb(0,51,74);
    color:white;
}

.dark-blue-btn:hover{
    background-color: white;
    color:rgb(0,51,74);
}

/*************  ICONES ********/
.xtra-small-icon{
   font-size: 0.4rem;;
}

.big-icon {
    font-size: 1.5rem;
}

.super-big-icon {
    font-size: 3rem;
}

/*************  CONTENEURS ********/


.box-shadow {
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.border-box{
border:1px solid lightgrey;
}

.rounded-box{
    border-radius:10px;
}

.blue-green-box{
   background-color:#82CFD8;
}

.green-box{
    background-color:#9CD2D5;
}

.dark-blue-box{
background-color:rgb(0,51,74);
}

.grey-box{
    background-color: #CEDDDE;
}

.transparent-box{
    background-color: rgba(255, 255, 255, 0.4);
}

.white-right-b{
    border:none;
    border-right:2px solid white;
    }

.white-left-b{
border:none;
border-left:4px solid white;
}

.white-b{
border-left:1px solid white;
border-right:1px solid white;
border-top:2px solid white;
border-bottom:2px solid white;
}

.default-input{
    background-color: rgba(255, 255, 255, 0.4);
    border:none;
}

.img-cover{
    height:100%;
    width:100%;
    object-fit: cover;
}