@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face { 
    font-family: 'ActaDisplay-Bold';
    font-weight: normal;
    font-style: normal;
    src: url(../fonts/ActaDisplay-Bold.otf);
}


main {
	margin: 0;
	background: url('../img/framery-lander-bg.jpg');
    background-size: cover;
    height: 100vh;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: 'Roboto';
  color: #3b3e41;
}

h1 {
	font-family: 'ActaDisplay-Bold';
}

.template-framery .webhelp_expand_collapse_sections, .template-framery .wh_hide_highlight, .template-framery .wh_print_link button, .template-framery .wh_navigation_links a, .template-framery .wh_navigation_links a:hover, .template-framery .wh_navigation_links a:active, .template-framery .wh_navigation_links a:visited, .template-framery .wh_print_link a:before, .template-framery .wh_navigation_links a:before, .template-framery .wh_navigation_links a:hover:before, .template-framery .wh_navigation_links a:active:before, .template-framery .wh_navigation_links a:visited:before, .template-framery .body a, .template-framery .body a:focus, .template-framery .body a:hover, .template-framery .searchresult li a, .template-framery .related-links a, .template-framery .related-links a:visited {
    color: #00825f;
}

/*.background-bg {
    background: url(../img/background-shape.svg) scroll no-repeat -2px bottom transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 0;
    background-size: 68%;
}*/


.language-box {
    max-width: 75%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 5em;
    border-radius: 20px;
    z-index: 9999;
}

.language-box img {
	    height: 70px;
    margin: 0 0 20px 0;
}


/* Dropdown Button */
.dropbtn {
    background-color: #00825f;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    min-width: 260px;
    position: relative;
    font-family: 'Roboto';
}

.dropbtn:after {
	content: url(../img/down-arrow.svg);
	position: absolute;
    right: 25px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #119d77;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 260px;
  z-index: 1;
  text-align: center;
  padding-top: 20px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #00825f; color: #fff;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


@media (max-width: 769px) {
	h1 {
		text-align: center;
	}

	.language-box {
    padding: 2em;
	}

	.language-box img {
	    height: 60px;
	}

}