


/* Quicksand - 300;400;500;600;700 */
/* font-family: 'Quicksand', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap');

/* Lato - 0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900 */
/* font-family: 'Lato', sans-serif; */
/*@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');*/

/* Roboto - 0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900 */
/* font-family: 'Roboto', sans-serif; */
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');*/



:root{
    --main-font-family: 'Quicksand', sans-serif;
    --titles-font-family: 'Quicksand', sans-serif;
    --titles-font-family-alt: 'Quicksand', sans-serif;
    --button-font-family: 'Quicksand', serif;

    --main-color: #eee; /* WTB -  191919 */
    --text-main-color: #eee; /* WTB -  1e1e1e */

    --titles-color: #fff; /* WTB -  333 */
    --title-h1-color: #fff; /* WTB -  a0a0a0 */
    --title-h2-color: #fff; /* WTB -  a0a0a0 */

    --menu-link-color: #fff;
    --menu-link-hover-color: #7db7ff;
    --menu-popup-link-color: #091f48;
    --menu-popup-link-hover-color: #0075f3;
    --menu-toggle-hover-color: #7db7ff;

    --submenu-link-color: #fff;
    --submenu-link-hover-color: #7db7ff;
    --submenu-popup-link-color: #6d6e71;
    --submenu-popup-link-hover-color: #0075f3;

    --link-color: #0075f3;
    --link-hover-color: #0075f3;
    --link-alt-hover-color: #a0a0a0;

    --button-color: #a0a0a0;
    --button-hover-color: #0075f3;/*5c5c5c*/
    --button-bg-color: #fff;
    --button-hover-bg-color: #fff;

    --max-width: 1440px;
    --max-width-header: 1600px;
    --max-width-contact-form: 920px;
    --max-width-footer-copyright: 1600px;
}

*{
    font-family: var(--main-font-family);
    font-size: 19px;
    background-repeat: no-repeat;
    text-align: left;
    box-sizing: border-box;
    font-weight: 400;
    color: var(--text-main-color);
}
@media only screen and (max-width: 992px){
    *{
        font-size: 18px;
    }
}

strong, b, strong *, b *{
    font-weight: bold;
}
body {
    text-align:center;
    background-color: #000; /* WTB -  fff */
}
body.no-scroll,
body.form-popup-shown,
body.magnific-popup-opened {
    overflow: hidden;
}

body,h1,h2,h3,h4,h5,h6,form,input{
    padding:0px;
    margin:0px;
}
img{
    border:0px;
}
.cb{
    clear:both;
}
center {
    display:block;
    text-align:center;
}

.alignCenter {
    text-align: center;
}
.alignLeft {
    text-align: left;
}
.alignRight {
    text-align: right;
}

span {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    color: inherit;
    font-weight: inherit;
}

a, a * {
    outline:none;
    color: var(--link-color);

    -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s, border 0.3s ease 0s;
    -moz-transition: color 0.3s ease 0s, background 0.3s ease 0s, border 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s, background 0.3s ease 0s, border 0.3s ease 0s;
    transition: color 0.3s ease 0s, background 0.3s ease 0s, border 0.3s ease 0s;
}
a:hover, a:hover * {
    text-decoration: none;
    color: var(--link-hover-color);
}
/*a:focus {
    outline: 1px solid var(--link-hover-color) !important;
}*/

blockquote {
    padding: 7px 0px;
    padding-left: 13px;
    margin-left: 23px;
}
blockquote * {
    padding: 0px;
    margin: 0px;
}


h1, h2, h3, h4 {
    display: block;
    margin: 0px;
    padding: 0px 0px 0px 0px;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: normal !important;
    letter-spacing: 3px;

    font-family: var(--titles-font-family);
}
h1 *, h2 *, h3 *, h4 *{
    line-height: inherit !important;
    font-family: inherit;
}
h1 span, h2 span, h3 span, h4 span{
    font-size: inherit !important;
    font-weight: inherit;
}
h1 i, h2 i, h3 i, h4 i,
h1 em, h2 em, h3 em, h4 em {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
h3, h3 b, h3 strong {
    line-height: inherit !important;
    color: inherit;
}


h1 {
    font-size: 47px;
    color: var(--title-h1-color);
}
h2 {
    font-size: 47px;
    color: var(--title-h2-color);
}
h3 {
    font-size: 33px;
    color: var(--titles-color);
}
h4, h5, h6 {
    font-size: 26px;
    color: var(--titles-color);
    font-weight: 400;
}

@media only screen and (max-width: 992px){
    h1 {
        font-size: 37px;
    }
    h2 {
        font-size: 37px;
    }
    h3, h4, h5, h6 {
        font-size: 29px;
    }
}
@media only screen and (max-width: 767px){
    h1 {
        font-size: 33px;
    }
    h2 {
        font-size: 33px;
    }
    h3, h4, h5, h6 {
        font-size: 27px;
    }
}
@media only screen and (max-width: 576px){
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 28px;
    }
    h3, h4, h5, h6 {
        font-size: 25px;
    }
}





h1 span,
h2 span,
h3 span,
h1 i,
h2 i,
h3 i {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-style: normal;
}
h1 span:before,
h1 span:after,
h2 span:before,
h2 span:after,
h3 span:before,
h3 span:after,
h1 i:before,
h1 i:after,
h2 i:before,
h2 i:after,
h3 i:before,
h3 i:after{
    content: '';
    border-top: 1px solid;
    margin: 0px 20px 0px 0px;
    flex: 1 0 30px;
    color: #bcbec0;
}
h1 span:after,
h2 span:after,
h3 span:after,
h1 i:after,
h2 i:after,
h3 i:after{
    margin: 0px 0px 0px 20px;
}



span.asterisk {
    color: #c00 !important;
}

[align=center],
[align=center] * {
    text-align: center;
}

table tr td,
table tr th {
    border-bottom: 1px solid #d4d4d4;
    padding: 4px 0px;
}
table tr:first-child td {
    border-top: 1px solid #d4d4d4;
}
table tr th {
    border-bottom: 1px solid #333;
}

blockquote {
    display: table;
    padding: 2px 0px 2px 15px;
    margin: 0px 0px 15px 25px;
    border-left: 3px solid #b3d8e6;
}
blockquote * {
    font-size: inherit;
    color: inherit;
}



.internal-page-content {
    min-height: 300px;
}

/*------------------ header start ------------------*/

main {
    min-height: 100vh;
}


.contentBlockContainer.block-wide-0 .block-container,
.max-width-container,
.max-width-container-header,
.max-width-container-footer,
.max-width-container-footer-copyright,
.max-width-container-contact-form {
    position: relative;
    max-width: var(--max-width);
    padding: 0px 20px;
    margin: auto;
    z-index: 10;
}


.max-width-container-header,
.max-width-container-footer {
    max-width: var(--max-width-header);
}
.max-width-container-footer-copyright {
    max-width: var(--max-width-footer-copyright);
}
.max-width-container-contact-form {
    max-width: var(--max-width-contact-form);
}
.swiper-slide-text-sizer {
    max-width: var(--max-width);
}



.position-relative {
    position: relative;
}


.headerSizer {
    /*min-height: 160px;*/
}
.popupHeaderSizer {
    min-height: 60px;
}

header,
.logo,
.menuToggle,
.headerSocialIcons {
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
header.active,
header.active .logo,
header.active .menuToggle,
header.active .headerSocialIcons {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}






.contentBlockContainer.block-instagram-widget-padding {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 30px;
    padding-bottom: 0px;
}
.contentBlockContainer.block-instagram-widget-padding iframe {
    margin: 0px !important;
    display: block;
}
.contentBlockContainer.block-instagram-widget-padding .block-container {
    padding-left: 7px;
    padding-right: 7px;
}



header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 106px;
    z-index: 300;
    padding: 0px 0px;
}

header.active {
    position: fixed;
    height: 60px;

    background-color: rgba(25, 25, 25, 0.85);
    box-shadow: 0 0 10px rgba(0,0,0,.9);
}

header.active .menuToggle,
.showMainMenu header .menuToggle,
.showMainMenu header.active .menuToggle {
    top: 9px;
}

/* --------- LOGO start --------- */

.logo {
    display: block;
    position: absolute;
    z-index: 100;
    width: 270px;/*238*/
    height: 60px;/*60*/
    top: 30px;
    left: 0px;
    background-image: url(../img/logo.svg); /* logo.png */

    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
header.active .logo {
    width: 200px;
    top: 0px;
}
@media only screen and (max-width: 1200px){
    .showMainMenu header .logo {
        width: 200px;
        top: 0px;
    }
}
@media only screen and (max-width: 440px){
    header .logo {
        width: 210px;
        top: 33px;
    }
    .showMainMenu header .logo {
        width: 200px;
        top: 0px;
    }
}

/* --------- LOGO end --------- */


@media only screen and (max-width: 992px){
    header {
        height: 97px;
    }
    .headerSizer {
        /*min-height: 57px;*/
    }

    header .menuToggle {
        top: 50px;
    }
    header .headerLoginCartContainer {
        right: 60px;
        top: 15px;
    }
    header .headerLoginCartContainer #c7-login {
        display: none;
    }
}
@media only screen and (max-width: 460px){
    header .headerLoginCartContainer {
        display: none;
    }
}

/* FOOTER START */

footer#footer {
    padding: 70px 0px 30px 0px;
    background-color: #191919;
}
footer#footer * {
    color: #e7e7e7;
}
footer#footer a:hover,
footer#footer a:hover * {
    color: var(--link-alt-hover-color);
}



.footerGrid {
    display: grid;
    grid-template-columns: 1fr 291px 1fr;
    grid-template-areas: "footerAddress footerLogo footerMenu";
    grid-gap: 20px;
}

.footerGrid .footerAddress {
    grid-area: footerAddress;
}
.footerGrid .footerLogo {
    grid-area: footerLogo;
}
.footerGrid .footerMenu {
    grid-area: footerMenu;
}

.footerAddress,
.footerAddress * {
    font-size: 18px;
    font-weight: 300;
    line-height: 29px;
}
.footerAddress strong {
    font-weight: 600;
}


.footerLogoBg {/* 291 / 133 */
    display: block;
    width: 100%;
    max-width: 291px;
    height: 133px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url("../img/logo_footer.png");
}


.footerMenu {
    padding: 0px;
}
.footerMenu ul {
    display: block;
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-align: center;
}
.footerMenu ul li {
    display: block;
    margin: 0px;
    padding: 0px;
    text-align: right;
}
.footerMenu ul li a {
    display: inline-block;
    padding: 1px 0px 1px 0px;
    font-size: 18px;
    font-weight: 300;
    word-spacing: 4px !important;
    text-transform: uppercase;
}



@media only screen and (max-width: 992px){
    .footerGrid {
        grid-template-columns: 1fr;
        grid-template-areas: "footerAddress" "footerLogo" "footerMenu";
        grid-gap: 60px;
    }
    .footerMenu ul li {
        text-align: center;
    }
    .footerAddress,
    .footerAddress * {
        text-align: center;
    }
}



.footer-bottom-line {
    display: block;
    border: none;
    border-top: 1px solid #646464;
    margin: 50px 20px 0px 20px;
    padding: 0px;
}
.footerCopyrightGrid {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    grid-template-areas: "siteCopyright siteDesigned siteSocialMedias";
    grid-gap: 20px;
    padding: 12px 0px;
}
.siteCopyright {
    grid-area: siteCopyright;
    text-align: left;
}
.siteDesigned {
    grid-area: siteDesigned;
    text-align: left;
}
.siteSocialMedias {
    grid-area: siteSocialMedias;
}

.siteCopyright,
.siteCopyright *,
.siteDesigned,
.siteDesigned *,
.siteSocialMedias,
.siteSocialMedias * {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

.siteSocialMedias,
.siteSocialMedias *,
.siteSocialMedias .social-medias-list,
.siteSocialMedias .social-medias-list * {
    text-align: right;
}

.social-medias-list li:last-child {
    margin-right: 0px;
}





@media only screen and (max-width: 767px){
    .footerCopyrightGrid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "siteSocialMedias siteSocialMedias"
            "siteCopyright siteDesigned";
        padding-top: 30px;
    }
    .siteSocialMedias,
    .siteSocialMedias *,
    .siteSocialMedias .social-medias-list,
    .siteSocialMedias .social-medias-list * {
        text-align: center;
    }
    footer .siteDesigned {
        text-align: right;
    }
}

@media only screen and (max-width: 576px){
    .footerCopyrightGrid {
        grid-template-columns: 1fr;
        grid-template-areas:
                "siteSocialMedias"
                "siteDesigned"
                "siteCopyright";
    }
    footer .siteDesigned,
    footer .siteCopyright {
        text-align: center;
    }
}

/* FOOTER END */




.headerSocialIcons {
    position: absolute;
    top: 52px;
    right: 0px;
    z-index: 100;
}

.headerSocialIcons .social-medias-list li .fa-brands.fa-tiktok {
    font-size: 26px;
}

header.active .headerSocialIcons {
    top: 10px;
}
@media only screen and (max-width: 1200px){
    .headerSocialIcons {
        right: 60px;
    }
    header.active .headerSocialIcons,
    .showMainMenu header .headerSocialIcons,
    .showMainMenu header.active .headerSocialIcons {
        top: 10px;
    }
}
@media only screen and (max-width: 576px){
    .headerSocialIcons {
        right: 50px;
    }
    .headerSocialIcons .social-medias-list li {
        margin-right: 0px;
        margin-left: 0px;
    }
}
@media only screen and (max-width: 420px){
    .headerSocialIcons {
        display: none;
    }
}



#parentPageId_1012 table {
    width: auto;
}
#parentPageId_1012 table tr td {
    border-bottom: 0px solid #d4d4d4;
    padding: 4px 0px;
}
#parentPageId_1012 table tr td:first-child {
    padding-right: 40px;
}

#parentPageId_1012 table tr:first-child td {
    border-top: 0px solid #d4d4d4;
}
#parentPageId_1012 table tr th {
    border-bottom: 0px solid #333;
}


/* PROJECTS START */

.siteProjectItemsContainer {
    padding: 30px 0px 0px 0px;
}
.siteProjectItemsContainerHome {
    padding-bottom: 40px;
}

.project-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
    padding: 7px;
}
@media only screen and (max-width: 1300px){
    .project-items-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 767px){
    .project-items-grid {
        grid-template-columns: 1fr;
    }
}

.project-item {
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.project-thubnail {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
}
.project-thubnail-bg {
    width: 100%;
    min-height: 150px;
    aspect-ratio: 96 / 53;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.project-item:hover .project-thubnail-bg {
    transform: scale(1.1);
}

.project-content {
    position: absolute;
    z-index: 10;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;

    opacity: 0;

    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.project-item:hover .project-content {
    opacity: 1;
}
.project-info,
.project-info *,
a:hover .project-info,
a:hover .project-info *{
    color: #fff;
}

@media only screen and (max-width: 992px){
    .project-content {
        top: auto;
        opacity: 1;
    }
}


.project-info {
    display: block;
    width: 100%;
    padding: 10px;
}
.project-item * {
    text-align: center;
    font-size: 20px;
    font-weight: 300 !important;
    letter-spacing: 1px;
    margin: 0px;
}
.project-info h2,
a:hover .project-info h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
}
@media only screen and (max-width: 992px){
    .project-item * {
        font-size: 18px;
    }
    .project-info h2,
    a:hover .project-info h2 {
        font-size: 28px;
    }
}
@media only screen and (max-width: 767px){
    .project-item * {
        font-size: 20px;
    }
    .project-info h2,
    a:hover .project-info h2 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 400px){
    .project-item * {
        font-size: 18px;
    }
    .project-info h2,
    a:hover .project-info h2 {
        font-size: 28px;
    }
}

/* PROJECTS END */



/* PRESS START */

.sitePressItemsContainer {
    padding: 30px 0px 0px 0px;
}

.press-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
    padding: 7px;
}
@media only screen and (max-width: 1300px){
    .press-items-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 767px){
    .press-items-grid {
        grid-template-columns: 1fr;
    }
}

.press-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #3c3c3c;
    background-color: #fff;
}

.press-thubnail {
    position: relative;
    overflow: hidden;
    padding: 20px;
    aspect-ratio: 8 / 9;
    display: flex;
    align-content: center;
}
.press-thubnail img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;

    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;

    box-shadow: 4px 4px 8px rgba(0,0,0,0.4);
}
.press-item:hover .press-thubnail img {
    transform: scale(1.1);
}


.press-content {
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.press-info {
    display: block;
    width: 100%;
    padding: 10px;
}
.press-item * {
    text-align: center;
    font-size: 19px;
    font-weight: 300 !important;
    letter-spacing: 1px;
    margin: 0px;
    color: #191919;
}
.press-info h2,
a:hover .press-info h2 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
}
@media only screen and (max-width: 400px){
    .press-item * {
        font-size: 16px;
    }
    .press-info h2,
    a:hover .press-info h2 {
        font-size: 18px;
    }
}


#parentPageId_1076 .block_has_image.block_has_no_text img {
    display: block;
    max-height: 140vh;/*95*/
    max-width: 100%;
    width: auto;
    margin: auto;
    box-shadow: 0 0 2px rgba(0,0,0,.5);
}



/* PRESS END */



/* TILES START */


.siteTilesItems {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
    padding: 20px 7px;
}
.hasTilesInLine4 .siteTilesItems {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.siteTilesItems .tileItem {
    min-height: 140px;
    position: relative;
}
.siteTilesItems .tileItem.tile-item-1 {
    aspect-ratio: 1 / 0.6;
}
.siteTilesItems .tileItem.tile-item-2 {
    grid-column: span 2;
}
.siteTilesItems .tileItem.tile-item-3 {
    grid-column: span 3;
    aspect-ratio: 3 / 0.6;
}

@media only screen and (max-width: 992px){
    .siteTilesItems {
        grid-template-columns: 1fr 1fr;
    }
    .siteTilesItems .tileItem.tile-item-1,
    .siteTilesItems .tileItem.tile-item-2 {
        grid-column: unset;
        aspect-ratio: 1 / 0.6;
    }
    .siteTilesItems .tileItem.tile-item-3 {
        grid-column: span 2;
        aspect-ratio: 2 / 0.6;
    }

    .siteTilesInLine3 .siteTilesItems {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }
    .siteTilesInLine3 .siteTilesItems .tileItem.tile-item-1,
    .siteTilesInLine3 .siteTilesItems .tileItem.tile-item-2,
    .siteTilesInLine3 .siteTilesItems .tileItem.tile-item-3 {
        grid-column: unset;
        aspect-ratio: 1 / 0.6;
    }

}

@media only screen and (max-width: 576px){
    .siteTilesItems {
        grid-template-columns: 1fr;
    }
    .siteTilesItems .tileItem.tile-item-1,
    .siteTilesItems .tileItem.tile-item-2,
    .siteTilesItems .tileItem.tile-item-3 {
        grid-column: unset;
        aspect-ratio: 1 / 0.6;
    }
}

.tileItem .tileThubnail {
    overflow: hidden;
}
.tileItem .tileThubnailBg {
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.tileItem .tileThubnail,
.tileItem .tileThubnailBg{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tileItem:hover .tileThubnailBg {
    transform: scale(1.1);
}


.tileContent {
    position: absolute;
    z-index: 10;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;

    opacity: 0;

    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.tileItem:hover .tileContent,
.tileItemActive_1 .tileContent {
    opacity: 1;
}
.tileContentText,
.tileContentText *,
a:hover .tileContentText,
a:hover .tileContentText *{
    color: #fff;
}

@media only screen and (max-width: 992px){
    .tileContent {
        top: auto;
        opacity: 1;
    }
}


.tileContentText {
    display: block;
    width: 100%;
    padding: 10px;
}
.tileContentText,
.tileContentText *,
a:hover .tileContentText,
a:hover .tileContentText *{
    text-align: center;
    font-size: 20px;
    font-weight: 300 !important;
    letter-spacing: 1px;
    margin: 0px;
}
.tileContentText h1,
a:hover .tileContentText h1,
.tileContentText h2,
a:hover .tileContentText h2,
.tileContentText h3,
a:hover .tileContentText h3 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
}
@media only screen and (max-width: 992px){
    .tileContentText,
    .tileContentText *,
    a:hover .tileContentText,
    a:hover .tileContentText *{
        font-size: 18px;
    }
    .tileContentText h1,
    a:hover .tileContentText h1,
    .tileContentText h2,
    a:hover .tileContentText h2,
    .tileContentText h3,
    a:hover .tileContentText h3 {
        font-size: 28px;
    }
}
@media only screen and (max-width: 767px){
    .tileContentText,
    .tileContentText *,
    a:hover .tileContentText,
    a:hover .tileContentText *{
        font-size: 20px;
    }
    .tileContentText h1,
    a:hover .tileContentText h1,
    .tileContentText h2,
    a:hover .tileContentText h2,
    .tileContentText h3,
    a:hover .tileContentText h3 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 400px){
    .tileContentText,
    .tileContentText *,
    a:hover .tileContentText,
    a:hover .tileContentText *{
        font-size: 18px;
    }
    .tileContentText h1,
    a:hover .tileContentText h1,
    .tileContentText h2,
    a:hover .tileContentText h2,
    .tileContentText h3,
    a:hover .tileContentText h3 {
        font-size: 28px;
    }
}








.max-width-container-project-tiles {
    position: relative;
    max-width: 1560px;
    padding: 0px 0px;
    margin: auto;
    z-index: 10;
}
.siteProjectTilesContainer {
    padding: 40px 0px;
}

.siteProjectTilesItems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 7px;
    padding: 20px 7px;
}

.siteProjectTilesItems .projectTileItem {
    min-height: 140px;
    position: relative;
}
.projectTileContent {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.projectTileItem.project-tile-d {
    grid-column: span 2;
}
.projectTileItem.project-tile-h .projectTileContent {
    aspect-ratio: 1 / 0.55;
}
.projectTileItem.project-tile-v .projectTileContent {
    aspect-ratio: 0.9 / 1;
}
.projectTileItem.project-tile-d .projectTileContent {
    aspect-ratio: 1 / 0.55;
}

.projectTileItem.projectTileItemNoImg .projectTileContent {
    aspect-ratio: unset;
}

.projectTilePlay {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    margin: -60px 0px 0px -60px;
    background-image: url("/_common/img/icons/play.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
}
.projectTileItem:hover .projectTilePlay {
    opacity: 0.9;
}
.projectTileContentImg {
    position: absolute;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.projectTileContentText {
    padding: 30px 40px;
}



@media only screen and (max-width: 1200px){
    .projectTileItem.projectTileItemNoImg {
        grid-column: span 2;
    }
    .projectTilePlay {
        width: 110px;
        height: 110px;
        margin: -55px 0px 0px -55px;
    }
}
@media only screen and (max-width: 767px){
    .siteProjectTilesItems {
        grid-template-columns: 1fr;
    }
    .projectTileItem.project-tile-d {
        grid-column: unset;
    }
    .projectTileItem.projectTileItemNoImg {
        grid-column: unset;
    }
    .projectTilePlay {
        width: 100px;
        height: 100px;
        margin: -50px 0px 0px -50px;
    }
}


.contactFormMap {
    padding-top: 30px;
}





/* --------------- PEOPLE ITEMS start --------------- */


.peopleItem {
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #444; /* WTB -  a0a0a0 */
}
.peopleItem:last-child {
    border-bottom: 0px;
}
.peopleItem .peopleItemContent {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 60px;
    padding: 0px;
}
.peopleItem .peopleItemContent.peopleHasImage {
    grid-template-columns: 450px 1fr;
}


.peopleItemImage {
    padding-top: 13px;
}
.peopleItemImage img  {
    display: block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 13px 0px;
}
.peopleItemText h1,
.peopleItemText h2 {
    font-size: 40px;
    color: #fff; /* WTB -  222 */
    font-weight: 500;
    margin-bottom: 20px;
}
.peopleItemText h3 {
    font-size: 22px;
    letter-spacing: normal;
    line-height: normal;
    color: #fff; /* WTB -  222 */
    font-weight: 500;
    margin-bottom: 20px;
}


@media only screen and (max-width: 1200px){
    .peopleItem .peopleItemContent.peopleHasImage {
        grid-template-columns: 400px 1fr;
    }
    .peopleItemText h1,
    .peopleItemText h2 {
        font-size: 36px;
    }
    .peopleItemText h3 {
        font-size: 21px;
    }
}
@media only screen and (max-width: 992px){
    .peopleItem .peopleItemContent,
    .peopleItem .peopleItemContent.peopleHasImage {
        display: block;
        grid-template-columns: none;
        grid-gap: unset;
    }
    .peopleItemImage {
        padding-top: 0px;
        padding-bottom: 30px;
        max-width: 500px;
        margin: auto;
    }
    .peopleItemText,
    .peopleItemText * {
        text-align: justify !important;
    }
    .peopleItemText h1,
    .peopleItemText h2,
    .peopleItemText h3 {
        text-align: center !important;
    }
    .peopleItemText h1,
    .peopleItemText h2 {
        font-size: 34px;
    }
    .peopleItemText h3 {
        font-size: 19px;
    }
}

/* --------------- PEOPLE ITEMS end --------------- */


/* --------------- BOOKS ITEMS start --------------- */


/*.siteBooksContainer {
    padding: 30px 0px;
}
.siteBooksItems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    padding: 20px 7px;
}

.bookItem {
    padding-bottom: 40px;
}

.bookItemImage img{
    display: block;
    width: 100%;
}

.bookPaypalWidget {
    padding-top: 30px;
}

.bookPaypalWidget .css-xoxfz9 {
    max-width: 100% !important;
}

.siteBooksItems .bookItemText {
    padding-top: 30px;
}

.siteBooksItems .bookItemText h1,
.siteBooksItems .bookItemText h2,
.siteBooksItems .bookItemText h3,
.siteBooksItems .bookItemText h4{
    font-size: 34px !important;
    text-align: center;
}

.siteBooksItems #desc-label {
    display: none !important;
}


.siteBooksItems #price-label,
.siteBooksItems .input-label,
.siteBooksItems #subtotal-container,
.siteBooksItems #tax-container,
.siteBooksItems #total-container {
    text-align: center;
}
.siteBooksItems #price-label {
    font-weight: bold;
}



.bookPaypalWidget > div,
.bookPaypalWidget .css-xoxfz9 {
    text-align: center;
}
.siteBooksItems .paypal-buttons {
    max-width: 360px;
    margin: auto;
}

.buyBookByEmail {
    padding-bottom: 15px;
}
.bookPaypalWidget .buyBookByEmail {
    padding-bottom: 0px;
}
.bookPaypalWidget .buyBookByEmail,
.bookPaypalWidget .buyBookByEmail * {
    text-align: center;
}



.siteBooksItems .selectContainer {
    max-width: 100px;
    margin: auto;
    margin-bottom: 1rem;
}

.siteBooksItems #generic-error,
.siteBooksItems #browser-error {
    padding-bottom: 20px;
}




.bookItem.bookItemSpan_1 {
    grid-column: span 2;
}

.bookItem.bookItemSpan_1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
}
.bookItem.bookItemSpan_1 .bookItemText {
    padding-top: 0px;
}


@media only screen and (max-width: 992px){
    .siteBooksItems {
        display: block;
        max-width: 450px;
        margin: auto;
    }
    .bookItem {
        padding-bottom: 100px;
    }
    .bookItem.bookItemSpan_1 {
        display: block;
    }
    .bookItem.bookItemSpan_1 .bookItemText {
        padding-top: 30px;
    }
}*/


/* --- BOOKS ITEMS V2 --- */

.siteBooksContainer {
    padding: 10px 0px;
}

.siteBooksContainer .max-width-container {
    max-width: 100%;
}

.siteBooksItems {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    padding: 20px 10px;
}

.bookItem {
    aspect-ratio: 8 / 10;
    background-color: #eee;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bookItem .bookItemLink {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: block;
    height: 100%;
    z-index: 100;
}
.bookItem .bookItemContent {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: grid;
    grid-gap: 0px;
    grid-template-columns: 1fr;
    align-content: center;
    background-color: rgba(34, 34, 34, 0.8);
    padding: 15px;
    opacity: 0;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.siteBooksItems .bookItem:hover .bookItemContent {
    opacity: 1;
}

.bookItemText,
.bookItemText * {
    text-align: center;
    color: #fff;
    font-weight: 300 !important;
}
.bookItemText b,
.bookItemText strong {
    font-weight: 600 !important;
}
.siteBooksItems .bookItemText h1,
.siteBooksItems .bookItemText h2,
.siteBooksItems .bookItemText h3,
.siteBooksItems .bookItemText h4{
    font-size: 30px !important;
    text-transform: uppercase !important;
    font-weight: 300 !important;
    text-align: center;
}

@media only screen and (max-width: 1280px){
    .siteBooksItems {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 992px){
    .siteBooksItems .bookItemText h1,
    .siteBooksItems .bookItemText h2,
    .siteBooksItems .bookItemText h3,
    .siteBooksItems .bookItemText h4{
        font-size: 25px !important;
    }
}
@media only screen and (max-width: 767px){
    .siteBooksItems {
        display: block;
        max-width: 550px;
        margin: auto;
    }
    .bookItem {
        margin-bottom: 30px;
    }
}


/* --------------- BOOKS ITEMS end --------------- */

/* --------------- BOOK CONTENT WIDGET start --------------- */
.paypalBookWidget {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 30px;
    min-width: 400px;
}
.paypalBookWidget #price-label {
    font-weight: bold;
}
.paypalBookWidget #desc-label {
    display: none !important;
}
.paypalBookWidget .css-1b6cd97 {
    margin-top: 0px;
}
.paypalBookWidget .payPalEmailForInternational {
    padding-top: 15px;
}
@media only screen and (max-width: 992px){
    .paypalBookWidget {
        min-width: 300px;
        width: 320px;
    }
}
@media only screen and (max-width: 750px){
    .paypalBookWidget {
        display: block;
        min-width: 200px;
        width: auto;
    }
    .paypalBookWidget .css-xoxfz9 {
        max-width: 100% !important;
    }
    .paypalBookWidget .payPalEmailForInternational {
        text-align: center;
    }
    .paypalBookWidget .css-178qcrb {
        margin: auto;
    }
}

.paypalBookWidget #generic-error,
.paypalBookWidget #browser-error {
    padding-bottom: 20px;
}


.paypalBookWidget h3.item-header span {
    display: block;
    text-align: left;
}
.paypalBookWidget h3.item-header > span {
    display: none;
}
.paypalBookWidget h3.item-header .price-container span { 
    display: block;
}
.paypalBookWidget h3.item-header span:after {
    content: none;
}
.paypalBookWidget h3.item-header span:before {
    content: none;
}



.paypalBookWidget #checkout-button {
    position: relative;
    z-index: 100;
    text-align: center;
}
.paypalBookWidget #generic-error > div {
    padding: 10px 15px;
    background-color: #5b1e1e;
}

.paypalBookWidget .css-au42bs {
    position: relative;
    z-index: 100;
    margin-top: 30px !important;
}
/* --------------- BOOK CONTENT WIDGET end --------------- */









iframe.globeMapIframe {
    width: 100%;
    aspect-ratio: 40 / 25 !important;
}

@media only screen and (max-width: 1280px){
    iframe.globeMapIframe {
        aspect-ratio: 1 / 1 !important;
    }
}
@media only screen and (max-width: 750px){
    iframe.globeMapIframe {
        aspect-ratio: 40 / 25 !important;
    }
}


