/* Nav Section v */

body {
    background-color:#FDF9FF ;
}

nav {
background-color: #CC3F0C;
height: 100px;
width: 100%;
border-bottom: 5px solid #2D1E2F;
}

nav #constant ul {
    display: flex;
    align-content: center;
    margin: 0;
}

nav #constant ul li{
position: relative;
background-color: #EE600E;
justify-content: center;
align-items: center;
display: flex;
list-style-type: none;
height: 30px;
width: 85px;
left: 12.5%;
}

nav #varied {
    position: absolute;
    top: 0.8%;
    left: 85%;
    height: 30px;
    width: 15%;
}

nav #varied ul {
    display: flex;
    align-content: flex-end;
    margin: 0;
}

nav #varied ul li{
    background-color: #EE600E;
    justify-content: center;
    align-items: center;
    display: flex;
    list-style-type: none;
    height: 30px;
    width: 85px;
}


#logobar {
    position: relative;
    top: 0;
    background-color: #FDF9FF;
    border-bottom: 5px solid #2D1E2F;
    border-top: 5px solid #2D1E2F;
    height: 70px;
}

#logobar #logo {
    position: relative;
    background-color: #EE600E;
    height: 50px;
    width: 85px;
    top: 16%;
    left: 4%;
}

#logged {
    position: absolute;
    right: 26.9%;
}

ul {
list-style-type: none;
}

li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
}

/* Nav Section ^ */

/* Rest of website */

* {box-sizing:border-box}

#info1 {
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    width: 45%;
    margin: 50px;
    margin-bottom: 70px;
    left: 25%;
    padding: 20px;
    border: 3px solid #EE600E;
}

#info1 h1 {
    margin: 0px;
}

#info1 p {
    position: relative;
}

#pbox #title2 {
    position: absolute;
    display: flex;
    margin: 0;
    width: 400px;
    height: 44px;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #EE600E;
    top: 42.9%;
    left: 4.867%;
}

#info2 {
    position: relative;
    display: flex;
    align-self: center;
    width: 85%;
    height: 465px;
    background-color: white;
    border: 5px solid #CC3F0C;
    justify-content: center;
    left: 0%;
    margin: auto;
}

.producers {
    display: none;
}

.producers img {
    position: absolute;
    left: 70%;
    display: flex;
    width: 30%;
    height: 455px;
    border-left: 5px solid #CC3F0C ;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  visibility: hidden;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.title {
  color: black;
  padding: 8px 12px;
  position: absolute;
  top: 11%;
  left: 2.2%;
}

.text {
    color: black;
    font-size: 20px;
    padding: 8px 12px;
    margin: 10px;
    position: absolute;
    left: 2%;
    top: 22%;
    padding: 15px;
    border: 2px solid #EE600E;
    width: 65%;
    height: 65%;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #EE600E;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: 430px;
}

.active, .dot:hover {
  background-color: #CC3F0C;
}   

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
