/* BASE */

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

.fade-delay-1 {
    opacity: 1;
    -moz-animation: fadein 500ms linear; /* Firefox */
    -webkit-animation: fadein 500ms linear; /* Safari and Chrome */
    -o-animation: fadein 500ms linear;/* Opera */
    animation: fadein 500ms linear;
}

/* Keyframes for the fade-in */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Keyframes for the fade-out */
@-webkit-keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@-moz-keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@keyframes fadeOut { from { opacity:1; } to { opacity:0; } }

.fade-in{
	opacity:0;
}

.fade-out{
	opacity:1;
	-webkit-animation:fadeOut ease-in 1;
  	-moz-animation:fadeOut ease-in 1;
 	animation:fadeOut ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:500ms;
	-moz-animation-duration:500ms;
 	animation-duration:500ms;
}

.slick-active .fade-in {
 	opacity:0;
	opacity: 1 \9; /*just in case ie*/
  	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
 	animation-fill-mode:forwards;

	-webkit-animation-duration:500ms;
  	-moz-animation-duration:500ms;
	animation-duration:500ms;
}

.fade-in.fade-in-1 {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.fade-in.fade-in-2 {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  animation-delay: .3s;
}

.fade-in.fade-in-3 {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.fade-in.fade-in-4 {
  -webkit-animation-delay: .9s;
  -moz-animation-delay: .9s;
  animation-delay: .9s;
}

@font-face {
    font-family: 'OpenSans-Light';
    src: url('OpenSans-Light.woff') format('woff'), url('OpenSans-Light.ttf') format('truetype'), url('OpenSans-Light.svg') format('svg');
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('OpenSans-Bold.woff') format('woff'), url('OpenSans-Bold.ttf') format('truetype'), url('OpenSans-Bold.svg') format('svg');
}

.clear {
    clear: both;
}

ul {
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}

a, a:hover, a:active, a:focus {
    color: inherit;
    text-decoration: none;
}

a:HOVER{
	color: #009FE3;
}

body {
    color: black;
}

#navigation {
    margin-top: 20px;
    min-height: 700px;
}

.alignCenter {
    text-align: center;
}

.mainTitle {
    /*border-top: solid 1px black;*/
    max-width: 1191px;
    margin: 0 auto;
    position: relative;
}

.mainHomeTitleLine {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 30px;
    position: relative;
}

.mainHomeTitleLine a, .mainHomeTitleLine span {
    font-family: 'OpenSans-Light', sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.mainTitleLine {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.mainTitleLine a, .mainTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}


/* MENU DESKTOP */

.menu{
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.menuDesktop {
    display: block;
}

.menuDesktopBanner {
    max-width: 1193px;
    margin: 0 auto;
}

.menuDesktopLogo {
	margin-top: 40px;
	margin-bottom: 40px;
}

.menuDesktopImage {
    text-align: center;
}

.menuDesktopSocial {
    position: absolute;
    top: 32px;
    right: 0;
    text-align: right;
}

.menuDesktopLinks li {
    display: inline-block;
    padding-left: 10px;
}

.menuDesktopLinks li:first-child {
    padding-right: 10px;
}

.menuDesktopLinks li:first-child a {
    font-style: italic;
    font-family: "Times New Roman", sans-serif;
    text-decoration: underline;
    font-size: 18px;
}

.menuDesktopMain {
    padding-bottom: 38px;
}

.menuDesktopMain ul {
    text-align: center;
    padding-left: 0;
}

.menuDesktopMain li {
    display: inline-block;
    padding: 0 30px;
}

.menuDesktopMain li:last-child {
    border-right: none;
}

.menuDesktopMain .selected {
    border-bottom: solid 3px black;
    padding-bottom: 6px;
}

.menuDesktopMain li a {
   font-family: OpenSans-Light, sans-serif;
   font-size: 12px;
   letter-spacing: 2px;
}

.menuDesktopMain li ul li {
    border: none;
}
.menuDesktopMain li ul li a {
    font-family: OpenSans-Light, sans-serif;
    font-size: 13px;
}
.menuDesktopMain li ul li a:hover {
    color: #009FE3;
}

.menuSocial {
    position: relative;
}

.menuSocial ul {
    position: absolute;
    top: 30px;
    left: 0;
    text-align: left;
    display: none;
    background: white;
    z-index: 99999;
}

.menuSearch {
    position: relative;
}

.menuSearch #box {
    border: solid black 1px;
    background-color: white;
    position: absolute;
    top: 44px;
    display: none;
    width: 253px;
    left: -71px;
    height: 38px;
    z-index: 99999;
}

.menuSearch .searchModels {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    border: none;
    outline: 0 none;
    font-family: OpenSans-Light, sans-serif;
    font-size: 14px;
    text-align: left;
}

.menuLinks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.menuLink {
    /*width: 10%;*/
    width: auto;
    border-right: solid 1px black;
    padding: 0 20px;
    height: 30px;
    position: relative;
}

.menuLink:HOVER .menuName {
    color: #009FE3;
}

.menuName {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 30px;
}

.menuSubLinks{
    padding-top: 3px;
    background: white;
    z-index: 99999;
    position: absolute;
    width: 90%
}

.menuSubLink {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
}

.menuSubLink a:hover {
    color: #009FE3;
}

.menuSocialSubLinks {
    display: none;
    padding-top: 3px;
    z-index: 9999;
}

.menuSocialSubLink {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
}

.menuSocialSubLink a:hover {
    color: #009FE3;
}

.menuSocial {
    position: relative;
}

.menuCommercialSubLinks {
    display: none;
    padding-top: 3px;
    z-index: 9999;
}

.menuCommercialSubLink {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px
}

.menuCommercialSubLink a:hover {
    color: #009FE3;
}

.menuInfluencerSubLinks {
    display: none;
    padding-top: 3px;
    z-index: 9999;
}

.menuInfluencerSubLink {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px
}

.menuInfluencerSubLink a:hover {
    color: #009FE3;
}

.menuWomenSubLinks, .menuPetiteSubLinks {
    display: none;
    width: 80px;
    position: absolute;
    left: 8px;
    padding-top: 3px;
    z-index: 9999;
}

.menuWomenSubLink, .menuPetiteSubLink {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px
}

.menuWomenSubLink a:hover, .menuPetiteSubLink a:hover {
    color: #009FE3;
}

.menuMenSubLinks {
    display: none;
    width: 80px;
    position: absolute;
    left: -3px;
    padding-top: 3px;
    z-index: 9999;
}
.menuMenSubLink {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px
}

.menuMenSubLink a:hover {
    color: #009FE3;
}


/* MENU MOBILE */

.menuMobile {
    display: none;
}

.logoMobile {
    width: 163px;
    margin: 0 auto;
}

#mobile-menu {
    display: none;
    height: 60px;
    line-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    z-index: 1;
    text-align: center;
    border-bottom: solid 1px;
}

#mobile-menu-content {
    display: none;
}

#nav {
    margin-top: 20px;
    padding-left: 10px;
    font-family: 'OpenSans-Light';
}

#nav > li > a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
}

#nav li ul {
    display: none;
    padding: 0 17px;
}

#nav li ul li {
    padding: 5px;
}

/* SEARCH */

#searchBar {
    display: none;
    margin-top: 74px;
}

#searchBar .searchBarInput {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.searchModels {
    width: 100%;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    text-align: center;
    font-size: 20px;
    line-height: 21px;
    padding-bottom: 17px;
    outline: none;
}

#mobile-menu {
    display: block;
}

#mobile-menu-content{
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    overflow: auto;
    background-color: white;
}


/* HOME */

.home {
    max-width: 1200px;
    margin: 0 auto;
}

.homeTextTitle {
    font-family: OpenSans-Light, sans-serif;
    font-size: 25px;
    padding: 10px 0;
    height: 85px;
    overflow: hidden;
}

/* HOME FEATURED NEWS */

.homeFeaturedNews {
    margin-bottom: 0;
    min-height: 40px;
    padding-bottom: 50px;
    padding-top: 24px;
}

.homeFeaturedNew {
    float: left;
    width: 33.33%;
    /*display: none;*/
    padding: 0 3px;
}

.homeFeaturedNew:hover {
    color: #009FE3;
}

.homeFeaturedNew a:focus {
    outline: none;
}

.homeFeaturedImage {
    overflow: hidden;
    border-bottom: solid black 3px;
}

.homeFeaturedImage:hover, .homeFeaturedImage:active {
    border-bottom: solid #009FE3 3px;
}

/* HOME NEWS */

.homeNews {
    margin-bottom: 0;
    min-height: 40px;
    padding-bottom: 80px;
}

.homeNew {
    float: left;
    width: 25%;
    display: none;
    margin: 0 3px;
}

.homeNew:hover {
    color: #009FE3;
}

.homeImage {
    overflow: hidden;
    border-bottom: solid black 3px;
}

.homeImage:hover, .homeImage:active {
    border-bottom: solid #009FE3 3px;
}

.homeTextContent {
    font-family: "Times New Roman", sans-serif;
    font-size: 18px;
    font-style: italic;
    text-align: left;
    padding: 0 4px;
}

/* HOME INSTAGRAM */

.homeInstagramPictures {
    padding-bottom: 80px;
}

.homeInstagramElement {
    float: left;
    width: 16.66%;
    padding: 9px;
}

/* HOME AGENCY */

.homeAgency {
    margin-bottom: 80px;
    position: relative;
}

.homeAgencyDetail {
    width: 50%;
    float: left;
    padding: 0 4px;
}

.homeAgencyText {
    width: 50%;
    float: left;
}

.homeAgencyTitle {
    font-family: OpenSans-Light, sans-serif;
    font-size: 25px;
}

.homeAgencyContentPart {
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
    padding-top: 15px;
}

.homeAgencyMap {
    width: 50%;
    float: right;
    border-bottom: solid 3px;
}

.homeAgencyContent {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.map {
    height: 230px;
}

.homeAgencyPicture {
    width: 50%;
    float: right;
    border-bottom: solid 3px;
}


/* NEWS DETAIL */

.newsDetail {
    max-width: 1200px;
    margin: 0 auto;
}

.newsDetailDate {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 16px;
    padding-bottom: 25px;
}

.newsDetailTitle {
    text-align: center;
    font-family: "Times New Roman", sans-serif;
    font-size: 35px;
    padding-bottom: 45px;
    font-style: italic;
}

.newsDetailTags {
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 16px;
    padding-bottom: 35px;
}

.newsDetailText, .newsDetailText *{
    font-family: OpenSans-Light, sans-serif;
    font-size: 23px !important;
}

.newsDetailPictures {
    padding-bottom: 80px;
}

.newsDetailPicture {
    text-align: center;
    padding-bottom: 15px;
}

.newsDetailPicture img {
    border-bottom: solid black 3px;
}


/* LIST */

.list {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.mainListTitle {
    border-top: solid 4px black;
    position: relative;
    min-height: 60px;
    width: 99.4%;
    margin: 0 auto;
}

.mainListTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainListTitleLine a {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.listLetters {
    padding-bottom: 46px;
}

.listLetters ul {
    text-align: center;
}

.listLetters li {
    display: inline-block;

}
.listLetters a {
    padding: 0 5px;
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
}

.listModel {
    float: left;
    /*width: 16.66%;*/
    width: 20%;
    padding: 0 3px 36px;
}

.listModelImage {
    border-bottom: solid black 3px;
    overflow: hidden;
}

.listModelText {
    text-align: center;
    padding-top: 10px;
    font-family: OpenSans-Light, sans-serif;
    font-size: 16px;
}

.listModel:hover .listModelImage {
    border-bottom: solid #009FE3 3px;
}

.listModel:hover .listModelText {
    color: #009FE3;
}
.listModel:hover .followersCount {
    color: #009FE3;
}
.followersCount {
    font-family: OpenSans-Light, sans-serif;
    text-align: center;
    text-transform: uppercase;
}

/* BOOK */
.mainModelInstagram {
    text-transform: uppercase;
    text-align: center; padding-bottom: 26px; font-size: 15px; font-family: OpenSans-Light, sans-serif;
}
.modelBookPictures {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding-bottom: 50px;
}

.modelBookMobile {
    max-width: 1200px;
    margin: 0 auto;
    display: none;
    padding-bottom: 50px;
}

.modelBook {
    position: relative;
    padding-bottom: 40px;
}

.mainBookTitle {
    max-width: 1200px;
    margin: 0 auto;
    border-top: solid 1px black;
    position: relative;
    min-height: 60px;
}

.mainBookTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainBookTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.mainBookBack {
    position: absolute;
    right: 0;
    top: 15px;
    background: white;
    padding-left: 10px
}

.mainBookBack a {
    text-transform: uppercase;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
    letter-spacing: 2px
}

.modelBookAlbums {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 35px;
}

.modelBookAlbums ul {
    text-align: center;
}

.modelBookAlbums li {
    display: inline-block;
}

.modelBookAlbums a {
    padding: 0 30px;
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
}

.modelBookAlbums a:hover {
    color: #009FE3;
}

.modelBookMeasurements {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 46px;
}

.modelBookMeasurements ul {
    text-align: center;
}

.modelBookMeasurements li {
    display: inline-block;
    padding: 0 10px;
}

.modelBookMeasurements span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.modelBookMeasurements span:first-child {
    font-family: OpenSans-Bold, sans-serif;
}

.modelBookThumbnails {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.modelBookThumbnail {
    float: left;
    width: 33.33%;
}

.scrollToTop {
    display: none;
    position: fixed;
    right: 40px;
    bottom: 40px;
    color: lightgray;
    border: lightgray solid;
    border-radius: 70px;
    width: 70px;
    height: 70px;
}

.scrollToTop i {
    position: absolute;
    right: 13px;
    font-size: 60px;
}

.modelBookSlideBio {
    display: inline-block;
    vertical-align: middle;
    max-width: 50%;
    padding-right: 15%;
    overflow: auto;
}

.bookExtra {
    display: none;
    max-width: 1080px;
    margin: 0 auto;
}
.bookInstagramElement {
    position: relative;
    display: inline-block;
    width: 31.2%;
    width: calc(33.33% - 24px);
}
.bookInstagramOverlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.overlaySpace {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0; right: 0;
    text-align: center;
}
.bookInstagram {
    margin: 0 -10px;
}

.bookInstagramElement {
    margin: 10px;
}

.bookInstagramElement:hover .bookInstagramOverlay {
    opacity: 1;
}

.bookInstagramOverlay {
    opacity: 0;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 8px;
    transition: opacity 0.3s;
    color: #FFF;

    background: -moz-linear-gradient(-45deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
}

/* SLICK */

.slick-prev, .slick-next {
    top: 48%;
    top: -webkit-calc(50% - 15px);
    top: -moz-calc(50% - 15px);
    top: calc(50% - 15px);
}

.slick-prev, .slick-prev:hover, .slick-prev:focus{
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
    width: 27px;
    height: 44px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
    left: 30px;
    z-index: 999;
}

.slick-prev:before {
    content: ""
}

.slick-next, .slick-next:hover, .slick-next:focus{
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
    width: 27px;
    height: 44px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
    right: 30px;
    z-index: 999;
}

.slick-next:before {
    content: ""
}

/* VIDEO */

.modelBookVideo {
    max-width: 1200px;
    margin: 0 auto 35px;
    height: 500px;
}

.modelBookVideo iframe {
    height: 100%;
}

.modelBookVideoThumbnails {
    max-width: 1200px;
    margin: 0 auto;
}

.modelBookVideoThumbnail {
    float: left;
    width: 16.66%;
}

.video {
    padding: 0 3px 3px;
}

/* INSTAGRAM */

.modelBookInstagramList {
    max-width: 1200px;
    margin: 0 auto;
}

.modelBookInstagram {
    float: left;
    width: 16.66%;
}

.modelBookInstagramPicture {
    padding: 3px;
}


/* ABOUT */

.about {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 45px;
    position: relative;
}

.mainAboutTitle {
    border-top: solid 1px black;
    position: relative;
    min-height: 80px;
}

.mainAboutTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainAboutTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.mainAboutLang {
    position: absolute;
    right: 0;
    top: 17px;
    background: white;
    padding-left: 10px
}

.mainAboutLang li {
    display: inline-block;
}

.mainAboutLang a {
    text-transform: uppercase;
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
    letter-spacing: 2px
}

.aboutIntro {
    font-family: "Times New Roman", sans-serif;
    font-size: 40px;
    font-style: italic;
    padding-bottom: 80px;
}

.aboutPart {
    font-family: OpenSans-Light, sans-serif;
    font-size: 25px;
    padding-bottom: 35px;
}

/* CONTACT */

.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    padding-top: 30px;
}

.mainContactTitle {
    border-top: solid 1px black;
    position: relative;
    min-height: 80px;
}

.mainContactTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainContactTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.contactMapAddress {
    padding-bottom: 40px;
}

.contactMap {
    float: left;
    width: 77%;
}

.contactMap .map {
    height: 375px;
}

.contactAddress {
    float: right;
    width: 23%;
}

.contactAddressDetail {
    padding: 0 15px;
}

.contactAddressTitle, .contactAddressPart {
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
    padding-bottom: 25px;
}

.contactAddressTitle {
    font-family: OpenSans-Bold, sans-serif;
}

.contactAddressTitle {
    font-weight: bold;
}

.contactTeamHead {
    float: left;
    width: 45%;
}

.contactTeamBelow {
    float: right;
    width: 55%;
}

.contactTeamDetail, .contactTeamElement {
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
    padding-bottom: 25px;
}

.contactTeamTitle {
    font-family: OpenSans-Bold, sans-serif;
}

/* INSIDE AGENCY */

.insideAgency {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.mainInsideAgencyTitle {
    border-top: solid 1px black;
    position: relative;
    min-height: 80px;
}

.mainInsideAgencyTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainInsideAgencyTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}


/* BECOME */

.become {
    max-width: 1200px;
    margin: 0 auto;
}

.mainBecomeTitle {
    border-top: solid 1px black;
    position: relative;
    min-height: 80px;
}

.mainBecomeTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainBecomeTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.becomeIntro {
    font-family: "Times New Roman", sans-serif;
    /*font-size: 40px;*/
    font-size: 25px;
    font-style: italic;
    padding-bottom: 20px;
}

.becomeIntro:nth-child(even){
    color: gray;
}

.becomeForm {
    padding-top: 20px;
}

.becomeForm table {
    width: 750px;
    margin: 0 auto 80px;
}

.becomeForm label {
    font-weight: normal;
    margin: 0;
}

.becomeForm td {
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
    padding-bottom: 5px;
}

.becomeForm input, .becomeForm select, .becomeForm textarea {
    height: 45px;
    border-radius: 0;
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
}

.becomeForm textarea {
    width: 100%;
    resize: none;
    height: 225px;
}

.becomeForm input:focus, .becomeForm textarea:focus {
    background-color: #009FE3;
    color: white;
}

.becomeForm button, .becomeForm button:focus {
    border: none;
    background-color: white;
    outline: none;
}

.becomeUpload {
    padding-bottom: 40px;
}

.becomeUploadPhotos {
    max-width: 750px;
    margin: 0 auto;
}

.becomeUploadElement {
    width: 33.33%;
    float: left;
    padding: 0 3px;
}

.becomeUploadPicture {
    position: relative;
    border-bottom: solid 3px black;
    overflow: hidden;
}

.becomeUploadPicture img {
    filter: grayscale(1);
    opacity: 0.3;
}

.becomeUploadPicture p {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 21px;
    font-weight: 200;
    z-index: 1;
}

.becomeUploadPicture.active p {
    display: none;
}

.becomeUploadPicture.active img {
    opacity: 1;
    filter: grayscale(0);
}

.becomeSubmit{
	text-align: center;
}
.g-recaptcha{
    margin: 0 auto 30px;
    max-width: 305px;
}
#becomeSubmitButton {
    border: solid black 1px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
    padding: 5px 0;
    cursor: pointer;
    width: 80%;
}

#becomeSubmitButton:HOVER{
	background-color: #009FE3;
	color: #FFFFFF;
}

/* UPLOADER */

.imageLoader {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.uploadButton {
    cursor:pointer;
    height:100%;
    position:absolute;
    right:0;
    top:0;
    opacity: 0.0; /* Standard: FF gt 1.5, Opera, Safari */
    filter: alpha(opacity=0); /* IE lt 8 */
    -ms-filter: "alpha(opacity=0)"; /* IE 8 */
    -khtml-opacity: 0.0; /* Safari 1.x */
    -moz-opacity: 0.0; /* FF lt 1.5, Netscape */
}

.becomeUploadButton {
    border: solid 1px black;
    margin-top: 12px;
    text-align: center;
    padding: 5px 10px;
    font-family: OpenSans-Light, sans-serif;
    font-size: 18px;
}


/* NEWS */

.news {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.mainNewsTitle {
    border-top: solid 1px black;
    position: relative;
    min-height: 80px;
    width: 99.4%;
    margin: 0 auto;
}

.mainNewsTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainNewsTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.newsElement {
    float: left;
    width: 25%;
    padding: 0 4px 6px;
}


.newsElement:hover {
    color: #009FE3;
}

.newsElementPicture {
    overflow: hidden;
    border-bottom: solid black 3px;
}

.newsElementPicture:hover, .newsElementPicture:active {
    border-bottom: solid #009FE3 3px;
}

.newsElementTitle {
    font-family: OpenSans-Light, sans-serif;
    font-size: 25px;
    padding: 10px 5px;
    padding-top: 0;
    height: 140px;
    overflow: hidden;
    line-height: 28px;
}

.newsElementContent {
    font-family: "Times New Roman", sans-serif;
    font-size: 18px;
    font-style: italic;
    text-align: left;
    height: 150px;
    overflow: hidden;
}

.newsElementDate {
    font-family: OpenSans-Light, sans-serif;
    font-size: 12px;
    padding: 0 5px;
    padding-top: 10px;
    overflow: hidden;
}

#infscr-loading {
    text-align: center;
}


/* IMPRESSUM */

.impressum {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 90px;
}

.mainImpressumTitle {
    border-top: solid 1px black;
    position: relative;
    min-height: 80px;
}

.mainImpressumTitleLine {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -26px;
}

.mainImpressumTitleLine span {
    font-family: OpenSans-Light, sans-serif;
    font-size: 35px;
    background: white;
    padding: 0 10px;
}

.impressumPart {
    padding-bottom: 40px;
}

.impressumTitle {
    color: gray;
    font-family: 'OpenSans-Bold';
    font-size: 25px;
    padding-bottom: 20px;
}

.impressumText {
    color: gray;
    font-size: 20px;
    font-family: 'OpenSans-Light';
}

.impressumDownload {
    border: black 1px solid;
    margin-top: 15px;
    width: 278px;
    padding: 9px 0;
    text-align: center;
    font-family: "Times New Roman", sans-serif;
}

.impressumDownloadTitle {
    color: #76A217;
    font-size: 22px;
    letter-spacing: 2px;
}

.impressumDownloadTSubtitle {
    font-size: 18px;
}

.impressumDownloadTText {
    font-size: 15px;
}

.impressumDownloadLink {
    color: gray;
    color: gray;
    padding-top: 9px;
    font-size: 17px;
    font-family: OpenSans-Light, sans-serif;
}

.impressumTextPart {
    padding-bottom: 20px;
    text-align: left;
}

.impressumTextTitle {
    font-weight: bold;
}


/* FOOTER */

.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 90px;
}

.footerParts {
    float: left;
    width: 25%;
    font-family: "Times New Roman", sans-serif;
    font-size: 18px;
    font-style: italic;
}

.footerTrad a, .footerContact a {
    text-decoration: underline;
}

.footerFollowsLinks a:hover, .footerFollowsLinks a:active {
    color: #009FE3;
}

.footerParts li {
    display: inline-block;
    padding-left: 10px;
}

.footerFollowsTitle, .footerFollowsLinks {
    float: left;
}

.footerFollowsTitle {
    padding-right: 15px;
}

/* ICONS */

.icon-facebook{
	width: 30px;
	height: 30px;
	background-image: url(../images/icon-facebook.png);
	background-position: 0 0;
	background-size:30px 60px;
}

.icon-facebook:HOVER{
	background-position: 0 30px;
}

.icon-instagram{
	width: 30px;
	height: 30px;
	background-image: url(../images/icon-instagram.png);
	background-position: 0 0;
	background-size:30px 60px;
}

.icon-instagram:HOVER{
	background-position: 0 30px;
}

.instagram{
	float: left;
	width: 200px;
}

.icon-tumblr{
	width: 30px;
	height: 30px;
	background-image: url(../images/icon-tumblr.png);
	background-position: 0 0;
	background-size:30px 60px;
}

.icon-tumblr:HOVER{
	background-position: 0 30px;
}

/* IMPORTANT NOTICE */

.importantNotice {
    color: red;
    margin-bottom: 30px;
}

.importantNotice span {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.importantNotice a {
    text-decoration: underline;
}

/* CAREER */
.career {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.career-container {
    font-size: 25px;
    text-align: justify;
}

.career h1 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;

}

.career span {
    font-weight: bold;
}

.career .underline {
    text-decoration: underline;
}