:root {
    font-size: 20px;
    font-family: Georgia,Times,Times New Roman,serif;
    --text-primary: #b6b6b6;
    --text-secondary: #ececec;
    --bg-primary: #ffffff;
    --bg-secondary: #59b2ee;
}
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
}
section video{
    position: fixed;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}
body {
    color: rgb(0,75,211);
    background-color: white;
    margin: 0;
    padding: 0;
    background-image: url(blue-wall-background-cobalt.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}
/* scroll bar */
body::-webkit-scrollbar {width: 0.5rem;}
body::-webkit-scrollbar-track {background: #ffffff;}
body::-webkit-scrollbar-thumb {background: rgb(8,167,224);}
.nav::-webkit-scrollbar{display: none;}
.link{
    display: flex;
    background-color: var(--bg-primary);
    align-items: center;
    height: 5rem;
    width: 5rem;
    color: var(--text-secondary);
    text-decoration: none;
    filter: grayscale(100%) opacity(0.3);
    transition: width 200ms ease-in;
}
.link:hover{
    filter: grayscale(0%) opacity(1);
    background: var(--bg-secondary);
}
.text {
    display: none;
    position: relative;
    bottom: 0.5rem;
    font-size: 2rem;
    text-decoration: none;
    margin-left: 0rem;
}
.link img{
    width: 2rem;
    min-width: 2rem;
    margin: 0 1.5rem;
}
h1 img{
    width: 10vw;
    height: 14vw;
}
.title {
    text-align: center;
    font-family: 'Didot';
    font-size:10vw;
    color: rgba(255, 255, 255, 0.973);
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
.ConferenceDates {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2vw;
  color: rgba(255, 255, 255, 0.973);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.BannerTheme {
  text-align: center;
  font-family: 'Didot';
  color: rgba(255, 255, 255, 0.973);
}
.sectitle2{
  font-family:'Montserrat', sans-serif;
  font-size: 1.5vw;
  color: rgb(255, 255, 255, 0.973);
}
.sectitle{
  font-family:'Montserrat', sans-serif;
  font-size: 2vw;
  color: rgb(29,10,163);
}

.about {
  float: right;
  height: 20vw;
  width: auto;
  word-wrap: break-word;
  padding-right: 6vw;
  overflow: hidden;
  margin-left: 2vw;


}
.cntimage{
  position: relative;
  width: 17vw;
  height: 10vw;
}

/* delegate buttons*/
.push_button {
  font-size: 1.3vw;
	position: relative;
	width:300px;
	height:60px;
  text-align:center;
  color:#FFF;
	text-decoration:none;
	line-height:43px;
	font-family:'Oswald', Helvetica;
	display: inline-block;
  margin: 30px;
}
.block{
  display: block;
}
.push_button:before {
	background:#f0f0f0;
	background-image: webkit-gradient(linear, 0% 0%, 0% 100%, from(#D0D0D0), to(#f0f0f0));

	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;

	-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, .5) inset, 0 1px 0 #FFF;
	-moz-box-shadow:0 1px 2px rgba(0, 0, 0, .5) inset, 0 1px 0 #FFF;
	box-shadow:0 1px 2px rgba(0, 0, 0, .5) inset, 0 1px 0 #FFF;

	position: absolute;
	content: "";
	left: -6px; right: -6px;
	top: -6px; bottom: -10px;
	z-index: -1;
}

.push_button:active {
	-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, .5) inset, 0 -1px 0 rgba(255, 255, 255, .1) inset;
	top:5px;
}
.push_button:active:before{
	top: -11px;
	bottom: -5px;
	content: "";
}

.blue {
  cursor: pointer;
	text-shadow:-1px -1px 0 #4341a8;
	background: #6450d2;
	border:1px solid #6450d2;

	background-image:-webkit-linear-gradient(top, #856cf6, #5950d2);
	background-image:-moz-linear-gradient(top, #856cf6, #5950d2);
	background-image:-ms-linear-gradient(top, #856cf6, #6850d2);
	background-image:-o-linear-gradient(top, #6e6cf6, #5d50d2);
	background-image:linear-gradient(to bottom, #856cf6, #6850d2);

	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;

	-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, .5) inset, 0 -1px 0 rgba(255, 255, 255, .1) inset, 0 4px 0 #4442ad, 0 4px 2px rgba(0, 0, 0, .5);
	-moz-box-shadow:0 1px 0 rgba(255, 255, 255, .5) inset, 0 -1px 0 rgba(255, 255, 255, .1) inset, 0 4px 0 #4942ad, 0 4px 2px rgba(0, 0, 0, .5);
	box-shadow:0 1px 0 rgba(255, 255, 255, .5) inset, 0 -1px 0 rgba(255, 255, 255, .1) inset, 0 4px 0 #5642ad, 0 4px 2px rgba(0, 0, 0, .5);
}

.blue:hover {
	background: #816cf6;
	background-image:-webkit-linear-gradient(top, #6850d2, #8a6cf6);
	background-image:-moz-linear-gradient(top, #505dd2, #6c7af6);
	background-image:-ms-linear-gradient(top, #5950d2, #6c7af6);
	background-image:-o-linear-gradient(top, #5d50d2, #816cf6);
	background-image:linear-gradient(top, #5052d2, #6c75f6);
}
/*social media buttons*/
.fa {
  position: relative;
  border-radius: 8px;
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin-left: 0vw;
}
.fa:hover {
  opacity: 0.7;
}
.fa-facebook {
  background: #122488;
  color: white;
}
.fa-instagram {
  background: #122488;
  color: white;
  margin-left: 2vw;
}

.textbox {
    font-size: 1.2vw;
    background-color: rgba(255,255,255,0.85);
    color: black;
    font-family: 'Montserrat', sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.credit {
    font-size: 1.2vw;
    background-color: black;
    color: white;
    font-family: Brush Script MT,cursive;
    font-style: bold;
    margin-left: 100px;
    margin-right: 20px ;
    display: none;
}
/* nav bar*/
.topnav{
  background-color: blue;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 4vw;
  overflow: hidden;
  z-index: 2;
  font-family: 'Montserrat';
  -webkit-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}
.topnav ul{
    color: white;
    z-index: 10;
    display: flex;
    justify-content: space-evenly;
}
.topnav li {
  display: inline;
  font-size: 2vw;
  vertical-align: top;
}
.topnav li:hover {
    text-decoration: underline;
    cursor: pointer;
}
.topnav ul {
padding-top: 0%;
margin: 1%;
}
/*slide show*/
.slideshow{
  background-color: rgba(19,18,164,0.9);
  border: 5px solid white;
  margin-left: auto;
  margin-right: auto;
  width:99.25%;
}
.top{
  margin-left: auto;
  margin-right: auto;
  width: 55%;
  height: 100%;
}
.top .slick-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24vw;
}
.top img{
  width: 100%;
  max-height: 24vw;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.top img.portrait {
  width: auto;
  max-width: 38%;
  max-height: 22vw;
}
.bottom .slick-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8vw;
}
.bottom img{
  width: auto;
  max-width: 85%;
  max-height: 8vw;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.bottom img.portrait {
  max-width: 42%;
  max-height: 7vw;
}
.bottom{
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.slick-initialized .slick-slide {
  float: inherit;
  display: inline-block;
  vertical-align: middle;
  outline: none;
}
.nick{
    filter: opacity(0);
    cursor: pointer;
    padding: 0px;
    margin: 0px;
}

.buffer {
  background-color: rgba(255,255,255,0.5);
  margin: 1%;
  padding-bottom: 10px;
}
/* Mat's shit */
#Mat_pro{
  display: inline-block;
  width: 50%;
}
#Mat_commit{
  display: inline-block;
}
.mat_img{
  position: relative;
  top: 20px;
  display: inline-block;
  max-width: 40vw;
  height: 20vw;
}
.mat_img img{
  width: 100%;
  height: 100%;
}
