*,
html,
body {
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    border-right: 50px solid #F3F4F4;
    border-left: 50px solid #F3F4F4;
}

body {
    max-width: 1555px;
    margin: 0 auto;
    padding: 0 15px;
}

html,
body {
    overflow-x: hidden;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/GOTHICB.ttf') format(' ttf');
    font-weight: 700;
    font-style: normal;
}

h1,
h2 {
    margin-top: 70px;
    margin-bottom: 45px;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #231F20;
}

h2.noMargin {
    margin: 0;
    padding-top: 52px;
    padding-bottom: 45px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

p:last-child {
    margin-bottom: 0;
}

.bottom-space {
    padding-bottom: 75px;
}

.default-font {
    font-size: 16px;
    font-weight: 400;
    color: #58595B;
}

.heading__container {
    max-width: 855px;
    width: 100%;
    height: 292px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.text-align-center {
    text-align: center;
}

.heading_block {
    width: 100%;
}

.individual_content {
    margin-top: 35px;
}

.individual_content.extra {
    margin-bottom: 50px;
}

/*--------------------------------------------------------------------------------------------------*/

/***** Wrappers *****/

.mainWrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.textWrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/*--------------------------------------------------------------------------------------------------*/

/***** Flex Properties *****/

.display-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-space {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-flow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

/*--------------------------------------------------------------------------------------------------*/

/***** Header Stucture *****/

.header__wrapper.fixed-position {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    max-width: 1525px;
    width: 100%;
}

header {
    position: relative;
}

.header__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 0 10px 0;
}

.header__logo {
    margin-top: 25px;
}

.header__right_top {
    margin-left: auto;
    max-width: 178px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.header__right_bottom {
    margin-top: 34px;
}

/*--------------------------------------------------------------------------------------------------*/

/***** pnlMenu *****/

#athensnest_pnlMenu .main-menu > ul {
    max-width: 100%;
}

#athensnest_pnlMenu .main-menu > ul > li {
    padding: 0;
}

#athensnest_pnlMenu .main-menu > ul > li > a {
    font-size: 14px;
    font-weight: 500;
    padding: 0 3px 10px 3px;
    margin-right: 37px;
    position: relative;
}

#athensnest_pnlMenu .main-menu > ul > li:last-child > a {
    margin-right: 0;
}

#athensnest_pnlMenu .main-menu > ul > li > a:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 0;
    background-color: #A1C1D7;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: initial;
    bottom: 0;
    -webkit-transition: width 300ms ease-in;
    transition: width 300ms ease-in;
}

#athensnest_pnlMenu .main-menu > ul > li:hover a:after {
    width: 100%;
    -webkit-transition: width 300ms ease-in;
    transition: width 300ms ease-in;
}

#athensnest_pnlMenu .main-menu > ul > li.hasChildren > ul > li > a {
    font-size: 13px;
    font-weight: 500;
    color: #231F20 !important;
    width: 100%;
    padding: 10px;
}

#athensnest_pnlMenu .main-menu > ul > li.hasChildren > ul > li.active > a {
    color: #A4C1D7 !important;
}

#athensnest_pnlMenu .main-menu > ul > li.active > a,
#athensnest_pnlMenu .main-menu > ul > li.active > a,
#athensnest_pnlMenu .main-menu > ul > li:hover a,
#athensnest_pnlMenu .main-menu > ul > li:hover a {
    color: #231F20 !important;
}

#athensnest_pnlMenu .main-menu > ul > li.active > a:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #A1C1D7;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: initial;
    bottom: 0;
}

#athensnest_pnlMenu .main-menu > ul > li:hover > ul li {
    background-color: #fff;
}

#athensnest_pnlMenu .main-menu > ul > li:hover > ul li:hover a {
    color: #A4C1D7 !important;
}

#athensnest_pnlMenu .main-menu ul li.hasChildren::before,
#athensnest_pnlMenu .main-menu ul li.hasChildren::after {
    display: none;
}

#athensnest_pnlMenu .main-menu > ul > li:nth-child(3) > ul {
    width: 200px;
}

/*--------------------------------------------------------------------------------------------------*/
/***** Header - Footer *****/
.main-menu ul li a {
    font-weight: 400;
}

.main-menu ul {
    margin-bottom: 0;
}

.main-menu > ul > li > a:before {
    display: none;
}

.main-menu ul li.active,
.main-menu ul li:hover {
    background-color: transparent;
}

.main-menu > ul > li {
    margin: 0;
}

.main-menu > ul > li:last-child {
    margin: 0;
}

.main-menu ul li ul {
    border-radius: 0;
    border: none;
    background-color: transparent;
}

.main-menu > ul > li.hasChildren {
    padding-right: 0;
}

/*--------------------------------------------------------------------------------------------------*/

/***** Footer Structure *****/

.pre__footer {
    margin-top: 45px;
}

.pre__footer_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.pre__footer_left {
    margin-top: 20px;
    margin-bottom: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pre__footer_address {
    margin-top: 85px;
    text-align: center;
}

.footer_address_text {
    margin-top: 35px;
    font-size: 24px;
    font-weight: 500;
    color: #6D6E71;
}

.pre__footer_right {
    position: absolute;
    top: 0;
    right: 0;
}

.pre__footer_link_small {
    display: none;
}

.footer__wrapper {
    padding: 40px 0 60px 0;
    background-image: url("../images/footer-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-icon-position img {
    padding-bottom: 25px;
}

.footer_extra_links ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer_extra_links ul li {
    padding-bottom: 15px;
}

.footer_extra_links ul li:last-child {
    padding-bottom: 0;
}

.footer_extra_links ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.footer_extra_links {
    margin-top: 65px;
}

/*--------------------------------------------------------------------------------------------------*/

/***** pnlFooter *****/
#athensnest_pnlFooterServices .main-menu > ul > li > a,
#athensnest_pnlFooterMain .main-menu > ul > li > a,
#athensnest_pnlFooterServices .main-menu > ul > li:hover > a,
#athensnest_pnlFooterServices .main-menu > ul > li.active > a,
#athensnest_pnlFooterMain .main-menu > ul > li:hover a,
#athensnest_pnlFooterMain .main-menu > ul > li.active a {
    color: #fff !important;
}

#athensnest_pnlFooterServices .main-menu > ul > li > a,
#athensnest_pnlFooterMain .main-menu > ul > li > a {
    margin: 0;
}

#athensnest_pnlFooterServices .main-menu > ul > li:first-child > a,
#athensnest_pnlFooterMain .main-menu > ul > li > a {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 25px;
}

#athensnest_pnlFooterServices .main-menu > ul > li:not(:first-child) > a {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
}

#athensnest_pnlFooterServices .main-menu > ul > li:first-child > a {
    margin-bottom: 20px;
}

#athensnest_pnlFooterMain .main-menu > ul > li:last-child > a {
    margin-bottom: 0;
}

#athensnest_pnlFooterServices .main-menu > ul > li.active > a,
#athensnest_pnlFooterMain .main-menu > ul > li.active > a,
#athensnest_pnlFooterServices .main-menu > ul > li:hover > a,
#athensnest_pnlFooterMain .main-menu > ul > li:hover > a {
    text-decoration: underline;
}

#athensnest_pnlFooterServices .main-menu > ul > li,
#athensnest_pnlFooterMain .main-menu > ul > li {
    width: 100%;
    max-width: 238px;
}

#athensnest_pnlFooterServices .main-menu > ul > li > a:after,
#athensnest_pnlFooterMain .main-menu > ul > li > a:after {
    display: none;
}

#athensnest_pnlFooter .main-menu > ul > li.hasChildren:before,
#athensnest_pnlFooter .main-menu ul li.hasChildren ul,
#athensnest_pnlFooter .main-menu ul li i,
#athensnest_pnlFooterExtra .main-menu > ul > li.hasChildren:before,
#athensnest_pnlFooterExtra .main-menu ul li.hasChildren ul,
#athensnest_pnlFooterExtra .main-menu ul li i {
    display: none;
}

.footer_down span,
.footer_down span a {
    font-size: 11px;
    color: #3d3d3d;
}

/*--------------------------------------------------------------------------------------------------*/
/***** PSEUDO FOOTER MENU *****/
#pseudo__footer_group .panel-title i {
    display: none;
}

#pseudo__footer_group .panel-title a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: block;
}

#pseudo__footer_group .panel-default > .panel-heading {
    color: #fff;
    background-color: #A4C1D7;
    border-color: #A4C1D7;
}

#pseudo__footer_group .panel-heading {
    padding: 20px 55px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#pseudo__footer_group .panel-group .panel {
    margin-bottom: 0;
    border-radius: 0;
}

#pseudo__footer_group .panel-default {
    border-color: transparent;
}

#pseudo__footer_group .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
    padding: 25px 55px;
}

#pseudo__footer_group ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#pseudo__footer_group .panel {
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#pseudo__footer_group .panel-group {
    margin-bottom: 6px;
}

#pseudo__footer_group ul li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
}

#pseudo__footer_group ul li a {
    text-decoration: none;
    color: #fff;
}

#pseudo__footer_group ul li.active-link a {
    color: #A1C1D7;
}

.pseudo_lik_group {
    margin-bottom: 20px;
}

.pseudo_lik_ind {
    padding: 20px 55px;
    background-color: #A4C1D7;
    margin-bottom: 6px;
}

.pseudo_lik_ind:last-child {
    margin-bottom: 0;
}

.pseudo_lik_ind a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: block;
    color: #fff;
}

.footer-icon,
.keep-in-touch {
    text-align: center;
}

.keep-in-touch {
    margin-top: 50px;
}

.pseudo_footer_social {
    max-width: 290px;
    margin: 35px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*--------------------------------------------------------------------------------------------------*/
/***** Langs *****/
ul.Langs {
    margin: 0;
    padding: 0;
}

.Langs li {
    display: inline-block;
    padding: 0;
    margin-right: 5px;
}

.Langs li:last-child {
    margin-right: 0;
}

.Langs li a {
    display: inline-block;
    color: #231F20;
    padding: 8px;
    font-size: 16px;
    font-weight: 500;
}

.Langs li a.langActive {
    background-color: #A1C1D7;
}

/*--------------------------------------------------------------------------------------------------*/

/***** Social Reset *****/

.social_media,
.social_media ul {
    padding: 0;
    margin: 0;
}

.social_media ul li a {
    background: none;
    font-size: 0;
    width: 26px;
    height: 26px;
    line-height: 0;
    margin: 0 19px 0 0;
    padding: 0;
}

.social_media ul li {
    color: transparent;
    display: inline-block;
    font-size: 0;
    height: 45px;
    padding: 0;
}

.social_media ul li a:last-child {
    margin: 0;
}

.social_media li a i {
    height: 26px;
    width: 26px;
    line-height: 0;
}

.header__social .social_media ul,
.header__social .social_media ul li {
    height: 37px;
}

.header__social .social_media ul li a {
    margin-right: 0;
}

.header__social .social_media ul li a,
.header__social .social_media li a i {
    width: 37px;
    height: 37px;
}

.header__social .social_media ul li a:nth-child(2),
.header__social .social_media ul li a:nth-child(3),
.header__social .social_media ul li a:nth-child(4) {
    display: none;
}

.header__social .fa-facebook-f:before,
.header__social .fa-facebook:before {
    content: url("../images/fb-header.svg");
}

.footer__social .social_media ul,
.footer__social .social_media ul li {
    height: 64px;
}

.footer__social .social_media ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__social .social_media ul li a {
    margin-right: 33px;
}

.footer__social .social_media ul li a:last-child {
    margin-right: 0;
}

.footer__social .social_media ul li a,
.footer__social .social_media li a i {
    width: 64px;
    height: 64px;
}

.footer__social .fa-facebook-f:before,
.footer__social .fa-facebook:before {
    content: url("../images/fb-footer.svg");
}

.footer__social .fa-linkedin:before {
    content: url("../images/in-footer.svg");
}

.footer__social .fa-twitter:before {
    content: url("../images/tw-footer.svg");
}

.footer__social .fa-google-plus:before {
    content: url("../images/gp-footer.svg");
}

/*--------------------------------------------------------------------------------------------------*/
/***** Main Content *****/
/***** WELCOME *****/
.intro-text {
    font-size: 18px;
    font-weight: 400;
    color: #6D6E71;
    text-align: justify;
    max-width: 1065px;
    margin: 4% auto;
}

.welcome_grid_top {
    margin-top: 70px;
}

.flex__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.flex__grid.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.grid__block {
    max-width: 475px;
    width: 100%;
    margin-bottom: 65px;
}

.grid__date {
    font-weight: 700;
    font-size: 14px;
    color: #231F20;
    margin-bottom: 30px;
}

.grid__block:last-child {
    margin-bottom: 0;
}

.grid__block_img {
    position: relative;
}

.grid__block_img img {
    width: 100%;
}

.grid__block_img:hover .img-hover {
    width: 120px;
}

.img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    -webkit-transition: width 300ms ease-in;
    transition: width 300ms ease-in;
}

.grid__block_title {
    font-size: 24px;
    font-weight: 400;
    color: #231F20;
    margin-top: 25px;
    margin-bottom: 10px;
}

.grid__block_text {
    max-width: 380px;
}

.grid_btn {
    display: inline-block;
    width: 85px;
    text-align: center;
    padding: 5px 0;
    border: 1px solid #ccc;
    color: #231F20;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    margin-top: 20px;
}

.grid_btn:hover {
    color: #fff;
    border: 1px solid transparent;
}

.grid_btn:hover:before {
    height: 100%;
}

.grid_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #A1C1D7;
    -webkit-transition: height 100ms linear;
    transition: height 100ms linear;
    z-index: -1;
}

/***** TAXATION *****/
.background {
    position: relative;
}

.section-background {
    position: absolute;
    width: 100%;
    height: 583px;
    background-color: #F1F2F2;
    z-index: -1;
}

.special_heading {
    text-align: center;
    margin-bottom: 34px;
}

.special_heading h2 {
    display: inline-block;
    margin: 0;
    padding-top: 52px;
    padding-bottom: 15px;
    position: relative;
}

.special_heading h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #231F20;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.taxation_text {
    max-width: 973px;
    margin: 0 auto;
    text-align: center;
}

.img-holder {
    max-width: 1367px;
    margin: 42px auto 0 auto;
    background-color: #fff;
    padding: 45px;
    -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
}

.img-holder img {
    width: 100%;
}

/***** OFFICE SPACES *****/
#hm-sc-3 .section-background {
    max-width: 1282px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 250px;
    height: 415px;
}

#hm-sc-3 .special_heading h2 {
    padding-top: 95px;
}

#hm-sc-3 .flex__grid {
    margin-top: 140px;
}

.section_separator {
    position: relative;
}

.section_separator {
    position: relative;
    height: 1px;
    width: 100%;
    background-color: #BCBEC0;
    margin-top: 58px;
}

.separator_block {
    position: absolute;
    width: 30px;
    height: 6px;
    background-color: #a1c1d7;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/***** MEMBERS *****/
.members.flex__grid {
    max-width: 1200px;
    margin: 20px auto 50px auto;
}

.member_text {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #231F20;
    font-weight: 400;
}

.memebers_block {
    margin-bottom: 65px;
}

#members .grid__block_text {
    margin-top: 30px;
    max-width: 450px;
    margin-bottom: 20px;
}

.grid__title_large {
    font-family: 'Century Gothic';
    font-size: 33px;
    font-weight: 700;
    color: #58595B;
    letter-spacing: 7px;
}

.grid__title_small {
    font-family: 'Century Gothic';
    font-size: 16px;
    font-weight: 700;
    color: #58595B;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.grid__members_line {
    height: 1px;
    background-color: #595A5C;
    margin: 10px 0 15px 0;
}

/***** FEATURED EVENTS  *****/
#hm-sc-5 .section-background {
    max-width: 1283px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 307px
}

#hm-sc-5 .grid__block a {
    text-decoration: none;
}

#hm-sc-5 .grid__block_title {
    font-size: 20px;
    font-weight: 700;
    color: #67A0BF;
}

.grid__block_text_line {
    height: 1px;
    width: 175px;
    background-color: #595A5C;
    margin-top: 10px;
}

#events .grid__block_text {
    max-width: 451px;
    min-height: 87px;
}

/***** HIGHLIGHTS *****/
.highlights_block {
    margin-bottom: 65px;
}

.highlights_block img {
    width: 100%;
}

/***** COMING UP *****/
#hm-sc-7 h2 {
    margin-top: 35px;
}

.coming_block {
    margin-bottom: 65px;
}

.coming_text {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #231F20;
    margin-top: 45px;
}

.coming_block img {
    width: 100%;
}

/***** SERVICES *****/
#services #hm-sc-3 .section-background {
    top: 290px;
}

#services .special_heading h2:after {
    display: none;
}

/*#services h2 {
    font-size: 24px;
}*/
#serviced-offices .grid__block {
    margin-bottom: 65px;
    max-width: 100%;
}

#services #hm-sc-7 {
    margin-top: 115px;
}

/***** THE PLACE *****/
.century-gothic h2 {
    font-family: 'Century Gothic';
    font-weight: 700;
    color: #58595B;
    letter-spacing: 2px;
}

.text-align-right {
    text-align: right;
}

.a__grid_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.a__grid_left {
    max-width: 985px;
    width: 100%;
    margin-right: 30px;
}

.asymmetric .a__grid_left {
    max-width: 895px;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    margin-right: 0;
}

.a__grid_right {
    max-width: 475px;
    width: 100%;
}

.a__grid_right.right_img img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.asymmetric .a__grid_right {
    max-width: 566px;
    -ms-flex-preferred-size: 38%;
    flex-basis: 38%;
}

.asymmetric-margin {
    margin-top: 60px;
}

.a__grid_left img,
.a__grid_right img {
    width: 100%;
}

.a__grid_content {
    background-color: #F3F4F4;
    padding: 85px 75px;
    height: 100%;
}

.a__grid_heading {
    font-family: 'Century Gothic';
    font-weight: 700;
    color: #58595B;
    letter-spacing: 5px;
    font-size: 50px
}

.a__grid_text {
    max-width: 647px;
    margin-top: 65px;
    line-height: 30px;
    font-size: 20px;
    color: #808285;
}

#the-place #hm-sc-3 .section-background {
    top: -65px;
}

.co-work-background {
    background-color: #F3F4F4;
    margin-top: 85px;
    padding: 65px;
}

.co-work-img {
    margin: 10px;
    max-width: 669px;
    width: 100%;
}

.co-work-img img {
    width: 100%;
}

.co-work-margin {
    margin-top: 20px;
}

.asymmetric__grid.bottom .a__grid_right.right_img img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

/***** GALLERY *****/
.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.gallery > a {
    display: block;
    max-width: 475px;
    margin: 16px;
}

.gallery img {
    width: 100%;
}

#cboxLoadedContent .displayBook {
    display: block;
}

#cboxLoadedContent {
    margin-bottom: 0;
}

#cboxMiddleRight,
#cboxTopCenter,
#cboxMiddleLeft,
#cboxBottomCenter,
#cboxTopLeft,
#cboxTopRight,
#cboxBottomRight,
#cboxBottomLeft {
    background: none;
}

#cboxOverlay {
    background: rgba(35, 32, 31, .5);
    width: 100%;
    height: 100%;
    opacity: 1 !important;
}

#cboxOverlay::after {
    content: url("../images/colorbox-bg.png");
    position: absolute;
    background-size: cover;
    max-width: 1677px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#cboxContent {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#cboxClose {
    background: url("../images/colorbox-close.svg");
    width: 28px;
    height: 28px;
    top: initial;
    bottom: -45px;
    right: 0px;
}

#cboxClose:hover {
    background-position: 0;
}

#cboxPrevious {
    background: url("../images/colorbox-prev.svg");
    width: 28px;
    height: 28px;
    bottom: -46px;
}

#cboxPrevious:hover {
    background-position: 0;
}

#cboxNext {
    background: url("../images/colorbox-next.svg");
    width: 28px;
    height: 28px;
    bottom: -46px;
    left: 40px;
}

#cboxNext:hover {
    background-position: 0;
}

#cboxCurrent {
    display: none;
}

/***** CONTACT *****/
.contact__content {
    text-align: center;
}

.contact_address {
    font-size: 23px;
    font-weight: 500;
    color: #58595B;
    margin-top: 35px;
}

.contact_mail {
    margin-top: 70px;
}

.contact_mail_address {
    margin-top: 23px;
    display: inline-block;
    border-bottom: 2px solid #231F20;
}

.contact_mail_address a {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    padding: 10px 10px;
    background-color: #A1C1D7;
    display: inline-block;
    margin-bottom: 3px;
}

.contact_directions {
    margin-top: 85px;
    position: relative;
    padding-bottom: 20px;
}

.contact_directions:after {
    content: "";
    position: absolute;
    height: 2px;
    max-width: 643px;
    width: 100%;
    background-color: #A1C1D7;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contact_direction_txt {
    margin-top: 35px;
    font-size: 23px;
    font-weight: 500;
    color: #58595B;
}

.contact_direction_txt.txt_2 {
    margin-top: 17px;
}

.contact_map {
    margin-top: 125px;
}

.map_top {
    height: 43px;
    width: 100%;
    background-color: #A1C1D7;
    margin-bottom: 10px;
}

/***** INDIVIDUAL PAGES *****/
.ind_text {
    text-align: center;
    max-width: 1086px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    color: #808285;
}

.ind_text .ind_text_title {
    margin-bottom: 40px;
    font-weight: 700;
}

.ind_text .ind_text_title.following {
    margin-top: 40px;
}

.ind_text.initial {
    text-align: left;
    font-weight: 300;
    line-height: 30px;
}

#individual_pages .highlights_block {
    margin-bottom: 18px;
}

.ind_extra {
    margin-top: 45px;
    font-size: 18px;
    font-weight: 400;
    color: #808285;
    text-align: center;
}

.ind_extra.en {
    font-weight: 700;
}

.ind_text span {
    font-weight: 500;
    color: #231F20;
}

.ind_extra span {
    font-size: 20px;
    font-weight: 500;
    color: #231F20;
}

.copyright-container {
    text-align: center;
    margin-top: 3%;
}

/*--------------------------------------------------------------------------------------------------*/
/***** Media Q *******/
@media screen and (max-width: 1640px) {
    #individual_pages .flex__grid {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #individual_pages .highlights_block {
        margin: 20px;
        max-width: 420px;
    }
}

@media screen and (max-width: 1580px) {
    .grid__block,
    .highlights_block,
    .coming_block {
        max-width: 420px;
    }
}

@media screen and (max-width: 1420px) {
    .grid__block, .highlights_block, .coming_block {
        max-width: 385px;
    }
}

@media screen and (max-width: 1300px) {
    .grid__block, .highlights_block, .coming_block {
        max-width: 345px;
    }
}

@media screen and (max-width: 1125px) {
    .grid__block, .highlights_block, .coming_block {
        max-width: 290px;
    }
}

@media screen and (max-width: 1200px) {
    html {
        border-right: 15px solid #F3F4F4;
        border-left: 15px solid #F3F4F4;
    }

    #athensnest_pnlMenu .main-menu > ul > li > a {
        font-size: 12px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 1638px) {
    .co-work-background {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .co-work-img {
        max-width: 590px;
    }
}

@media screen and (max-width: 1630px) {
    .header__wrapper.fixed-position {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        padding: 0 15px 17px 15px;
    }

    .header__wrapper.fixed-position #athensnest_pnlMenu {
        right: 15px;
    }

    .grid__block_text_line {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1479px) {
    .co-work-background {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 40px 15px;
    }
}

@media screen and (max-width: 1379px) {
    .co-work-img {
        max-width: 510px;
    }
}

@media screen and (max-width: 1300px) {
    .grid__title_large,
    .grid__title_small {
        letter-spacing: 0;
    }
}

@media screen and (max-width: 1219px) {
    .co-work-img {
        max-width: 669px;
    }

    .co-work-margin {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1023px) {
    html {
        border-right: 0 solid #F3F4F4;
        border-left: 0 solid #F3F4F4;
    }
}

@media screen and (min-width: 1024px) {
    #athensnest_pnlMenu .main-menu > ul > li.hasChildren i {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    /*Menu Responsive Reset*/
    .main-menu > ul > li.hasChildren > ul {
        display: none;
        padding-left: 10px;
    }

    #athensnest_pnlMenu .main-menu > ul.open {
        max-height: 400px;
        margin: 0;
        float: none;
        padding: 20px 20px 0 20px;
        overflow: auto;
        border-top: none;
        background-color: #fff;
        min-width: 240px;
    }

    #athensnest_pnlMenu .main-menu > ul {
        padding: 20px 20px 0 20px;
        margin: 0;
        clear: both;
        float: none;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.35s ease-out;
        transition: max-height 0.35s ease-out;
        background-color: #fff;
        min-width: 240px;
    }

    #athensnest_pnlMenu .main-menu ul li ul li:hover > ul > li {
        max-height: none;
        position: relative;
    }

    #athensnest_pnlMenu .main-menu > ul > li:hover > ul > li {
        max-height: none;
        position: relative;
    }

    #athensnest_pnlMenu .main-menu ul li {
        float: none;
    }

    #athensnest_pnlMenu .main-menu ul li ul {
        float: none;
        position: relative !important;
        left: 0px !important;
        border: none;
        background: none;
    }

    #athensnest_pnlMenu .main-menu ul li ul li {
        float: none;
        position: relative !important;
    }

    #athensnest_pnlMenu .main-menu ul {
        margin: 0
    }

    #athensnest_pnlMenu .main-menu .menu-button {
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 30px;
        padding: 15px 15px;
        font-weight: 700;
        font-size: 0;
        letter-spacing: 1px;
        color: #231F20;
        cursor: pointer;
        position: relative;
        background: url("../images/burger.svg");
        background-repeat: no-repeat;
        background-position: right;
        float: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-left: auto;
    }

    #athensnest_pnlMenu {
        position: absolute;
        right: 0;
        top: 59px;
        z-index: 999;
    }

    #athensnest_pnlMenu .main-menu ul {
        max-width: 100%;
    }

    #athensnest_pnlMenu .main-menu ul li i {
        position: absolute;
        top: 18px;
        z-index: 999;
        margin: 5px;
        width: 16px;
        right: 0;
    }

    #athensnest_pnlMenu .main-menu > ul > li:nth-child(7) > ul > li.hasChildren > i {
        display: none;
    }

    .fa-plus-circle:before {
        content: url("../images/arrowdown.svg");
    }

    .fa-minus-circle:before {
        content: url("../images/arrowup.svg");
    }

    #athensnest_pnlMenu .main-menu > ul > li > a {
        padding: 10px 0 10px 0;
    }

    .footer_down .col-md-6 {
        width: 100%;
        text-align: center !important;
    }


    #athensnest_pnlMenu .main-menu > ul > li > a {
        font-size: 16px;
        margin: 0;
    }

    #athensnest_pnlMenu .main-menu ul li {
        padding: 10px 0;
    }

    .header__right_top {
        width: 178px;
    }
}

@media (min-width: 992px) {
    #pseudo__footer_group {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .pre__footer_link {
        display: none;
    }

    .pre__footer_link_small {
        display: block;
    }

    .footer__group {
        display: none;
    }
}

@media screen and (max-width: 949px) {
    #individual_pages .highlights_block {
        margin: 20px;
        max-width: 100%;
    }
}

@media screen and (max-width: 930px) {
    .grid__block,
    .highlights_block,
    .coming_block {
        max-width: 475px;
    }

    .flex__grid {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #the-place .text-align-right {
        text-align: center;
    }

    .a__grid_flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #the-place #hm-sc-3 .section-background {
        height: 100%;
    }

    .a__grid_right {
        max-width: 100%;
    }

    .asymmetric-margin {
        margin-top: 0;
    }

    .a__grid_right.right_img img {
        height: initial;
    }

    .asymmetric .a__grid_left {
        margin-top: 15px;
    }

    .asymmetric .a__grid_right {
        max-width: 100%;
        margin-top: 15px;
    }

    .a__grid_content {
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .main-menu > ul {
        margin: 0 !important;
    }
}

@media screen and (max-width: 700px) {
    .pre__footer_right {
        top: 170px;
        right: initial;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .pre__footer_address {
        margin-top: 185px;
    }
}

@media screen and (max-width: 660px) {
    .header__social {
        display: none;
    }

    .header__right_top {
        width: initial;
    }

    .header__logo {
        position: relative;
        z-index: 9990;
    }
}

@media screen and (max-width: 515px) {
    .header__logo img {
        width: 300px;
    }

    .header__logo {
        margin-top: 38px;
    }
}

@media screen and (max-width: 430px) {
    .header__logo img {
        width: 240px;
    }

    .header__logo {
        margin-top: 52px;
    }
}