@import url('https://fonts.googleapis.com/css?family=Montserrat:600|Open+Sans:600&display=swap');
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
}

:root{
    --widthOfTheSidebar: 0;
    --ColorOfTheSidebar: #4a7fcf;
    --transitionTime: 0s;
}

body{
    width: 100%;
}

#Partner{
    width: 100%;
    min-height: 100%;
    position: absolute;
    transition: all var(--transitionTime) ease;
    z-index: -1;

    background-image: url(IMG/BackgroundTOP.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#Partner a{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#Partner #local{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

#Partner #local img{
  margin-top: 30px;
  width: 60%;
  padding: 20px;
  border-radius: 20px;
  border: 0.5px solid black;
  background-color: rgba(255,255,255,.4);
}

#Partner #abroad{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#Partner #abroad img{
  margin-top: 30px;
  width: 30%;
  padding: 20px;
  border-radius: 20px;
  border: 0.5px solid black;
  background-color: rgba(255,255,255,.4);
}







