/*

ZÖLD SZÍN === rgba(100, 200, 80, 0.75) #64c850
ZÖLD SZÍN shaded === rgba(80, 160, 64, 0.75) #50A040
PIROS SZÍN === rgba(235, 90, 70, 1) #eb5a46
PIROS SZÍN shaded === rgba(188, 72, 56, 1) #BC4838
SÁRGA SZÍN === rgba(255, 179, 71, 1) #ffb347;

fehér szín === rgba(241, 239, 234) #f1efea;







*/

button:focus {outline:0;}

.Chevron{
    position:relative;
    display:block;
    height: 50px;
    transform: rotateX(60deg);

}
.Chevron:before,
.Chevron:after{
    position:absolute;
    display:block;
    content:"";
    border:25px solid transparent;
}
/* Replace all text `top` below with left/right/bottom to rotate the chevron */
.Chevron:before{
    top:0;
    border-top-color: #ffb347;
}
.Chevron:after{
    top:-7px;/*adjust thickness*/
    border-top-color: white;
}

.overflow-auto {
    overflow: visible !important;
}
.overflow-hidden {
    overflow: hidden !important;
}

.auto-height {
    max-height: 1000px !important;
}

body {
    overflow-x: hidden;
}
#bodyWrapper {
    width: 100%;
    min-height: 80vh;
    float:left;
    padding-top: 16px;
    background: transparent;
    transition: all 0.5s;
    margin: 70px auto auto auto;
}

.bodyBlur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);

}

/* info box */

.info-bar {
    border-bottom: 1px solid gray;
    width: 100%;
    height: 34px;
}
.info-logo {
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    font-size: 40px;
    border-left: 10px solid white;
    border-right: 10px solid white;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------ ANIMATED CHECK BUTTON ------------------------------------------------------- */
@-moz-keyframes
dothabottomcheck {  0% {
    height: 0;
}
    100% {
        height: 10px;
    }
}
@-webkit-keyframes
dothabottomcheck {  0% {
    height: 0;
}
    100% {
        height: 10px;
    }
}
@keyframes
dothabottomcheck {  0% {
    height: 0;
}
    100% {
        height: 10px;
    }
}
@keyframes
dothatopcheck {  0% {
    height: 0;
}
    50% {
        height: 0;
    }
    100% {
        height: 18px;
    }
}
@-webkit-keyframes
dothatopcheck {  0% {
    height: 0;
}
    50% {
        height: 0;
    }
    100% {
        height: 18px;
    }
}
@-moz-keyframes
dothatopcheck {  0% {
    height: 0;
}
    50% {
        height: 0;
    }
    100% {
        height: 18px;
    }
}
input[type=checkbox] { display: none; }
.check-box-grey,
.check-box-orange,
.check-box-green {
    background-color: transparent;
    border: 2px solid grey;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}
.check-box-grey::before,
.check-box-grey::after,
.check-box-orange::before,
.check-box-orange::after,
.check-box-green::before,
.check-box-green::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: 4px;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 1px;
    content: ' ';
    -webkit-transition: opacity ease 0.5s;
    -moz-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s;
}
.check-box-grey::before,
.check-box-grey::after {
    background-color: grey;
}
.check-box-orange::before,
.check-box-orange::after {
    background-color: #ffb347;
}
.check-box-green::before,
.check-box-green::after {
    background-color: #64c850;
}
.check-box-grey::before,
.check-box-orange::before,
.check-box-green::before {
    top: 12px;
    left: 8px;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.check-box-grey::after,
.check-box-orange::after,
.check-box-green::after {
    top: 6px;
    left: 0px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type=checkbox]:checked + .check-box-grey,
.check-box-grey.checked {
    border-color: grey;
}
input[type=checkbox]:checked + .check-box-orange,
.check-box-orange.checked {
    border-color: #ffb347;
}
input[type=checkbox]:checked + .check-box-green,
.check-box-green.checked {
    border-color: #64c850 ;
}
input[type=checkbox]:checked + .check-box-grey::after,
input[type=checkbox]:checked + .check-box-orange::after,
input[type=checkbox]:checked + .check-box-green::after,
.check-box-grey.checked::after,
.check-box-orange.checked::after,
.check-box-green.checked::after {
    height: 10px;
    -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
    animation: dothabottomcheck 0.2s ease 0s forwards;
}
input[type=checkbox]:checked + .check-box-grey::before,
input[type=checkbox]:checked + .check-box-orange::before,
input[type=checkbox]:checked + .check-box-green::before,
.check-box-grey.checked::before,
.check-box-orange.checked::before,
.check-box-green.checked::before {
    height: 10px;
    -moz-animation: dothatopcheck 0.4s ease 0s forwards;
    -o-animation: dothatopcheck 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
    animation: dothatopcheck 0.4s ease 0s forwards;
}


@-moz-keyframes
dothabottomcheck {  0% {
    height: 0;
}
    100% {
        height: 10px;
    }
}
@-webkit-keyframes
dothabottomcheck {  0% {
    height: 0;
}
    100% {
        height: 10px;
    }
}
@keyframes
dothabottomcheck {  0% {
    height: 0;
}
    100% {
        height: 10px;
    }
}
@keyframes
dothatopcheck {  0% {
    height: 0;
}
    50% {
        height: 0;
    }
    100% {
        height: 18px;
    }
}
@-webkit-keyframes
dothatopcheck {  0% {
    height: 0;
}
    50% {
        height: 0;
    }
    100% {
        height: 18px;
    }
}
@-moz-keyframes
dothatopcheck {  0% {
    height: 0;
}
    50% {
        height: 0;
    }
    100% {
        height: 18px;
    }
}
input[type=radio] { display: none; }
.check-box-grey,
.check-box-orange,
.check-box-green {
    background-color: transparent;
    border: 2px solid grey;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}
.check-box-grey::before,
.check-box-grey::after,
.check-box-orange::before,
.check-box-orange::after,
.check-box-green::before,
.check-box-green::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: 4px;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 1px;
    content: ' ';
    -webkit-transition: opacity ease 0.5s;
    -moz-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s;
}
.check-box-grey::before,
.check-box-grey::after {
    background-color: grey;
}
.check-box-orange::before,
.check-box-orange::after {
    background-color: #ffb347;
}
.check-box-green::before,
.check-box-green::after {
    background-color: #64c850;
}
.check-box-grey::before,
.check-box-orange::before,
.check-box-green::before {
    top: 12px;
    left: 8px;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.check-box-grey::after,
.check-box-orange::after,
.check-box-green::after {
    top: 6px;
    left: 0px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type=radio]:checked + .check-box-grey,
.check-box-grey.checked {
    border-color: grey;
}
input[type=radio]:checked + .check-box-orange,
.check-box-orange.checked {
    border-color: #ffb347;
}
input[type=radio]:checked + .check-box-green,
.check-box-green.checked {
    border-color: #64c850 ;
}
input[type=radio]:checked + .check-box-grey::after,
input[type=radio]:checked + .check-box-orange::after,
input[type=radio]:checked + .check-box-green::after,
.check-box-grey.checked::after,
.check-box-orange.checked::after,
.check-box-green.checked::after {
    height: 10px;
    -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
    animation: dothabottomcheck 0.2s ease 0s forwards;
}
input[type=radio]:checked + .check-box-grey::before,
input[type=radio]:checked + .check-box-orange::before,
input[type=radio]:checked + .check-box-green::before,
.check-box-grey.checked::before,
.check-box-orange.checked::before,
.check-box-green.checked::before {
    height: 10px;
    -moz-animation: dothatopcheck 0.4s ease 0s forwards;
    -o-animation: dothatopcheck 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
    animation: dothatopcheck 0.4s ease 0s forwards;
}
/* ------------------------------------------------------------------------------------------------------------------ */
/* --------------------------------------------- SCROLL BAR  -------------------------------------------------------- */
::-webkit-scrollbar-track {
 box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
 background-color: rgb(243, 239, 232);
}
::-webkit-scrollbar {
 width: 4px; /* 8px volt */
 background-color: rgb(243, 239, 232);
}
::-webkit-scrollbar-thumb {
 background-color: #444444;
 border-radius: 4px;
}
/* ----------------------------------------------------- FONTS------------------------------------------------------- */
@font-face {
	font-family: Lato;
	src: url("../fonts/Lato-Regular.ttf");
}
@font-face {
	font-family: Merri;
	src: url("../fonts/Merriweather-Regular.ttf");
}
@font-face {
	font-family: Trajan;
	src: url("../fonts/Trajan.ttf");
}
@font-face {
	font-family: Circe;
	src: url("../fonts/Circe.woff");
}
.lato {
	font-family: Lato;
}
.merri {
	font-family: Merri;
}
.trajan {
	font-family: Trajan;
}
.circe {
	font-family: Circe;
}
/* ------------------------------------------- LINKS ---------------------------------------------------------------- */
a:link {
	color: #ffb347;
}
a:visited {
	color: #ffb347;
}
a:hover {
	color: #C05F00;
}
a:active {
	color: #ffb347;
}

.no-underline{text-decoration: none !important;}/* img shadow everywhere exclusion is inline css */

/* ------------------------------------------- HEADER --------------------------------------------------------------- */
.smallMenu {
    height: 36px;
    font-size: 16px;
    line-height: 36px;
    transition: all 0.5s;
}
.largeMenu {
    height: 70px;
    font-size: 20px;
    line-height: 70px;
    transition: all 0.5s;
}

header {
    background: white;

    position: fixed !important;
    transform: translateZ(0);

    box-shadow: 0 0 2px 0 lightgrey;

    z-index: 1;
}

header a {
    text-decoration: none !important;
}
header a:link,
header a:visited {
    text-decoration: none;
    color: black;
}
header a:hover {
    text-decoration: none;
    color: #ffb347;
}

header div {
    height: inherit;
}

header div nav {
    float: left;
    height: inherit;
    width: 100%;
    text-align: center;
}
header div nav div {
    float: left;

}

header div nav div img {
    height: inherit;
    box-shadow: none;

}
nav div {
    float: left;
}

header div #nav-mobile,
header div #nav-desktop {
    height: inherit;
}

nav .nav-profile {
    float: right;
    line-height: 1;
}
nav .nav-profile span {
    height: 50%;
    font-size: inherit;
}
nav .nav-profile-action {
    min-width: 51%;
    float: right;
    //transition: color 0.3s;
}
nav .nav-profile-action a {
    color: #ffb347 !important;
    cursor: pointer;
    color: inherit;
    transition: color 0.3s;
}

header.largeMenu * .nav-profile-action {
    padding-top: 7px;
    transition: padding-top 0.5s;
}
header.smallMenu * .nav-profile-action {
    padding-top: 0;
    transition: padding-top 0.5s;
}
.nav-item {
    height: inherit;
    width: auto;
    padding: 0 20px;
}
nav #nav-roll {
    float: right;
    padding-right: 10%;
    font-size: 24px;
}
nav #nav-roll + .nav-menu {
    margin-top: 70px;
    width: 100%;
    display: none;
    float: left;
}
nav #nav-roll + .nav-menu .nav-item {
    width: 100%;
    background: #EEEEEE;
    float: left;
}
nav .nav-menu {
    height: inherit;
    width:  auto;
    display: inline-block;
    float: none;

    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);

    //transition: all 0.5s;
}

nav .nav-logo {
    background-image: url("/img/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 70px;
    height: inherit;
    cursor: pointer;
    float: left;
}
nav .nav-profile-circle {
    float: right;
    margin-top: 2%;
    margin-right: 2%;
    height: 80% !important;
    background: gray;
    border-radius: 100%;
}
nav .small-circle {
    width: 28.8px !important;
    height: 28.8px !important;
    transition: all 0.5s;
}
nav .large-circle {
    width: 56px !important;
    height: 56px !important;
    transition: all 0.5s;
}
.dropdown .nav-item {
    padding:0;
}
.dropdown * .nav-item a {
    display: inline-block;
    width: 240px;
}

.dropdown-first-content > .nav-item {
    transition: border-right 0.5s;
    font-size: 18px;
}
.dropdown-second-content > .nav-item {
    transition: border-right 0.5s;
    font-size: 18px;
}

.dropdown-first-content > .nav-item:hover {
    border-right: 5px solid orange;
}
.dropdown-second-content > .nav-item:hover {
    border-right: 5px solid orange;
}

.dropdown-first {

}
.dropdown-first-content {
    display: none;

    position: absolute;
    left:0;
    width: 270px;
    background: white;
    height: auto;
    box-shadow: 0 2px 2px 0 lightgray;
}
.dropdown-first-content .nav-item {
    line-height: 40px;
    height: 40px;
}
.dropdown-first:hover .dropdown-first-content {
    display: block;
}
.dropdown-first:hover .dropdown-first-content .nav-item {
    float: left;
    width: 100%;
}
.dropdown-second {

}
.dropdown-second-content {
    display: none;

    position: absolute;
    top:0;
    left: 270px;
    width: 300px;
    background: white;
    height: auto;
    box-shadow: 0 2px 2px 0 lightgray;
}
.dropdown-second:hover .dropdown-second-content {
    display: block;
}
.dropdown-second:hover .dropdown-second-content a {
    width: 100%;
}
.dropdown-second:hover .dropdown-second-content .nav-item {
    float: left;
    width: 100%;
}

.horizontal-divider {
    display: block;
    height: 0;
    border-bottom: 1px solid lightgrey;
    width: 80%;
    margin-left: 10%;
}
/* ------------------------------------------- FOOTER --------------------------------------------------------------- */
footer {
    font-family: Circe;
    width: 100%;

    text-align: center;
    transition: all 0.5s;
}
footer #footer-wrapper {
    padding: 36px 0;
    width: 100%;
    max-width: 1366px;
    display: inline-block;
}
footer #footer-wrapper .footer-column {
    float: left;
    min-height: 120px;
}
footer #footer-wrapper .footer-column h4 {
    font-variant: small-caps;
    text-align: center;
}
footer #footer-wrapper .footer-social-icon {
    width: 34px;
    height: 34px;
    display: inline-block;
    border-radius: 100%;
    box-shadow: 0 0 1px 0 white inset, 0 0 1px 0 white;
}
.social-icon {
    border-radius: 100%;
    display: inline-block;
    height: 34px;
    width: 34px;
    transition: all 0.5s;
    text-decoration: none !important;
    margin-left: 3%;
    margin-right: 3%;
}
.social-icon:hover {
    border-radius: 100%;
    display: inline-block;
    filter: invert(100%);
    background: black;
    height: 34px;
    width: 34px;
    transition: all 0.5s;
}
footer #footer-wrapper #footer-newsletter-wrapper {
    width: 100%;
    max-width: 300px;
    display: inline-block;
}
footer #footer-wrapper #footer-newsletter-wrapper #footer-newsletter-input {
    float:left;
    width: 80%;
    height: 30px;
    padding-top: 2px;
    padding-left: 4px;
    text-align: center;
}
footer #footer-wrapper #footer-newsletter-wrapper #footer-newsletter-submit {
    float:left;
    min-width: auto;
    width: 20%;
    height: 30px;
    background: #ffb347;
    padding-top: 5px;
    display: inline-block;
    margin:0;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-left: -1px;
}
#copyright {
    margin-top: 14px;
    width: 100%;
}

/* ------------------------------------------- HOME PAGE --------------------------------------------------------------- */
body {
    margin: 0;
}
#landing {
    height: calc(100vh - 16px);
    width: 100%;
    overflow-x: hidden;
    background: white;
}
.main-section {
    max-width: 1366px;
    margin: auto;
    padding: 24px 4px;
    font-family: Lato;
    line-height: 30px;
}
#what-do-we-do:before,
#how-we-help:before,
#why-work-with-us:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 65%;
}
#why-are-you-here:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

#what-do-we-do,
#how-we-help,
#why-are-you-here,
#why-work-with-us {
    text-align: center;
}

@media only screen and (max-width: 1439px) {
    #what-do-we-do,
    #how-we-help,
    #why-are-you-here,
    #why-work-with-us {
        height: auto;
    }
}
@media only screen and (min-width: 1440px) {
    #what-do-we-do,
    #why-are-you-here {
        height: 90vh;
    }
    #why-are-you-here {
        background-size: 110% !important;
        background-position: center center !important;
    }
    #how-we-help,
    #why-work-with-us {
        min-height: 90vh;
    }
}
#what-do-we-do .main-section,
#how-we-help .main-section,
#why-are-you-here .main-section,
#why-work-with-us .main-section {
    display: inline-block;
    vertical-align: middle;
    text-align: left;


}

.main-section h2 {
    font-size: 2.5em;
}

#main-contact-box {
    width: 100%;
    background: #444444;
    color: white;
}
#main-contact-box-header {
    background: white;
    color: black;
    text-align: center;
}
#main-contact-box .main-section {
    min-height: auto;
    height: auto;
}
#main-contact-box h1,
#main-contact-box h2 {
    min-height: 50px;
    width: 100%;
    max-width: 1000px;
    display: inline-block;
    background: #444444;
    padding: 0;
    margin: 0;
    color: white;
}
.main-image {
    width: 75%;
    box-shadow: none;
    display: inline-block;
}
.main-leaf {
    width: 20%;
    box-shadow: none;
    display: inline-block;

    margin: 0 -14px 0 0;

}
.main-leaf:last-child {
    transform: scale(-1, 1);
    margin: 0 0 0 -14px;

}
.main-leaf + span {
    font-family: Trajan;
    font-size: 3em;
    font-weight: bold;
}
.pg-125 { font-size: 1.25em; }
.pg-15 { font-size: 1.5em; }
.pg-2 { font-size: 2em; }
/* ----- mobile logo for landing page ------ */
@media only screen and (max-width: 1219px) {
    #desktop {
        display: none;
    }

    #landing #mobile img {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -85%);

        box-shadow: none;
        width: 50vw;
        height: 50vh;

    }

    #landing #mobile .logo-text-top {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -0%);
        float: left;
        font-family: Trajan;
        width: 95%;
    }
    #landing #mobile .logo-text-bottom {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 200%);
        float: left;
        font-family: Circe;
        width: 100%;
    }

}

@media only screen and (min-width: 1220px) {
    #mobile {
        display: none;
    }

    #landing #desktop img {
        display: none;
        box-shadow: none;
        width: 30vw;
        height: 30vh;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #landing #desktop .logo-text-top {
        display: none;
        position: absolute;
        top: calc(50vh - 1.2em);
        right: calc(50vw);
        transform: translateX(80%);
        font-family: Trajan;
    }
    #landing #desktop .logo-text-bottom {
        display: none;
        position: absolute;
        top: calc(50vh);
        right: calc(50vw);
        transform: translateX(80%);
        font-family: Circe;
    }
    #landing #desktop .logo-quote {
        display: none;
        position: absolute;
        left: 50%;
        bottom: 10%;
        transform: translate(-50%, -50%);
        font-family: Circe;
    }
    #landing #desktop .logo-quote h1 {
        font-size: 1.75em !important;
    }
    #landing #desktop .logo-arrow {
        display: none;
        position: absolute;
        left: 50%;
        bottom: calc(5% - 3.5em);
        transform: translate(-50%, -50%);
    }
}
/* ----- desktop logo for landing page ------ */
@media only screen and (min-width: 1901px) {


}





img {
	box-shadow: 0 2px 5px #444444;
}
button {
    border-radius: 3px;
	color:white;
	background-color: #FFB347;
	border: 0;
	cursor: pointer;
    font-size: 14px;
	min-width: 100px;
	margin-top: 8px;
    transition: 0.25s;
    padding-top: 6px;
    padding-bottom: 6px;
}
button:hover {
    background: #FFC26B;
}
/* Resource pages here */

#resourcesTitle {
	padding: 15px;
	padding-top: 36px;
	margin-bottom: 24px;
	background-color: #ffb347;
	margin-top: -34px;
}
#resourcesMenuBar {
	float: left;
	padding-top: 0px;
}
#resourcesMenuBar .col-12 {
	background-color: rgba(0,0,0,0.5);
	border: 1px solid white;
	padding: 5px;
	padding-left: 5%;
	margin: 4px 0;
	color: white;
	cursor: pointer;
	transition: all 0.2s;
}
#resourcesAllStories {
	background-color: rgba(0,0,0,0.5);
	border: 1px solid white;
	padding: 5px;
	margin: 4px 0;
	color: white;
	transition: all 0.2s;
}
#resourcesMenuBar .col-12:last-child {
	margin-bottom: 48px;
}
#resourcesMenuBar .col-12:hover {
	background-color: lightyellow;
	color: black;
}
#resourcesNavArrowsTop {
	margin-top: 4px;
	margin-bottom: -28px;
	float: left;
	padding: 0;
}
#resourcesNavArrowsTop div {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
#resourcesNavArrowsBottom {
	float: left;
	padding: 0;
}
#resourcesNavArrowsBottom .col-12 {
	height: 32px;
}
#resourcesNavArrowsBottom div {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
#content {
	float: left;
	padding-left: 3%;
	padding-right: 3%;
}
#contentWrapper {
	float: left;
	padding: 0 14px;
	margin: 0 0 32px 0;
}
.sharethis-inline-share-buttons {
	margin-top: 50px;
}
.arcticleArrow {
	line-height: 10px;
	font-size: 60px;
	font-weight: bold;
}
.legalDocs > ol > li {
	font-weight: bold;
	margin-top: 24px;
}

.res-content {
    padding-top: 6px;
    padding-bottom: 6px;
    background: white;
}

/*                  QUESTION MARK HOVER                  */
.questionMarkTip,
.questionMarkTip-orange {
    position: relative;
    z-index: auto;

    width: 16px;
    height: 16px;

    padding: 0 4px;

    font-size: 12px;
    font-weight: normal;
    color: grey;
    line-height: 1.2;

	border: 1px solid grey;
	border-radius: 100%;

	cursor: default;

	transition: all 0.5s;
}
.questionMarkTip-orange {
    background: #ffb347;
    color: white;
}
.questionMarkTip:hover,
.questionMarkTip-orange:hover {
    z-index: 2;

	color: black;
	border: 1px solid #ffb347;
}
.questionMarkTipBox {
    position: absolute;
    top: 7px;
    left: 18px;
    z-index: 2;

    min-width: 120px;

    padding: 14px;

    font-size: 14px;
    text-align: left;

    border: 1px solid #ffb347;
    background-color: white;
    box-shadow: 0px 2px 4px grey;

    display: none;
}
.questionMarkTip-orange:hover > .questionMarkTipBox,
.questionMarkTip:hover > .questionMarkTipBox {
	display: block;
}
/*                  ----------- PAGE CTA ----------
 .image-cta-block {
     margin-top: 0 !important;
     position: relative;
     display: inline-block;
     margin-bottom: 60px !important;
     height: 254px;
     //border-top-left-radius: 5px;
     //border-top-right-radius: 5px;

 }
.image-cta-block-bg {
    position: absolute;
    z-index: 1;
    top:0;
    right:0;
    bottom:0;
    left:0;
    opacity: 1;
    //border-top-left-radius: 5px;
    //border-top-right-radius: 5px;
}
.image-cta-block-bg-full {
    bottom: -53px;
    //border-bottom-left-radius: 5px;
    //border-bottom-right-radius: 5px;
}
.image-cta-block-header {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0.75);
    font-size: 26px;
    padding-top: 4px;
    color: white;
    border-bottom: 2px solid white;
    //border-top-left-radius: 5px;
    //border-top-right-radius: 5px;
    text-align: left;
    padding-left: 16px;
}
.image-cta-block-header-bottom {
    position: absolute;
    z-index: 2;
    bottom:-52px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    transition: background 0.25s;
    box-shadow: 0 2px 3px black;
    background: rgba(0,0,0,0.75);
    color: white;
    //border-bottom-left-radius: 5px;
    //border-bottom-right-radius: 5px;
    font-style: italic;
    border-top: 2px solid white;
}

.image-cta-block-content {
    position: absolute;
    top: 50px;
    color: white;
    z-index: 1;
    width: 100%;
    height: 204px;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    transition: opacity 0.25s;
}
.content-high {
    //border-top-left-radius: 5px;
    //border-top-right-radius: 5px;
    top:0;
    height: 254px;
}
.image-cta-block-content p {
    position: absolute;
    padding-left: 32px;
    padding-right: 32px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}
.image-cta-block-content ol {
    position: absolute;
    padding-left: 80px;
    padding-right: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    font-size: 14px;
}
.image-cta-block-content ol li {
    margin: 6px 0;
}

.image-cta-block-footer {
    position: absolute;
    z-index: 2;
    bottom:-52px;
    width: 100%;
    height: 50px;
    color: black;
    font-size: 22px;
    font-variant: small-caps;
    cursor: pointer;
    transition: background 0.25s;
    box-shadow: 0 2px 3px black;
    //border-bottom-left-radius: 5px;
    //border-bottom-right-radius: 5px;
}
.image-cta-block-footer a {
    padding-top: 6px;
    display: block;
    width: 100%;
    height: 100%;
    color: black !important;
    text-decoration: none;
    background: #ffb347;
    //border-bottom-left-radius: 5px;
    //border-bottom-right-radius: 5px;

}
.image-cta-block-footer a:hover {
    background: #E5A13F;
}
.image-cta-block-footer a:link {
    color: black;
}
.image-cta-block:hover .image-cta-block-content {
    opacity: 1;
}
.image-cta-resources {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}
.image-cta-resources-links {
    position: relative;
    width: 90%;
    margin-left: 5%;
    height: 44px;
    font-size: 20px;
    transition: all 0.25s;
}
.image-cta-resources-links:not(:last-child) {
    border-bottom: 1px solid lightgrey;
}
.image-cta-resources-links:hover {
    border-right: 15px solid #ffb347;
}
.image-cta-resources-links a {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    padding-top: 6px;
    text-decoration: none;
    color: black !important;
    transition: all 0.25s;
}
.image-cta-resources-links a:hover {
    color: #ffb347 !important;
}
*/


.image-main-block {
    display: inline-block;
    vertical-align: top;
    background: rgba(0,0,0,0.03);
    box-shadow: 0 0 5px 0 #DFDFDF;
}
.image-main-block-header {
    width: 100%;
    font-size: 1.8em;
    text-align: left;
    padding-top: 8px;
    padding-left: 10px;
}
.image-main-block-image {
    position: relative;
    height: 254px;
    margin: 9px 0;
}
.image-main-block-content {
    text-align: left;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 10px;
}
.image-main-block-resources {}
.image-main-block-resources-links {
    width: 90%;
    margin-left: 5%;
    height: 44px;
    font-size: 20px;
    transition: all 0.25s;
    padding-top: 6px;

}
.image-main-block-resources-links:not(:last-child) {
    border-bottom: 1px solid lightgrey;
}
.image-main-block-resources-links:last-child {
    //margin-bottom: 33px;
}
.image-main-block-resources-links:hover {
    border-right: 15px solid #ffb347;
    transition: all 0.25s;
}
.image-main-block-resources-links a {
    padding-top: 6px;
    text-decoration: none;
    color: black !important;
    transition: all 0.25s;
}
.image-main-block-resources-links a:hover {
    color: #ffb347 !important;
}






.image-text-overlay {
    background: rgba(0,0,0,0.5);
    border-bottom: 3px solid #ffb347;
    color: white !important;
    text-align: left;
    text-decoration: none !important;
    font-size: 24px;
    padding: 4px 8px;
    transition: all 0.3s;

}
.image-text-overlay-absolute {
    position: absolute;
    left: 2.5%;
    bottom: 15%;
    background: rgba(0,0,0,0.5);
    border-bottom: 3px solid #ffb347;
    color: white !important;
    text-align: left;
    text-decoration: none !important;
    font-size: 25px;
    padding: 4px 8px;
    transition: all 0.3s;
}

.image-text-overlay:hover,
.image-text-overlay-absolute:hover {
    padding-left: 14px !important;
    transition: all 0.3s;
}









.article-sidebar-title {
    font-size: 18px;
}

/*
#####################################                        ####################                             Stories study                            ####################                      ######################################
*/



.story-single {
    margin-bottom: 40px;
}
.story-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 30vh;
    padding-top: 16px;
    padding-bottom: 16px;
}
.story-post-date {
    padding-left: 10px;
    background: white;
}
.story-tags {
    padding-left: 10px;
    padding-bottom: 6px;
    font-size: 12px;
    background: white;
}
.story-tags span {
    background: #EEE;
}
.story-title {
    padding: 14px;
    padding-bottom: 8px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    background: rgba(0,0,0,0.5);

}
.story-brief {
    position: relative;
    padding: 14px;
    top: 0;
    height: auto; /* calc(100vh - 84px); */
    color: white;
    overflow: hidden;
    background: rgba(0,0,0,0.5);

}
.story-continue {
    position: absolute;
    right: 0;
    bottom: 0;
    background: transparent;
}






/*
############################################################################################################################################################################################################################################
#####################################                                                                                                                                                                 ######################################
#####################################                                                                  		 SERVICES                                                                                 ######################################
#####################################                                                                                                                                                                 ######################################
############################################################################################################################################################################################################################################
*/

.factor-row {
    transition: all 0.3s;
    padding: 0;
}
.factor-row:hover {
    background: rgba(0,0,0,0.05);
    transition: all 0.3s;
}




.radio-button-group {
    width: auto;
    height: 32px;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);

}
.radio-button-group * {
    transition: all 0.3s;
}
.radio-button-group input {
    display: none;
}
.radio-button-group label {
    position: relative;
    top: 50%;
    transform: translateY(-50%);

    float: left;
    background: lightgrey;
    width: 12%;
    margin: 0 4%;
    padding-top: 12%;
    border-radius: 100%;
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    .radio-button-group label {
        width: 13.5px;
        padding-top: 13.5px;
    }
}
.radio-button-group label:not(:first-child):after {
    position: absolute;
    content: '';
    left: 0;
    top: 49%;
    transform: translate(-55%, -50%);
    width: 210%;
    height: 4px;
    background: inherit;
}

.radio-button-group label:nth-child(1) { z-index: 4; }
.radio-button-group label:nth-child(3) { z-index: 3; }
.radio-button-group label:nth-child(5) { z-index: 2; }
.radio-button-group label:nth-child(7) { z-index: 1; }
.radio-button-group label:nth-child(9) { z-index: 0; }


.names {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}





.service-header {
    background: url("/img/trianglify-orange075.jpg") left center;
    background-size: cover;
    height: 64px;
    margin-top: 14px;
    padding-top: 14px;
    margin-bottom: 24px;
}

.service-header h1 {
    margin: 0;
    padding: 0;
}

.how-it-works {
    width: 100%;
    position: relative;
    color: white;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}
.how-it-works-shade {
    text-align: left;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top:0;
    right: 0;
    bottom:0;
    left:0;

    z-index: -2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.5;
    /* background-image: url(""); done on page */
}
.how-it-works-shade::before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid white;
    z-index: -1;
}
.how-it-works-shade h2 {
    width: 100%;
    text-align: left;
    padding: 22px;
}
.how-it-works-arrow {
    display: block;
    width: 0;
    height: 0;
    transition: all 0.3s;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 42px;


}
.how-it-works-arrow::after {
    content: '\23F7';
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 40px;
    color: white;
    z-index: 10;

    transition: all 0.3s;
    transform: translate(-50%, -50%);
}

.dismiss-how-it-works {
    position: relative;
    bottom: 16px;
    line-height: 0.5;
    font-size: 14px;
}
.dismiss-how-it-works label {
    margin: 0 0 0 1px;
    width: 20px;
    height: 20px;
    transform: scale(0.8);
    top: 4px;
    border-color: orange;


}
.dismiss-how-it-works label::before  {
    box-shadow: none;
}


.rotate-right-180 {
    transform: rotate(180deg) !important;
    transition: all 0.3s;
}


/*
#####################################                        ####################                             Accommodation guide                            ####################                      ######################################
*/
#accGuide {
	margin: 0px -8px 0 0;
	min-height: 700px;
	max-width: 1366px;
}
#personalGoals {
	font-size: 14px;
	margin: 34px auto 0 auto;
}
#retake {
	padding-top: 0;
    margin-top: -14px;
	display: none;
	float: left;
}
#retake div {
	width: 100%;
	height: 42px;
	border: 0;
	background-color: #444444;
	color: white;
	padding-top: 8px;
	cursor: pointer;
}

#diagram {
    position: absolute;
    top: 64px;
	color: black;
}
#host, #dorm, #studio {
	float:left;
	font-size: 20px;
}
#diagramNames {
	height: 64px;
    position: absolute;
    top:0;
}
#diagramNames div {
	cursor: pointer;
	position: absolute;
	width: 33.3333333%;
	padding: 20px 0;
	transition: 0.2s;
	height: 64px;
	z-index: -1;
}
#diagramNames div:nth-child(2) {
	margin-left: 33.3333333%;
}
#diagramNames div:nth-child(3) {
	right: 0;
}
#diagramresults {
    position: absolute;
	height: 510px;
	transition: all 0.5s;
}

#decision {
    background: url('/img/services/2-Accommodation-guide-main.jpg') no-repeat center center;
    background-size: cover;

    position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: -1;
	opacity: 0.6;
	height: 492px;
}
#decisionP {
	font-size: 14px;
	height: 462px;
	color: white;
	margin: 0 15px 15px 15px;

	padding: 30px;



	background-color: rgba(0,0,0,0.5);
	border: 1px solid white;


}
/*
#####################################                        ####################                             Budget planner                           ####################                      ######################################
*/

/*
#####################################                        ####################                             Host country finder                            ####################                      ######################################
*/






.filter {
    line-height: 0.9;
    background: white;
}
.filter h4 {
    background: rgba(255, 179, 71, 0.25);
    height: 32px;
    line-height: 32px;
    font-size: 1.2em;
}
.filter > div {
    height: 42px;
    margin-bottom: 4px;
}
.filter > div > div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 36px;
}

.filter input {
    display: none;
}
.filter label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}

#remaining-countries {
    padding-top: 20px;
    background: rgba(0,0,0,0.05);
}

.one-line-border::before {
    content: '';
    position: absolute;
    top: -14px;
    right: -2px;
    bottom: -14px;
    left: -2px;
    border: 1px solid lightgray;

}
.multi-line-border::before {
    content: '';
    position: absolute;
    top: -7px;
    right: -2px;
    bottom: -7px;
    left: -2px;
    border: 1px solid lightgray;

}

#remainingCountries {
	float: left;
	box-shadow: none;
}
.foundHost {
	margin: 8px auto;
	padding-bottom: 10px;
	float: left;
	transition: all 0.5s;
	min-height: 145px;
}
.foundHost:hover {
	box-shadow: 0 0 10px 2px #ffb347;
}
.flagOfCountries {
	width: 90%;
	display: block;
	margin: auto;
}
#reset-host-filters {
	padding: 5px;
}
