@charset "UTF-8";

/* Direct balise change */
body{
  margin: 0;
}
h1{
  text-align: center;
  font-weight: bold;
}
h2{
  text-align: center;
}
p{
  text-align: justify;
}

hr {
  border: 1px solid #770D2F;
  width: 50%;
  text-align: center;
  margin: auto;
  opacity: 80;
  margin-bottom: 1em;
}

/* background and recolor */
.bg-sable{
  background-color: #FFF5D6;
  color: #123684;
}
.bg-bordo{
  background-color: #770D2F;
  color: #FFF5D6;
}

.bg-white{
  background-color: white;
}

.bg-blue{
  background-color: #123684;
}

.bordo{
  color: #770D2F;
}

.white{
  color: white;
}

.blue{
  color: #123684;
}
.logoblue{
  fill: #123684;
}
.sable{
  color: #FFF5D6;
}


/* Navbar */
.navbar-brand img{
  height: 50px;
  width: auto;
}
.navborder{
  border-bottom: #770D2F solid 2px;
}
.navbar-nav{
  text-align: right;
  padding-right: 10px;
}

.navbar-nav :hover{
  color: #123684;
}

.nav-link{
  color: #770D2F;
}

.navbar-toggler {
  color: #770D2F;
  border-color: transparent;
}

.navbar-toggler-icon{
  color: #770D2F;
  
}

/* Pading for first DIV #ID*/
.mg-first{
  margin-top:80px;
}

/* logo SVG */
.logo{
  max-height: 100px;
  width: auto;
}
.logo2{
  height: 75px;
  width: auto;
}
.logo3{
  height: 50px;
  width: auto;
}
.logo4{
  height: 25px;
  width: auto;
}

/* Spacing column */
.type-one{
  border-radius: 10%;
  background-color: #770D2F;
  color: white;
  padding-top: 1em;
  padding-bottom: 1em;
  margin: 0.5em;
}
.type-two{
  border-radius: 10%;
  padding-top: 1em;
  padding-bottom: 1em;
  margin: 0.5em;
}

/* Footer */
.page-footer{
  border-top-left-radius: 10%;
  border-top-right-radius: 10%;
  border-top: #770D2F solid 3px;
}
footer img{
  height: 100px;
  width: auto;
}
footer a {
  color: #FFF5D6;;
}

/* Center the loader */
#loader {
  position: absolute;
  left: 50%;
  top: 25%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: 10px 0 0 10px;
  border: 16px solid  #123684;
  border-radius: 50%;
  border-top: 16px solid #770D2F;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
#myDiv {
  display: none;
  text-align: center;
}
.animate-bottom {
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}
@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}
@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

.right{
  text-align: right;
}

.border_align{
  padding: 1em;
  margin: 1em;
}