body, html {
  height: 100%;
  margin: 0;
  font-family: 'Myriad Pro', "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}

/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 3%;
      z-index: 1;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  margin: 3%;
  z-index: 2;
}

/* Style the footer */
footer {
    position: fixed;
    bottom: 6%;
    right: 6%;
	z-index: 0;
}

h1 {
    font-weight: 700;
    font-style: italic;
}

body {
  /* The image used */
  background-image: url("../src/rabo-bg.png");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3% 3%;
}

.panorama {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    opacity: .9;
    overflow: hidden;
    transition: .2s;
}

.panorama__top {
    background-color: #19197c;
    color: #fff;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
}

.panorama__bottom {
    background-color: #fd6400;
    color: #fff;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
    display: flex;
    justify-content: flex-end;
	font-size: 24px;
}

.panorama__link {
    font-size: 24px;
	margin-bottom: 0px;
    font-style: italic;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo{
	height: 150px;
	width: 300px;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 1200px) {
	section {
		-webkit-flex-direction: column;
		flex-direction: column-reverse;
		padding: 1%;
	}
  
	nav {
	  padding: 1%;
	}
  
	article {
	  padding: 1%;
	}
	
	body {
       padding: 1%;
	   background-position: 20% 50%;
	}
	
	footer {
		bottom: 24px;
		right: 24px;
	}
}

@media (max-width: 460px) {
	section {
		-webkit-flex-direction: column;
		flex-direction: column-reverse;
		padding: 1%;
	}
  
	nav {
	  padding: 1%;
	}
  
	article {
	  padding: 1%;
	}
	
	body {
       padding: 1%;
	   background-position: 30% 10%;
	   background-size: unset;
	}
	
	
	.chat {
	    min-height: 450px;
	}
	
	
	.panorama__link {
		font-size: 20px; 
	}
	
	h1 {
		font-size: 30px;
		line-height: 1.2;
		margin-bottom: 0;
	}
	
	footer {
		bottom: 20px;
		right: 24px;
	}
}

.chat.col-sm-12.col-md-3.shadow-lg.p-0 {
    min-height: 325px;
}