/************************************************************
*                                                            *
* Project: GALERIA PRESENÇA                                  *
* Date: 12/2022                                              *
* Author: NETMOVE                                            *
*                                                            *
**************************************************************/


/*************************************************************
*                                                            *
* 0 - VARIAVEIS                                              *
* 1 - GERAL                                                  *
* 2 - HEADER                                                 *
* 3 - FOOTER                                                 *
* 4 - HOME                                                   *
* 5 -  NEWSLETTER                                            *
* 6 -                                        *
* 7 -                                        *
* 8 -                                        *
* 9 -                                        *
* 10 -                                       *
* 11 -                                       *
* 12 -                                       *
* 13 - RESPONSIVE                                            *
*                                                            *
**************************************************************/


/********************** 0 - VARIAVEIS (CORES/ESTILO) *****************/

@font-face {
    font-family: "Generator";
    src: url("./fonts/Generator-Medium.woff2") format("woff2"),
         url("./fonts/Generator-Medium.woff") format("woff");
}


@font-face {
    font-family: "Generator Light";
    src: url("./fonts/Generator-Light.woff2") format("woff2"),
         url("./fonts/Generator-Light.woff") format("woff");
}


:root {
    --txt_primary: #212121;
    --dark_grey: #121212;
    --txt_secundary: #999999;
    --txt_disabled: #BFBBBB;
    --txt_light: #FAFAFA;
    --bg_white: #FFFFFF;
    --bg_dark: #474343;
    --bg_desabled: #F8F7F7;
    --accent_primary: #EF4A4F;
    --accent_hover: #DF262B;
    --accent_focus: #6A1013;
    --accent_active: #B61B20;
    --interface_dividers: #E8E6E6;
    --interface_hover: #F3F1F1;
    --interface_pressed: #2F2C2C;
    --interface_stroke: #514D4D;
    --interface_disabled_strok: #E2DFDF;
}


/************************ 1 - GERAL **************************/
html {
    overflow-x: hidden;
}

body {
    font-family: 'Generator', sans-serif;
    width: 100%;
    position: relative;
    font-weight: 500;
    color: var(--txt_primary);
    /*overflow-x: hidden;*/
}

.row>* {
    padding-left: 10px;
    padding-right: 10px;
}

.row .prev-slide,
.row .next-slide {
    padding: 0;
}

.container-fluid {
    padding-left: 80px!important;
    padding-right: 80px!important;
}

.mt-20 {
    margin-top: 20px;
}


.mb-40 {
    margin-bottom: 40px;
}

.row {
    max-width: calc(100%+20px)!important;
    margin-left: -10px!important;
    margin-right: -10px!important;
}

.form-check-input[type="checkbox"] {
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--accent_primary);
    border-color: var(--accent_primary);
}

.form-check-input:focus {
    box-shadow: none;
}

a {
    text-decoration: none;
}


a.external-link {
    color: var(--accent_primary)!important;
}

/*.slide-up
{
    bottom: 0px !important;
}

.slide-down
{
    bottom: -475px !important;
}*/


/*LOADER*/

.loading-area {
    width:100%;	
    height:100%;	
    position:fixed;	
    left:0;	
    top:0;	
    z-index:9999;	
    overflow:hidden;
    background-color: var(--bg_white);
    opacity: 1;
}

.loader {
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    animation: rotate 1s linear infinite
  }
  .loader::before, 
  .loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid var(--interface_dividers);
    animation: prixClipFix 2s linear infinite ;
  }
  .loader::after{
    transform: rotate3d(90, 90, 0, 180deg );
    border-color: var(--accent_primary);
  }

  @keyframes rotate {
    0%   {transform: rotate(0deg)}
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  }


  .videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


  /* NEWSLETTER*/

  .newsletter-layer {
    width: 100%;	
    height: 0;	
    min-height: 0;
    position: fixed;	
    left: 0;	
    top: 100vh;	
    z-index: 9999;	
    overflow: auto;
    background-color: var(--bg_white);
    opacity: 1;
    display: flex;
    align-items: center;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .newsletter-layer.slide-up {
    top: 0;
    height: 100%;
    min-height: 100vh;
  }

  .input-div {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
  }

  input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--interface_stroke);
    background-color: var(--bg_white);
    outline: none;
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    padding-bottom: 12px;
    font-weight: 300;
    font-family: "Generator Light";
  }


  input::placeholder,
  textarea::placeholder {
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_secundary);
    font-weight: 300;
    font-family: "Generator Light";
}


textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--interface_stroke);
    background-color: var(--bg_white);
    outline: none;
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    padding-bottom: 12px;
    font-weight: 300;
    font-family: "Generator Light";
    resize: none;
}

.form-check {
    padding-top: 30px;
    margin-bottom: 60px;
}

.form-check label {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
}

.btn-submit {
    position: relative;
    padding: 10px 14px 8px;
    color: var(--txt_primary);
    font-size: 18px;
    line-height: 21px;
    border: 1.2px solid var(--interface_stroke);
    outline: none;
    background-color: var(--bg_white);
}

/*.btn-submit::after {
    content: '';
    position: absolute;
    background-image: url('../images/arrow-right.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 21px;
    top: 10px;
    right: 14px;
}*/

.newsletter-layer .small-txt,
.inquire-div .small-txt {
    margin-top: 50px;
    color: var(--txt_primary);
    font-size: 14px;
    line-height: 18px;
}

.newsletter-layer .small-txt a,
.inquire-div .small-txt a {
    text-decoration: underline;
    color: inherit;
}

.close-layer {
    position: absolute;
    top: 85px;
    right: 85px;
    border: none;
    outline: none;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/icons/x.svg');
    width: 20px;
    height: 20px;
    z-index: 1000;
   /* -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
}

.close-layer:hover {
    /*opacity: 0.8;*/
    filter: invert(16%) sepia(93%) saturate(5772%) hue-rotate(351deg) brightness(94%) contrast(85%);
}

.input-div.error-input input,
.input-div.error-input textarea {
    border-bottom: 1px solid var(--accent_primary);
    /*color: var(--accent_primary);*/
}

.input-div.error-input::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    bottom: 12px;
    right: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/icons/circle-info.svg');
}

.error-msg {
    color: var(--accent_primary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    font-family: "Generator Light";
}

.newsletter-success {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: none;
}

.newsletter-success h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 27px;
    color: var(--txt_primary);
}

.newsletter-success h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 28px;
    color: var(--txt_primary);
}

.newsletter-success p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 28px;
    color: var(--txt_primary);
}

.newsletter-success a {
    display: inline-block;
    font-size: 18px;
    line-height: 21px;
    color: var(--txt_primary);
    border: 1.2px solid var(--txt_primary);
    padding: 10px 14px 8px;
    margin-right: 30px;
    text-decoration: none;
    margin-bottom: 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.newsletter-success a:hover,
.newsletter-success a:active {
    background-color: var(--bg_dark);
    color: var(--txt_light);
}


.internal-page {
    border-top: 1px solid var(--interface_dividers);
    padding-top: 170px;
}

.internal-page.img-top { 
    padding-top: 200px;
}

.internal-page.books {
    padding-top: 10px;
}

.internal-page h1 {
    font-size: 32px;
    line-height: 36px;
    color: var(--txt_primary);
    margin-bottom: 40px;
    text-transform: lowercase;
}

.main-btn {
    outline: none;
    border: none;
    background: var(--accent_primary);
    color: var(--txt_light);
    padding: 10px 14px 8px;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

.main-btn:hover,
.main-btn:active {
    background-color: var(--accent_hover);
    color: var(--txt_light);
}

.main-btn:focus {
    border: 2.4px solid var(--accent_hover);
}


.sec-btn {
    outline: none;
    background: var(--bg_white);
    color: var(--txt_primary);
    padding: 10px 14px 8px;
    text-decoration: none;
    border: 1.2px solid var(--interface_stroke);
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

.sec-btn .down-arrow {
    position: absolute;
    width: 20px;
    height: 16px;
    top: 12px;
    right: 12px;
    background-image: url('../images/icons/arrow-down.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


.sec-btn .right-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 12px;
    right: 12px;
    background-image: url('../images/icons/arrow-right.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sec-btn:hover i,
.btn-submit:hover:after {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(79deg) brightness(104%) contrast(101%);
}

.sec-btn2 {
    outline: none;
    background: transparent;
    color: var(--txt_primary);
    padding: 10px 14px 8px;
    text-decoration: none;
    border: 1.2px solid var(--txt_primary);
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

.sec-btn:hover,
.btn-submit:hover,
.sec-btn2:hover {
    background-color: var(--bg_dark);
    color: var(--txt_light);
}

.sec-btn:active,
.btn-submit:active,
.sec-btn2:active {
    background-color: var(--interface_pressed);
    color: var(--txt_light);
}

.sec-btn:focus,
.btn-submit:focus,
.sec-btn2:focus {
    border: 2.4px solid var(--accent_primary);
    /*color: var(--txt_light)*/
}


/*.side-menu {
    padding-right: 60px;
}*/

.side-menu a {
    padding: 20px 15px 20px 15px;
    border-top: 1.2px solid var(--interface_dividers);
    display: block;
    text-transform: lowercase;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 21px;
    color: var(--txt_primary);
    text-decoration: none;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.side-menu a:hover {
    background-color: var(--interface_hover);
}

.side-menu a:hover span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.side-menu a:hover span {
    padding-left: 5px;
}

/*.side-menu a .right-arrow {
    position: absolute;
    top: 20px;
    right: 12px;
    width: 16px;
    height: 22px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/icons/arrow-right.svg');
}*/

.side-menu .dropdown {
    border-bottom: 1.2px solid var(--interface_dividers);
}

.side-menu .dropdown::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 12px;
    width: 10px;
    height: 16px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/icons/arrow-down2.svg');
}

.side-menu .years {
    display: none;
    padding-top: 40px;
    padding-bottom: 20px;
}
.side-menu .years.columns {
    display: inline;
    /*-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
}
.side-menu .years a {
    /*margin-bottom: 20px;*/
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 21px;
    color: var(--txt_primary);
    text-decoration: none;
    /*padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;*/
    border: none;
}
.side-menu .years.columns a {
    display: inline-block;
    text-align: center;
    width: 75px;
}

.side-menu .more-years {
    display: none;
}

.side-menu .years .more {
    text-decoration: underline;
    padding-top: 20px;
}

.side-menu .sticky-menu,
.expo-details .sticky-menu {
    position: sticky;
    position: -webkit-sticky;
    top: 90px;
    max-width: 85%;
    padding-top: 20px;
}

.book-detail .expo-details .sticky-menu {
    max-width: 100%!important;
}


.artwork .col-lg-9.order-1 {
    /*padding-top: 80px;
    margin-bottom: 20px;*/
}

.artwork .fixed {
    position: fixed;
}


.animated-link {
    position: relative;
    text-decoration: none;
}


.animated-link::before {
    background-color: var(--txt_primary);
}

.side-menu .animated-link::before {
    background-color: var(--interface_stroke);
}


.animated-link:hover {
    text-decoration: none;
}
  
.animated-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.2px;
    border-radius: 4px;
    background-color: inherit;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.animated-link::before {
    background-color: var(--txt_primary);
}
  
.animated-link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

/************************ 2 - HEADER **************************/

.header {
    padding-top: 30px;
    padding-bottom: 20px;
    background: var(--bg_white);
    z-index: 3;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header.scroll-header {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header.scroll-header .top-header {
    position: relative;
}

.header.scroll-header .top-header:after {
    position: absolute;
    content: '';
    bottom: -10px;
    height: 1.2px;
    background-color: var(--interface_dividers);
    width: 100%;
}

.header .main-link img {
    height: 60px;
    width: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header.scroll-header .main-link img {
    max-height: 50px;
    width: auto;
}

.header .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.header .navbar .nav-link {
    font-size: 18px;
    color: var(--txt_primary);
    text-transform: lowercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .navbar .nav-link:hover {
    color: var(--accent_primary);
}


.header .navbar .nav-link:focus {
    text-decoration: underline;
}

.header .navbar .nav-link:active {
    color: var(--accent_active);
}


.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    height: calc(100vh - 40px);
    width: 100vw;
    background-color: white;
    padding: 36px 20px;
}

.header.scroll-header .mobile-menu {
    top: 40px;
}
.mobile-menu ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu li {
    padding: 20px 20px 20px 0;
    border-bottom: 1.2px solid var(--interface_dividers);
}

.mobile-menu li a {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 21px;
    color: var(--txt_primary);
    text-decoration: none;
}

.mobile-menu .d-block {
    border-top: 1.2px solid var(--interface_dividers);
}


.btn-menu-mobile {
    border: none;
    background: transparent;
    outline: none;
    text-transform: lowercase;
    position: relative;
    min-width: 25px;
    min-height: 25px;
}

.btn-menu-mobile .opened {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/x.svg');
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    display: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-menu-mobile .opened:hover {
    opacity: 0.8;
}

.btn-menu-mobile .closed {
    font-size: 18px;
    line-height: 21px;
    color: var(--txt_primary);
}

.main-link {
    text-decoration: none;
}

.main-link h1 {
    font-size: 24px;
    line-height: 28px;
    color: var(--txt_primary);
    margin: 0;
    text-decoration: none;
    display: none;
    text-transform: lowercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-link h1:hover {
    color: var(--accent_primary);
}

/************************ 3 - FOOTER **************************/
.footer {
    border-top: 1.2px solid var(--interface_dividers);
    padding-top: 40px;
}

.footer .logo-footer {
    max-height: 56px;
    width: auto;
    height: auto;
}

.sm-icon {
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

footer .sm-icon {
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sm-icon:hover {
    opacity: 0.8;
}

.sm-icon.facebook {
    background-image: url('../images/icons/facebook-f.svg');
    margin-left: 40px;
}

.sm-icon.instagram {
    background-image: url('../images/icons/instagram.svg');
}

.sm-icon.linkedin {
    background-image: url('../images/icons/linkedin-in.svg');
    margin-left: 40px;
}

.footer-contacts {
    padding-top: 50px;
    padding-bottom: 80px;
    border-bottom: 1.2px solid var(--interface_dividers);
}

.footer-contacts.d-lg-none {
    border-bottom: none;
}

.footer-contacts h2 {
    font-size: 16px;
    line-height: 18px;
    color: var(--accent_primary);
    margin-bottom: 43px;
}

.footer-contacts p,
.footer-contacts a {
    font-size: 16px;
    line-height: 18px;
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    text-decoration: none;
}

.footer-contacts .link-map {
    margin-top: 50px;
    display: block;
    text-decoration: underline;
}

.footer-contacts .social-media-list {
    height: calc(100% - 80px);
}

.footer-supports {
    padding-top: 60px;
    padding-bottom: 80px;
    border-bottom: 1.2px solid var(--interface_dividers);
}

.footer-supports h2 {
    font-size: 16px;
    line-height: 18px;
    color: var(--txt_primary);
}

.footer-supports img {
    max-height: 45px;
    max-width: 100%;
    width: auto;
    height: auto;
}


.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-bottom .copyrights {
    font-size: 14px;
    line-height: 18px;
    color: var(--accent_primary);
    font-weight: 300;
    font-family: "Generator Light";
}

.footer-bottom .design-develop,
.footer-bottom .design-develop a {
    font-size: 14px;
    line-height: 18px;
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
}

/************************ 4 - HOMEPAGE **************************/
/*main {
    margin-top: 110px;
}*/

.banner {
    margin-bottom: 80px;
    padding-top: 110px;
}

.banner.banner-expos {
    margin-bottom: 0px;
    padding-top: 0px;
}

.books .banner {
    margin-bottom: 120px;
}

.banner .slide .carousel-item {
    height: 85vh;
    max-height: 850px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner .slide .carousel-item:hover {
    cursor: pointer;
}

.banner .slide .carousel-item .carousel-info {
    position: absolute;
    left: 80px;
    bottom: 105px;
    width: calc(100% - 140px);
    height: auto;
    padding-bottom: 55px;
}

.books .banner .slide .carousel-item .carousel-info {
    padding-bottom: 80px;
}

.banner .slide .carousel-item,
.news-highlighted .carousel-item {
    box-shadow: inset rgba(255,255,255,0.35) 0 -300px 240px;
}

.banner .slide .carousel-item .carousel-info h2 {
    font-size: 32px;
    line-height: 36px;
    color: var(--txt_primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.books .banner .slide .carousel-item .carousel-info h2 {
    margin-bottom: 10px;
}

.banner .slide .carousel-item .carousel-info p {
    font-size: 24px;
    color: var(--txt_primary);
    max-width: 550px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner .slide .carousel-item .carousel-info span {
    font-size: 20px;
    color: var(--txt_primary);
    position: absolute;
    bottom: -55px;
    left: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner .slide .carousel-item:hover h2,
.banner .slide .carousel-item:hover p,
.banner .slide .carousel-item:hover span {
    color: var(--accent_primary);
}


.banner .slide .carousel-item .carousel-info .sec-btn2 {
    position: absolute;
    bottom: -55px;
    left: 0px;
    z-index: 2;
}

.books .banner .slide .carousel-item .carousel-info .sec-btn2 {
    bottom: -65px;
}


.banner .slide .control-btns {
    padding-top: 26px;
    position: absolute;
    bottom: 50px;
    display: flex;
    right: 60px;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 140px);
    border-top: 1px solid var(--txt_primary);
}

.banner .slide .next-slide,
.banner .slide .prev-slide {
    outline: none;
    background: transparent;
    border: none;
    width: 34px;
    height: 28px;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    padding: 0;
   /* background-position: center;
    background-size: contain;
    background-repeat: no-repeat;*/
}

/*.banner .slide .next-slide {
    background-image: url("../images/arrow-right.svg");
    margin-left: 15px;
}

.banner .slide .prev-slide {
    background-image: url("../images/arrow-left.svg");
}*/

.news-home,
.books-home {
    border-top: 1.2px solid var(--interface_dividers);
    padding-top: 30px;
    margin-bottom: 100px;
}

.news-home .main-btn,
.books-home .main-btn {
    margin-top: 60px;
}


.news-home .col-4,
.books-home .col-3 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-home .col-4:hover,
.books-home .col-3:hover {
    cursor: pointer;
    opacity: 0.8;
}

.news-home h2,
.books-home h2 {
    font-size: 32px;
    line-height: 36px;
    color: var(--txt_primary);
    margin-bottom: 40px;
}

.news-home h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 26px;
    color: var(--txt_primary);
    margin-bottom: 10px;
}

.news-home p,
.books-home p {
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    margin-bottom: 5px;
}

.news-home .new-img {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.news-home .new-img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}


.books-home {
    padding-bottom: 75px;
}

.books-home .col-3 {
    padding: 10px;
}


.books-home h3 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    margin-bottom: 10px;
}

.books-home .book-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.books-home .book-img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
  

.books-home .slick-prev,
.books-home .slick-next,
.news-home .slick-prev,
.news-home .slick-next  {
    position: absolute;
    top: -72px;
    border: none;
    background: transparent;
    width: 41px;
    height: 25px;
    padding: 0;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    /*background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;*/
}

.books-home .slick-prev,
.news-home .slick-prev {
    /*background-image: url('../images/arrow-left.svg') ;*/
    right: 58px;
}

.books-home .slick-next,
.news-home .slick-next {
    /*background-image: url('../images/arrow-right.svg') ;*/
    right: 10px;
}
/************************ 5 - NEWSLETTER **************************/

.newsletter {
    margin-bottom: 120px;
    margin-top: 160px;
}

.newsletter .nl-content {
    padding-top: 80px;
    border-top: 2.4px solid var(--accent_primary);
}

.newsletter .nl-content  h2 {
    color: var(--accent_primary);
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter .nl-content p {
    font-weight: 300;
    font-family: "Generator Light";
    color: var(--dark_grey);
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 24px;
}


/************************ 6 - ARTISTAS **************************/

.artists-list .col-lg-3 {
    margin-bottom: 60px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.artists-list .col-lg-3:hover {
    cursor: pointer;
    opacity: 0.8;
}

.artists-list h2 {
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    margin-bottom: 0;
    margin-top: 20px;
}

.artists-list .photo {
    width: 100%;
    background-color: var(--interface_disabled_strok);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.artists-list .photo:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/************************ 6 - EXPOSICOES/PROJECT ROOM/FEIRAS/NOTICIA DETALHE/BOOK DETALHE **************************/
.exhibitions .col-lg-9 {
    /*padding-top: 80px;*/
}

.row.exhibition.d-lg-none {
    padding-bottom: 85px;
}

.exhibitions .current-expo-div {
    padding-bottom: 80px;
    margin-bottom: 30px;
    border-bottom: 1.2px solid var(--interface_dividers);
    display: block;
}

.exhibitions .current-expo {
    width: 100%;
    height: 635px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.carousel .current-expo {
    height: 100%!important;
}

.exhibitions .current-expo .expo-info {
    position: absolute;
    top: 60px;
    left: 80px;
    max-width: 36%;
}

.exhibitions .current-expo .expo-info h3 {
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}       

.exhibitions .current-expo .expo-info p {
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.exhibitions .current-expo:hover h3,
.exhibitions .current-expo:hover p {
    color: var(--accent_primary);
}


.exhibitions .current-expo .expo-date {
    position: absolute;
    bottom: 145px;
    left: 80px;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
}

.exhibitions .expo-list h2 {
    font-size: 32px;
    line-height: 37px;
    color: var(--txt_primary);
    margin-bottom: 40px;
    text-transform: lowercase;
}

.exhibitions .expo-list .col-md-4 {
    margin-bottom: 60px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.expo-list .col-md-4:hover {
    cursor: pointer;
    opacity: 0.8;
}

.current-expo:hover {
    cursor: pointer;
    /*opacity: 0.8;*/
}

.exhibitions .expo-list .img {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.exhibitions .expo-list .img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.exhibitions .expo-list .img  .pr-type {
    position: absolute;
    bottom: 10px;
    left: 15px;
    max-width: calc(100% - 30px);
    color: var(--txt_primary);
    font-size: 16px;
    line-height: 18px;
}

.exhibitions .expo-list h3 {
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    margin-top: 20px;
    margin-bottom: 10px;
}


.exhibitions .expo-list .artists {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    font-family: "Generator Light";
    color: var(--txt_primary);
    margin-bottom: 10px;
}

.exhibitions .expo-list .date {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    font-family: "Generator Light";
    color: var(--txt_primary);
    margin-bottom: 0px;
}

.exhibitions .expo-list .main-btn {
    margin-top: 20px;
    margin-bottom: 80px;
}

/* EXPOSICAO */
.exhibition .expo-details.order-lg-1 {
    padding-right: 40px;
}

.exhibition .expo-details .page-title {
    font-size: 20px;
    line-height: 23px;
    color: var(--txt_primary);
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 1.2px solid var(--interface_stroke);
    text-transform: lowercase;
}

.exhibition .expo-details h1 {
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: none;
}

.exhibition .expo-details ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.exhibition .expo-details ul a {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    text-decoration: none;
    margin-bottom: 20px;
    cursor: pointer;
}

.exhibition .expo-details ul li {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    text-decoration: none;
}

.exhibition .expo-details .date {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    margin-bottom: 20px;
}

.exhibition .expo-details .date a {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
}

.exhibition .expo-details .expo-description {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
}

.exhibition .expo-details .location {
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
}

.exhibition .expo-details .book_author {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
    color: var(--txt_primary);
    display: block;
}

.exhibition .expo-details .book_price {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
    color: var(--txt_primary);
}

.exhibition .expo-details .book_description,
.exhibition .expo-details .book_description p,
.exhibition .expo-details .book_description span,
.exhibition .expo-details .book_dimenssions {
    font-weight: 300!important;
    font-family: "Generator Light"!important;
    font-size: 16px!important;
    line-height: 22px!important;
    color: var(--txt_primary)!important;
}

.exhibition .expo-details .book_description,
.exhibition .expo-details .book_dimenssions {
    margin-bottom: 20px;
}

.exhibition .expo-details .sec-btn {
    margin-top: 40px;
    padding-right: 40px;
}

.exhibition.book-detail .expo-details .sec-btn {
    margin-top: 60px;
}


.exhibition .expo-details .sec-btn.pr-0 {
 padding-right: 14px!important;   
}

.exhibition-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.exhibition .exhibition-img img {
    max-width: 100%;
    max-height: 635px;
    height: auto;
    width: auto;
}



/************************ 7 - LISTAGEM DE NOTICIAS **************************/
.news-highlighted .carousel-item {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-highlighted .carousel-item:hover {
    opacity: 0.8;
    cursor: pointer;
}
.news-highlighted .carousel-item .img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 630px;
    height: 70vh;
}

.news-highlighted h2 {
    font-size: 32px;
    line-height: 37px;
    color: var(--txt_primary);
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-highlighted h3 {
    font-size: 24px;
    line-height: 27px;  
    color: var(--txt_primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-highlighted .carousel-item:hover h2,
.news-highlighted .carousel-item:hover h3 {
    color: var(--accent_primary);
}

.news-highlighted .extra-info {
    position: absolute;
    bottom: 60px;
    width: calc(100% - 24px);
    height: auto;
    padding-bottom: 40px;
    left: 12px;
    border-bottom: 1.2px solid var(--interface_stroke);
}
.news-highlighted .extra-info p { 
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    color: var(--txt_primary);
}

.news-highlighted .slide .control-btns {
    position: absolute;
    bottom: 5px;
    display: flex;
    right: 10px;
    align-items: center;
    justify-content: space-between;
    width: calc(50% - 24px);
}

.news-highlighted .slide .next-slide,
.news-highlighted .slide .prev-slide {
    outline: none;
    background: transparent;
    border: none;
    width: 34px;
    height: 28px;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    /*background-position: center;
    background-size: contain;
    background-repeat: no-repeat;*/
}

/*.news-highlighted .slide .next-slide {
    background-image: url("../images/arrow-right.svg");
    margin-left: 15px;
}

.news-highlighted .slide .prev-slide {
    background-image: url("../images/arrow-left.svg");
}*/

.news-list {
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 1.2px solid var(--interface_dividers);
}

.artist .news-list { 
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 20px;
    border-top: none;
}

.news-list .col-md-4 {
    margin-bottom: 60px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-list .col-md-4:hover {
    cursor: pointer;
    opacity: 0.8;
}

.news-list .img {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.news-list .img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.news-list h3 {
    color: var(--txt_primary);
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.news-list p {
    color: var(--txt_primary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    font-family: "Generator Light";
    margin-bottom: 5px;
}

.inquire-div {
    padding-bottom: 60px;
}

.inquire-div img {
    max-width: 100%;
    max-height: 500px;
    margin: 0;
    height: auto;
    width: auto;
}

.inquire-div h2 {
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    margin-top: 20px;
    margin-bottom: 10px;
}


.inquire-div p {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    margin-bottom: 5px;
}

.inquire-div .btn-submit {
    margin-bottom: 50px;
}

.inquire-success {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.25);
}

.inquire-success .bg-white {
    width: 474px;
    height: 225px;
    position: fixed;
    top: calc(50% - 112px);
    right: calc(50% - 237px);
    background-color: white;
    z-index: 1001;
}

.inquire-success .bg-white .d-block {
    padding: 80px 40px;
}

.inquire-success .bg-white h2 {
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    margin-bottom: 10px;
}


.inquire-success .bg-white p {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0px;
    color: var(--txt_primary);
}

.inquire-success .close-layer {
    top: 25px;
    right: 25px;
}

/************************ 8 - CONTACTOS **************************/

.internal-page .footer-contacts {
    padding-top: 0;
}

.map {
    margin-top: 60px;
    width: 100%;
    height: 430px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.map img {
    width: 100%;
    height: auto;
}


/************************ 9 - GALERIA **************************/
.gallery1  {
    margin-bottom: 180px;
}

.gallery1 .bg-img {
    width: 100%;
    height: 310px;
    background-color: #FFFFFF;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery1 .bg-img img {
    max-width: 100%;
    max-height: 310px;
    width: auto;
    height: auto;
    margin: auto;
}   

.gallery1 p {
    position: absolute;
    bottom: 0;
    max-width: 400px;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
}

.gallery2 p {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    margin-bottom: 14px;
}

.gallery2 .slide .carousel-item {
    width: 100%;
    height: 535px;
    background-color: #E7E7E7;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery2 .slide .control-btns {
    position: absolute;
    bottom: -40px;
    display: flex;
    right: 24px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    left: 10px;
}

.gallery2 .slide .next-slide,
.gallery2 .slide .prev-slide {
    outline: none;
    background: transparent;
    border: none;
    width: 34px;
    height: 28px;
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 24px;
    line-height: 27px;
    color: var(--txt_primary);
    /*background-position: center;
    background-size: contain;
    background-repeat: no-repeat;*/
}

/*.gallery2 .slide .next-slide {
    background-image: url("../images/arrow-right.svg");
    margin-left: 15px;
}

.gallery2 .slide .prev-slide {
    background-image: url("../images/arrow-left.svg");
}*/


/************************ 10 - BOOKS **************************/
.books .books-list {
   border-top: 1.2px solid var(--interface_dividers); 
   padding-top: 30px;
}

.books-list select {
    position: relative;
    width: 100%;
    padding: 16px 35px 16px 14px;
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 21px;
    border: 1.2px solid var(--interface_dividers);
    background-color: transparent;
    margin-bottom: 40px;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.books-list select:hover {
    background-color: var(--interface_hover);
}

.books-list .select-wrapper:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/arrow-down2.svg');
    right: 20px;
    top: 23px;
}

.books-list .col-md-3,
.books-list .col-md-4 {
    margin-bottom: 60px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.books-list .col-md-4:hover {
    opacity: 0.8;
    cursor: pointer;
}

.books-list .main-btn {
    margin-top: 20px;
}

.books-list .img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-size: contain;
    background-size: auto 100%;*/
    width: 100%;
    position: relative;
}
.books-list .img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.books-list h2 {
    margin-bottom: 0px;
    font-size: 32px;
    line-height: 30px;
    font-weight: 500;
    color: var(--txt_primary);
    margin-bottom: 40px;
}

.books-list h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
}

.books-list .author {
    margin-bottom: 10px;
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
}

.books-list .price {
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}


/************************ 11 - ARTISTA **************************/
.internal-page.artist h1 {
    text-transform: none;
}

.biography p,
.biography_text p,
.biography_text span,
.biography_text div,
.biography_text a,
.biography_text blockquote {    
    font-weight: 300!important;
    font-family: "Generator Light"!important;
    font-size: 18px!important;
    line-height: 24px!important;
    color: black!important;
}

.biography_text {
    margin-bottom: 50px;
}


.cv-link {
    color: var(--txt_primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding: 10px 30px 10px 14px;
    text-decoration: none;
    cursor: pointer; 
    max-width: 170px;
}

.artist .side-menu .active {
    font-family: "Generator";
    font-weight: 500;
}

.works-list .col-12 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.works-list .col-12:hover {
    opacity: 0.8;
    cursor: pointer;
}

.works-list .work-img {
    position: relative;
} 

.works-list .work-img .badge {
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 15px;
    right: 15px;
    box-shadow: 0px 0px 12px rgba(106, 16, 19, 0.25);
    -webkit-box-shadow: 0px 0px 12px rgba(106, 16, 19, 0.25);
    -moz-box-shadow: 0px 0px 12px rgba(106, 16, 19, 0.25);
    background-color: var(--bg_white);
    border-radius: 50%;
    font-size: 20px; 
    font-weight: 500;
    color: var(--txt_primary);
}

/*.works-list .work-img .badge::after {
    content: '';
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    width: 28px;
    top: 0;
    left: 0;
    height: 28px;
    background-image: url('../images/plus.svg');
}*/


.works-list img {
    width: 100%;
    height: auto;
}

.works-list h2 {
    color: var(--txt_primary);
    font-size: 20px;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.works-list .name {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    margin-bottom: 10px;
}

.works-list .description,
.works-list .description p {
    color: var(--txt_primary)!important;
    font-weight: 300!important;
    font-family: "Generator Light"!important;
    font-size: 16px!important;
    line-height: 22px!important;
    margin: 0px!important;
}

.works-list .dimenssions {
    color: var(--txt_primary);
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 16px;
    line-height: 22px;
    margin: 0px;
}

.works-list .col-md-4 {
    margin-bottom: 60px;
    cursor: pointer;
}

.works-list .main-btn {
    margin-top: 20px;
}

.single-work {
    width: 100vw;
    height: 0;	
    min-height: 0;
    height: auto;
    background-color: white;
    position: fixed; 
    overflow-y: auto;
    inset: 0;
    top: 100vh;
    z-index: 1000;
    padding-top: 170px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.single-work.slide-up {
    top: 0;
    height: 100%;
    min-height: 100vh;
}


.single-work h1 {
    font-size: 32px;
    line-height: 37px;
    color: var(--txt_primary);
    margin-bottom: 40px;
}

.single-work h2 {
    font-size: 20px;
    line-height: 28px;
    color: var(--txt_primary);
    margin-bottom: 10px;
}

.single-work .author {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    font-family: "Generator Light";
    color: var(--txt_primary);
    margin-bottom: 10px;

}

.single-work .description,
.single-work .dimenssions {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    font-family: "Generator Light";
    color: var(--txt_primary);
    margin-bottom: 0px;
}

.single-work .work-info {
    padding-bottom: 210px;
    border-bottom: 1.2px solid var(--interface_dividers);
}

.single-work .inquire-btn {
    margin-top: 30px;
}

.single-work .work-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.single-work .work-img img {
    max-width: 100%;
    max-height: 635px;
    height: auto;
    width: auto;
}

.single-work .work-description {
    font-weight: 300;
    font-family: "Generator Light";
    font-size: 18px;
    line-height: 24px;
    color: var(--txt_primary);
    padding-bottom: 0px;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 0;
}

.single-work .close-btn {
    position: absolute;
    top: 87px;
    right: 87px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-image: url('../images/icons/x.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1000;
    /*-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
}

.single-work .close-btn:hover {
    /*opacity: 0.8;*/
    filter: invert(16%) sepia(93%) saturate(5772%) hue-rotate(351deg) brightness(94%) contrast(85%);
}


.artist .news-list h3 {
    font-size: 20px;
}


/*CONTACTS*/
.mapouter{
    position:relative;
    text-align:right;
    height:430px;
    width:100%;
}
.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:430px;
    width:100%;
}

/*COOKEIS*/
.cookies-bottom {
    min-height: 120px;
    padding-top: 38px;
    padding-bottom: 38px;
    border-top: 1.2px solid var(--interface_dividers);
    background-color: white;
    position: fixed;
    bottom: 0;
    width: 100vw;
}

.cookies-bottom h2 {
    font-size: 16px;
    line-height: 18px;
    color: black;
    font-weight: 500;
    margin-bottom: 5px;
}

.cookies-bottom p {
    font-family: "Generator Light";
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}

.modal-content {
    padding: 80px 65px 80px 40px;
    border: 0;
    border-radius: 0;
}

#cookiesModal h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
    color: var(--txt_primary);
    text-transform: lowercase;
}

#cookiesModal p {
    font-family: "Generator Light";
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 36px;
    color: var(--txt_primary);
    text-transform: lowercase;    
}

#cookiesModal .form-check {
    margin-bottom: 16px;
    padding-top: 0;
}

#cookiesModal .cookie-description {
    margin-bottom: 26px;
    font-family: "Generator Light";
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: var(--txt_primary);
    text-transform: none;
}

#cookiesModal .modal-content {
    display: block;
    position: relative;
}

#cookiesModal .main-btn {
    margin-top: 10px;
}


#cookiesModal .close-layer {
    top: 25px;
    right: 25px;
    width: 14px;
    height: 14px;
}




/************************ 12 - RESPONSIVE **************************/


/*@media (max-width: 1200px) {
    .news-home .new-img,
    .books-home .book-img,
    .artists-list .photo,
    .exhibitions .expo-list .img,
    .books-list .img,
    .artist .news-list .img,
    .news-list .img {
        height: 250px;
    }
}*/


@media (min-width: 576px) {
    .modal-dialog {
        max-width: 632px;
    }
}

@media (min-width: 1440px) {
    .container-fluid {
        max-width: 1280px;
        padding-left: 0!important;
        padding-right: 0!important;
    }
}


@media (max-width: 992px) {
    .mt-60 {
        margin-top: 60px;
    }

    .header {
        padding-top: 16px;
        padding-bottom: 16px;
        height: 75px;
    }

    .header .container-fluid,
    .header .top-header {
        height: 100%;
    }

    .header.scroll-header {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    
    
    .header .main-link img {
        height: 45px;
        display: none;
    }

    .header .main-link h1 {
        display: block!important;
    }
    
    .header.scroll-header .main-link img {
        max-height: 45px;
        width: auto;
    }

    .exhibitions .col-lg-9 {
        padding-top: 00px;
    }

    .exhibitions .current-expo-div {
        padding-bottom: 60px;
    }

    /*.main-link h1 {
        display: block;
    }*/

    /*main {
        margin-top: 60px;
    }*/

    .banner {
        padding-top: 60px;
    }

    .container-fluid {
        padding-left: 40px!important;
        padding-right: 40px!important;
    }

    .header .container-fluid {
        padding-left: 24px!important;
        padding-right: 24px!important; 
    }

    /*.news-home .new-img,
    .books-home .book-img,
    .artists-list .photo,
    .exhibitions .expo-list .img,
    .books-list .img,
    .artist .news-list .img,
    .news-list .img {
        height: 238px;
    }*/

    .news-home {
        margin-bottom: 80px;
    }

    .books-home {
        padding-bottom: 75px;
        margin-bottom: 0;
    }

    .news-home h2,
    .books-home h2 { 
        font-size: 20px;
        line-height: 28px;
    }

    .news-home p, 
    .books-home p {
        font-size: 18px;
        line-height: 24px;
    }

    .newsletter {
        margin-top: 35px;
    }

    .artists-list .col-lg-3 {
        margin-bottom: 40px;
    }

    .side-menu {
        margin-bottom: 40px;
    }

    .biography {
        padding-left: 60px;
        max-width: 80%;
    }

    .single-work .work-description {
        margin-top: 60px;
        margin-bottom: 30px;
        max-width: 85%;
    }

    .single-work .work-info {
        padding-bottom: 0;
    }

    .single-work .inquire-btn {
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .single-work .close-btn {
        right: 67px;
        top: 67px;
    }

    .single-work {
        padding-top: 60px;
    }

    .exhibitions .current-expo {
        height: 565px;
    }
    .carousel .current-expo {
        height: 100%!important;
    }

    .exhibitions .current-expo .expo-info,
    .exhibitions .current-expo .expo-date {
        left: 80px;
    }
    
    
    .exhibitions .current-expo .expo-info {
        max-width: 70%;
    }

    .internal-page {
        padding-top: 120px;
        border-top: none;
    }

    .news-highlighted h2 {
        font-weight: 500;
    }

    .news-highlighted .slide .control-btns {
        width: calc(100% - 140px);
        bottom: 45px;
        right: 70px;
    }
    .news-highlighted .extra-info {
        bottom: 100px;
        width: calc(100% - 140px);
        left: 70px;
    }

    .news-list {
        margin-top: 60px;
    }
    
    .news-highlighted h3 {
        margin-bottom: 60px;
    }

    /*.news-highlighted .carousel-item .img {
        min-height: 850px;
    }*/

    .exhibition .expo-details {
        padding-right: 12px;
        padding-top: 20px;
        padding-bottom: 30px;

    }

    .exhibition .expo-details .expo-description {
        max-width: 80%;
    }


    .exhibition .expo-details .sec-btn.d-lg-none {
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .gallery1 p {
        position: relative;
        margin-top: 40px;
    }

    .gallery2 p {
        margin-top: 40px;
    }

    .gallery1 {
        margin-bottom: 60px;
    }

    .gallery2 .slide .carousel-item {
        height: 505px;
    } 
    
    .gallery1 .bg-img {
        height: 425px;
        background-position: center;
    }

    .close-layer {
        top: 65px;
        right: 50px;
    }

    .internal-page.img-top {
        padding-top: 60px;
    }

    .books-list select {
        margin-left: 0;
        margin-top: 40px;
    }

    .side-menu .years a {
        display: inline-block;
        margin-right: 80px;
        width: 74px;
    }

    .side-menu {
        padding-right: 12px;
    }
    
    .side-menu .more-years {
        display: inline;
    }

    .side-menu .years .more {
        display: none;
    }

    .map {
        margin-bottom: 120px;
        border-bottom: 1.2px solid var(--interface_dividers);
    }

    .news-highlighted .carousel-item:hover {
        opacity: 1;
    }

    .inquire-div #inquire-form {
        margin-top: 80px;
    }

    .single-work .artwork .row {
        padding-left: 25px;
        padding-right: 25px;
    }

    .single-work .inquire-div .row {
        padding-left: 90px;
        padding-right: 90px;
    }

    .inquire-success .bg-white {
        width: 368px;
        right: calc(50% - 184px);
    }

    .footer-contacts .social-media-list {
        height: calc(100% - 60px);
    }

    .side-menu .sticky-menu,
    .expo-details .sticky-menu {
        max-width: 100%;
        padding-top: 0;
    }

    .single-work .work-description {
        margin-right: 0;
        margin-left: 0;
    }

    .artwork .col-lg-9 {
        padding-top: 0px;
        margin-bottom: 0;
    }

    .artwork .fixed {
        position: relative;
    }

    .gallery2 {
        margin-bottom: 120px;
    }

    .footer-contacts h2 {
        margin-bottom: 20px;
    }

    .footer-contacts {
        padding-bottom: 60px;
    }

    footer .footer-contacts {
        padding-bottom: 80px;
    }
 
    .map {
        height: 570px;
    }

    /*.mt-60 {
        margin-top: 0;
    }*/

    .txt-red {
        color: var(--accent_primary)!important;
    }


    .sm-icon.facebook.d-block,
    .sm-icon.linkedin.d-block {
        margin-left: 0px;
    }

    .sm-icon.facebook.d-block,
    .sm-icon.instagram.d-block {
        margin-bottom: 10px;
    }

    .sm-icon span {
        font-weight: 300;
        font-size: 18px;
        line-height: 24px;
        color: var(--txt_primary);
        font-family: "Generator Light";
    }


    .books-list .select-wrapper::after {
        top: 63px;
    }

    

    .books .banner .slide .carousel-item .carousel-info {
        width: 80%;
        left: 10%;
    }

    .books .banner {
        margin-bottom: 60px;
    }

    .internal-page.books,
    .internal-page.news {
        padding-bottom: 85px;
    }

    .header.scroll-header .top-header:after {
        bottom: -16px;
    }

    .expo-details .sticky-menu .col-md-10 div,
    .expo-details .sticky-menu .col-md-10 h1,
    .expo-details .sticky-menu .col-md-10 h2
    .expo-details .sticky-menu .col-md-10 h3,
    .expo-details .sticky-menu .col-md-10 h4,
    .expo-details .sticky-menu .col-md-10 h5,
    .expo-details .sticky-menu .col-md-10 h6,
    .expo-details .sticky-menu .col-md-10 p,
    .expo-details .sticky-menu .col-md-10 a,
    .expo-details .sticky-menu .col-md-10 button,
    .expo-details .sticky-menu .col-md-10 span {
        max-width: 80%;
    }

    .expo-details .sticky-menu .col-md-10 .page-title {
        max-width: 100%;
    }

    /*.single-work h2 {
        margin-top: 40px;
    }*/

    .form-check {
        margin-bottom: 50px;
    }

    .inquire-div .small-txt {
        margin-top: 0;
    }


    .single-work .position-fixed {
        position: relative!important;
    }

    

    .exhibition .expo-details.order-lg-1 { 
        padding-right: 12px;
    }


    .sm-icon {
        width: 16px;
        height: 16px;
    }

    .footer-contacts {
        border-bottom: none;
    }

    .map {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .footer-contacts.d-lg-none {
        border-top: 1.2px solid var(--interface_dividers);
        padding-top: 60px;
    }

    
    .mapouter{
        height:570px;
    }
    .gmap_canvas {
        height:570px;
    }
    
    
    .gallery2 .slide .control-btns {
        left: 8px;
    }

}

@media (max-width: 767px) {

    
    .mt-60 {
        margin-top: 40px;
    }

    .footer-supports h2 {
        margin-bottom: 30px;
    }

    .design-develop {
        margin-bottom: 10px;
    }

    .footer-supports{
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .footer-contacts {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .biography {
        padding-left: 0;
        max-width: 100%;
    }

    .exhibitions .expo-list .col-md-4,
    .books-list .col-md-3, 
    .books-list .col-md-4,
    .news-list .col-md-4 {
        margin-bottom: 40px;
    }

    .single-work .work-description {
        margin-top: 40px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .single-work .inquire-btn {
        margin-bottom: 40px;
    }

    .single-work .close-btn { 
        top: 24px;
        width: 12px;
        height: 12px;   
    }

    .exhibitions .current-expo-div {
        border-bottom: none;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .gallery1 p,
    .gallery2 p {
        max-width: 100%;
        padding-left: 0px;
    }

    .newsletter-layer .col-md-5 {
        margin-bottom: 45px;
    }

    .close-layer {
        top: 65px;
        right: 25px;
    }

    .newsletter-layer .col-md-5 p {
        max-width: 85%;
    }

    .internal-page {
        padding-top: 100px;
    }

    .exhibition .expo-details .expo-description {
        max-width: 100%;
    }

    .books-list select { 
        border-left: none;
        border-right: none;
        margin: 0;
    }

    .books-list #filter-artist {
        margin-top: 30px;
    }

    
    .books-list #filter-year {
        margin-bottom: 40px;
        border-top: none;
    }

    .side-menu .years a {
        margin-right: 70px;
    }

    
    .news-home .col-4 {
        padding: 10px;
    }

    .single-work .artwork .row {
        padding-left: 0px;
        padding-right: 0px;
    }

    .single-work .inquire-div .row {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-contacts .link-map {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-contacts .social-media-list {
        height: 40px;
    }

    .newsletter .nl-content {
        padding-top: 40px;
    }

    .newsletter .nl-content p {
        margin-bottom: 40px;
    }

    .newsletter {
        margin-bottom: 80px;
    }

    .news-home h2, .books-home h2 {
        font-size: 26px;
    }

    .news-home h3 {
        font-size: 20px;
    }

    .news-home h2, .books-home h2 {
        margin-bottom: 20px;
    }

    .news-home {
        margin-bottom: 60px;
    }

    .artists-list h2 {
        font-size: 18px;
    }

    .artists-list .col-lg-3 {
        margin-bottom: 30px;
    }

    
    .biography p{   
        padding-right: 0;
    }

    .expo-list h2 {
        padding-top: 20px;
        border-top: 1.2px solid var(--interface_dividers);
    }

    .exhibitions .side-menu {
        margin-bottom: 60px;
    }

    .exhibitions .side-menu.br-bt {
        padding-bottom: 60px;
        margin-bottom: 20px;
        position: relative;

    }

    .exhibitions .side-menu.br-bt::after {
        position: absolute;
        content: '';
        bottom: 0;
        width: calc(100% - 24px);
        left: 12px;
        height: 1.2px;
        background-color: var(--interface_dividers);
    }

    .exhibitions .expo-list h2 {
        margin-bottom: 30px;
    }

    .exhibitions .expo-list .artists {
        margin-bottom: 5px;
    }

    .exhibition .expo-details .page-title {
        padding-bottom: 10px;
    }

    .exhibition .expo-details h1 {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .exhibition .expo-details .date {
        margin-bottom: 40px;
    }

    .exhibition .expo-details .sec-btn {
        margin-top: 30px;
    }

    .gallery2 {
        margin-bottom: 100px;
    }

    .internal-page h1 {
        margin-bottom: 30px;
    }

    .gallery1 p {
        margin-top: 20px;
    }

    .gallery2 .slide .control-btns {
        justify-content: space-between;
        right: 0;
        padding-left: 0;
        padding-right: 0;
        left: 0;
    }

    
    .map {
        height: 255px;
        margin-bottom: 80px;
    }

    
    .books-list .select-wrapper::after {
        top: 53px;
    }

    .books-list .select-wrapper.secound::after {
        top: 23px;
    }

    .internal-page.books,
    .internal-page.news {
        padding-bottom: 65px;
    }

    .main-link h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .header {
        padding-top: 8px;
        padding-bottom: 8px;
        height: 60px;
    }

    .internal-page.books {
        padding-top: 0;
    }

    .books .banner .slide .carousel-item .carousel-info {
        padding-bottom: 40px;
        width: calc(100% - 40px);
        left: 20px;
    }


    .books .banner .slide .carousel-item .carousel-info .sec-btn2 {
        bottom: -58px;
    }

    .books-list h2 {
        font-size: 26px;
    }

    .books .banner {
        margin-bottom: 40px;
    }

    .news-highlighted h3 {
        margin-bottom: 20px;
    }

    .news-highlighted .extra-info p {
        margin-bottom: 0;
    }

    .news-highlighted .extra-info {
        padding-bottom: 20px;
    }

    .news .news-list {
        margin-top: 40px;
        padding-top: 30px;
    }

    .news .news-list .sec-btn {
        margin-top: 15px;
    }

    .expo-details .sticky-menu .col-md-10 {
        max-width: 100%;
    }

    .exhibition .expo-details .book_author {
        margin-bottom: 10px;
    }

    .row.exhibition.d-lg-none {
        padding-bottom: 65px;
    }

    .close-layer {
        background-size: 12px 12px;
    }

    .newsletter-form .col-md-5 p {
        font-size: 18px;
        font-weight: 300;
        font-family: "Generator Light";
        margin-bottom: 0;
    }

    .single-work h2 {
        font-size: 18px;
    }

    .inquire-div p {
        font-size: 14px;
    }
    
    .single-work .inquire-div h2 {
        margin-top: 0!important;
    }

    .internal-page.artist h1 {
        font-size: 26px;
    }

    .works-list h2,
    .works-list .name,
    .works-list .description,
    .works-list .dimenssions {
        padding-left: 10px;
        padding-right: 10px;
    }

    .works-list .col-md-4 {
        margin-bottom: 40px;
    }

    .artist .news-list .col-12 .sec-btn {
        margin-top: 15px!important;
    }

    .artist .news-list .col-12 h3,
    .artist .news-list .col-12 p {
        padding-left: 10px;
        padding-right: 10px;
    }

    
    .artist .news-list .col-12 .sec-btn {
        margin-left: 10px;
        margin-right: 10px;
    }

    .biography p {
        margin-bottom: 30px;
    }

    .biography .col-12 {
        padding: 0!important;
    }

    
    .books-home .slick-prev,
    .books-home .slick-next,
    .news-home .slick-prev,
    .news-home .slick-next  {
        top: -50px;
    }

    .artwork .col-lg-9.order-1 {
        margin-bottom: 0;
    }

    .single-work .work-img {
        margin-bottom: 40px;
    }

    .mapouter{
        height:255px;
    }
    .gmap_canvas {
        height:255px;
    }
    
    .gallery1 .bg-img {
        height: 330px;
    }

}

@media (max-width: 575px) {
    /*.news-home .new-img,
    .books-home .book-img,
    .artists-list .photo {
        height: 162px;
    }*/

    .container-fluid {
        padding-left: 20px!important;
        padding-right: 20px!important;
    }

    .header .container-fluid {
        padding-left: 12px!important;
        padding-right: 12px!important; 
    }

    /*.exhibitions .expo-list .img,
    .books-list .img,
    .artist .news-list .img,
    .news-list .img {
        height: 335px;
    }*/

    .books-list .col-lg-3.col-md-4.col-6 .img {
        height: 161px;
    }

    .single-work .close-btn {
        right: 27px;
    }

    .exhibitions .current-expo {
        width: 100vw;
        left: -32px;
    }

    .exhibitions .current-expo .expo-info {
        top: auto;
        left: 50px;
        bottom: 90px;
        max-width: calc(100vw - 50px);
    }

    .exhibitions .current-expo .expo-date {
        left: 50px;
        bottom: 45px;
    }

   /* .news-highlighted .carousel-item .img {
        height: 560px;
    }*/

    .news-highlighted {
        width: 100vw!important;
        margin-left: -20px!important;
    }

    .news-highlighted .slide {
        padding-left: 0;
        padding-right: 0;
    }

    .news-highlighted .extra-info{
        left: 20px;
        width: calc(100% - 40px);
    }

    .news-highlighted .slide .control-btns {
        width: calc(100vw - 50px);
        bottom: 35px;
        right: 25px;
    }

    .news-highlighted .extra-info {
        bottom: 80px;
    }

    .news-highlighted .col-12 {
        padding-right: 0!important;
        padding-left: 0!important;
    }

    .exhibition .order-1 .exhibition-img img {
        max-width: 100vw;
    }

    .exhibition .expo-details {
        padding-top: 10px;
    }

    .banner .slide {
        width: 100vw;
        margin-left: -20px;
    }

    .banner .slide .carousel-item .carousel-info {
        left: 20px;
        width: calc(100% - 50px);
        padding-bottom: 40px;
        bottom: 85px;
    }

    .banner {
        margin-bottom: 40px;
    }

    .banner .slide .control-btns {
        right: 22px;
        width: calc(100% - 42px);
        bottom: 30px;
        /*padding-right: 10px;*/
    }

    .banner .slide .carousel-item .carousel-info p {
        font-size: 20px;
    }

    .banner .slide .carousel-item .carousel-info h2 {
        font-size: 24px;
    }

    .books .banner .slide .carousel-item .carousel-info h2 {
        font-size: 26px;
    }

    
    .gallery2 .slide .carousel-item {
        height: 250px;
    } 
    
    
    .gallery1 .bg-img {
        height: 225px;
    }

    .newsletter-success h2 {
        font-size: 20px;
    }
    
    .newsletter-success p {
        font-size: 18px;
        font-weight: 300;
        font-family: "Generator Light";
    }


    .books-home .slick-list,
    .news-home .slick-list {
        padding-right: 40%;
    }

    /*.books-home .slick-slider {
        width: 100vw;
    }*/


    .artist .side-menu {
        /*min-width: 100vw;
        margin-left: -8px;*/
        padding: 0;
    }

    main .footer-contacts .d-sm-flex.d-block a{
        display: block;
        margin-left: 0;
        margin-bottom: 20px;
        width: 18px;
        height: 18px;
    }

    main .footer-contacts .d-sm-flex.d-block a span {
        padding-left: 25px;
        font-weight: 300;
        font-family: "Generator Light";
        font-size: 18px;
        line-height: 21px;
        color: var(--txt_primary);
        text-transform: lowercase;
    }

    .inquire-success .bg-white {
        width: 295px;
        right: calc(50% - 142px);
    }

    .inquire-success .bg-white .d-block {
        padding: 60px 20px 60px 30px;
    }

    /*.banner .slide .prev-slide {
        margin-right: 12px;
    }*/

    
    .side-menu .sticky-menu, .expo-details .sticky-menu {
        max-width: calc(100vw - 40px);
        /*padding-left: 10px;*/
    }

    .exhibitions .expo-list h2 {
        margin-bottom: 26px;
    }


    .side-menu .years a {
        margin-right: 40px;
    }
}

@media (max-width: 394px) {
    .side-menu .years a {
        margin-right: 25px;
    }
}