/* Header */
nav {
	background-color: #00A4C3;
}
.navbar {
	height: 60px;
}
.page {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
}
.navbar-brand img {
    width: 225px;
    height: auto;
}

/* Home Image */
.home-img img {
    width: 100%;
    height: auto;
}

/* Info Section */
.info-section .col {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 0px 15px 30px;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 80px 0px 30px 0px;
}
/* Boxes */
#contestBox {
    position: relative;
    right: 60px;
}
#winnerBox {
    position: relative;
    left: 60px;
}
/* Titles */
.boxTitle {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    background-color: white;
    position: relative;
    bottom: 20px;
    padding: 0px 10px;
}
#contestTitle {
    color: rgb(237, 28, 36);
    margin: 0px 25px; /*increase middle value for less cut in border*/
}
#involveTitle {
    color: rgb(38,34,98);
    margin: 0px 55px; 
}
#winnerTitle {
    color: rgb(0,164,195);
    margin: 0px 50px;
}
/* Buttons */
.button {
    color: white;
    border: none;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    border-width: 1.5px;
    border-style: solid;
}
.button:hover {
    background-color: white;
    transition-duration: 0.4s;
}
#contestButton {
    background-color: rgb(237, 28, 36);
    border-color: rgb(237, 28, 36);
    padding: 10px 30px;
}
#contestButton:hover {
    background-color: white;
    color: rgb(237, 28, 36);
}
.involveButton {
    background-color: rgb(38,34,98);
    margin: 0px 7.5px;
    padding: 10px 0px;
    border-color: rgb(38,34,98);
    width: 145px;
}
.involveButton:hover {
    color: rgb(38,34,98);
}
#winnerButton {
    background-color: rgb(0,164,195);
    padding: 10px 25px;
    border-color: rgb(0,164,195);
}
#winnerButton:hover {
    background-color: white;
    color:rgb(0,164,195);
}
/* Info */
.info {
    font-family: Montserrat;
    font-size: 16px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
    margin: 0px 10px 20px 15px;
}

/* Sponsors */
.sponsors {
    margin-top: 100px;
}
.sponsortitle {
  padding: 16px 32px;
  text-align: center;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  color: #6D6E71;
  line-height: 29px;
  display: flex;
  margin:auto;
  border: white;
  background-color: white;
  opacity: 0.8;
  transition-duration: 0.4s;
}
.sponsortitle:hover{
    opacity: 1;
    font-size:44px;
}
.sponsors .container img {
    position: absolute;
    width:300px;
    height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
    transition-duration: 0.4s;
  }
  
.sponsors .container img:hover{
    opacity: 1;
    width: 330px;
    height: 220px;
    transform: translate(-5%, -10%)
}

.sponsors hr {

    height: 120px;
}

/* Footer */
.footer {
    position: relative;
    margin-top: 100px;
    padding: 50px;
    left: 10;
    bottom: 10;
    width: 100%;
    background-color: #262262;
    color: white;
    text-align: left
}
.footer-col {
    margin-left: 100px;
}
.footer .row {
    margin-bottom: 10px;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    color: #00A4C3;
    text-decoration: none;
}