/* MAIN */

* {-webkit-transition: all 0.4s;-moz-transition: all 0.4s;-ms-transition: all 0.4s;-o-transition: all 0.4s;transition: all 0.4s;}
body, input {/*-webkit-font-smoothing: antialiased;*/font-variant-ligatures: no-common-ligatures;font-family: 'Lato', sans-serif;}

#main {margin-top: 116px;}

@media (max-width: 768px) {
    #main {margin-top: 56px;}
}

/* TITLES */

h1, h2, h3, h4, h5 {}

@media (max-width: 768px) {
   h1 {font-size: 1.8rem !important;}
   .subtitle{font-size: 120% !important;}
}

/* TEXT */

.textXS{font-size: 60%;}
.textS, small{font-size: 70%;}
.textSM{font-size: 80%;}
.textM{font-size: 90%;}
.textMM{font-size: 110%;}
.textML{font-size: 120%;}
.textL{font-size: 140%;}
.textXL{font-size: 160%;}
.textXXL{font-size: 185%;}
.textXXXL{font-size: 200%;}
.textExtra{font-size: 300%;}

.thin {font-weight: 300;}
.medium {font-weight: 400;}
strong, .strong, b {font-weight: 700;}

.lineHeightS {line-height: 1.2em;}
.lineHeightM {line-height: 1.5em;}
.lineHeightMM {line-height: 1.7em;}
.lineHeightL {line-height: 2em;}
.whiteSpace {white-space: pre;}
.letterSpacingM {letter-spacing: 1.3px;}
.letterSpacingL {letter-spacing: 2px;}

.shadowText{text-shadow: 1px 1px 4px #000000;}

/* COLOURS */

.bg-grey-10 {background-color: rgba(0,0,0,0.10);}
.bg-grey-20 {background-color: rgba(0,0,0,0.20);}
.bg-grey-30 {background-color: rgba(0,0,0,0.30);}
.bg-grey-40 {background-color: rgba(0,0,0,0.40);}
.bg-grey-50 {background-color: rgba(0,0,0,0.50);}
.bg-grey-60 {background-color: rgba(0,0,0,0.60);}
.bg-grey-70 {background-color: rgba(0,0,0,0.70);}
.bg-grey-80 {background-color: rgba(0,0,0,0.80);}
.bg-grey-90 {background-color: rgba(0,0,0,0.90);}
.bg-black {background-color: #000;}

.text-grey-10 {color: rgba(0,0,0,0.10);}
.text-grey-20 {color: rgba(0,0,0,0.20);}
.text-grey-30 {color: rgba(0,0,0,0.30);}
.text-grey-40 {color: rgba(0,0,0,0.40);}
.text-grey-50 {color: rgba(0,0,0,0.50);}
.text-grey-60 {color: rgba(0,0,0,0.60);}
.text-grey-70 {color: rgba(0,0,0,0.70);}
.text-grey-80 {color: rgba(0,0,0,0.80);}
.text-grey-90 {color: rgba(0,0,0,0.90);}
.text-black {color: #000;}

.mainColor{color: #452b5e;}
.mainColorB{background-color: #452b5e;}

.secondColor{color: #f7a719;}
.secondColorB{background-color: #f7a719;}

.greyColor {color:#b9b9b9;}
.greyColorMedium {color:#8c8c8c}

/* BORDERS */

.boder_box_white {border:solid 5px #fff;}

.border_top_grey {border-top:solid 8px #999;}
.border_left_grey {border-left:solid 8px #999;}
.border_top_lightgrey {border-top:solid 8px #D9D9D9;}
.border_top_main {border-top:solid 8px #452b5e;}
.border_top_second {border-top:solid 8px #f7a719;}

.border_left_main{border-left:solid 8px #452b5e;}

/* GRID */
.changeCol{
    height: 345px;
}

.fixedHeight{
    height: 225px;
}

.fixedHeight_fl{
    height: 350px;
}

.fichaHeight {
    height: 310px;
}

@media (max-width: 576px) {
   .changeCol{height: auto;}
   .fichaHeight {height: auto;}
   .fixedHeight_fl{height: auto;}
}

@media (max-width: 767px) {
   .fichaHeight {height: auto;}
}

@media (min-width: 767px) and (max-width: 992px)  {
    .fichaHeight {height: 350px;}
}

@media (min-width: 992px) {
   .changeCol{ height: auto;}
}


/* EFFECTS */
.grey_image{
    filter: grayscale(100%);
}

.tint-deg {
    position: relative;
}

.tint-deg:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(69,43,94);
    background: linear-gradient(60deg, rgba(69,43,94,1) 0%, rgba(69,43,94,0.7203256302521008) 41%, rgba(69,43,94,0.3) 67%);
    }

.tint {
    position: relative;
}

.tint:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(69,43,94, 0.5);
    transition: all 0.3s linear; opacity: 0
    }

.tint:hover:before  {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(69,43,94, 0.5);
    opacity: 1;
}

 a.bg-light:hover{
    background-color: #dae0e5a1!important;
}

.plusText {
    opacity: 0;
}

.ficha:hover .plusText {
    opacity: 1;
}

.animate {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@media (min-width: 1200px) {
    .container {max-width: 960px;}
}

@media (min-width: 576px) and (max-width: 1499.98px) {
    .container-custom { width: 100%;max-width: 100%;padding-right: 15px;padding-left: 15px;margin-right: auto;margin-left: auto;}
}

@media (min-width: 1500px) {
    .container-custom {max-width: 1350px;}
}

.brighten  {
    filter: brightness(100%);
    text-decoration: none;
    cursor: pointer;
}

.brighten:hover {
    filter: brightness(115%);
    text-decoration: none;
    cursor: pointer;
}

.trans  {
    opacity: 1;}
 
.trans:hover {
    opacity: .8;
}

.brightenSlick  {
    filter: brightness(100%);
}

.brightenSlick:hover {
    filter: brightness(120%);
}

a{
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /*word-break: break-all;*/
  word-break: break-word;
  -ms-hyphens: none;
  -moz-hyphens: none;
  -webkit-hyphens: none;
  /*hyphens: auto;*/
}

a.noeffect, .breadcrumbs a{color: inherit;}
a.noeffect:hover, .breadcrumbs a:hover {color: inherit;text-decoration: none;}

a.noneeffect{text-decoration: none;}

a.effect{color: inherit; text-decoration: underline;}
a.effect:hover{color: inherit;text-decoration: none;}

#post a, .contactC a {
    color: #452b5e !important;
    text-decoration: underline;
    font-weight: bold;
}

#post a:hover, .contactC a:hover {
    text-decoration: none;
}

img {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#post img{
    max-width: 100%;
    height: auto;
    width: 100%;
    padding: 1rem 0px;
}

#post h2, #post h3 {
    font-size: larger;
    color: #452b5e;
    font-weight: bold;
    padding-top: 1rem;

}

.grow {transition: all .2s ease-in-out;transform: scale(1); }
.grow:hover { transform: scale(1.2); }
.growS { transition: all .2s ease-in-out; }
.growS:hover { transform: scale(1.05); }
.jump{transition: all .2s ease-in-out;}
.jump:hover {transform: translate(5px,0);transition: all .2s ease-in-out;}

.p-relative {position: relative;}
.p-absolute {position: absolute;}
.overF {overflow: hidden;}

.embed-container {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    /*margin: 8px 0 12px;*/
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.wp-video { width: 100% !important }
.wp-video video { width: 100% !important; height: 100% !important; }

.btn.focus, .btn:focus {
    box-shadow: 0 0 0 0.1rem rgba(255,255,255,.25) !important;
}


iframe {
    border: 0px !important;
}

.rowAdjust {
    margin-right: -15px;
    margin-left: -15px;
}

/* ********************** NAVBAR *********************** */

/*
.dropdown:hover>.dropdown-menu {
  display: block;
}
*/

.dropdown-item {
    padding: .35rem 1.5rem;
}

@media (min-width: 768px){
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
        padding-bottom: .5rem;
    }
}

@media (max-width: 576px){
    .dropdown>.dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        border: none;
        text-align: right;
        padding: .3rem 0;
        margin: 0;
        border-top: solid 1px #ddde;
    }
    .dropdown-toggle{
        text-align: right;
    }
    li#menu-item-177 {
        position: absolute;
        bottom: 0px;
        width: 33%;
    }
    li#menu-item-176 {
        position: absolute;
        bottom: 0px;
        width: 23%;
    }
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    // pointer-events: none;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #452b5e;
}
.dropdown-item.active, .dropdown-item:active {
    color: #452b5e;
    text-decoration: none;
    background-color: #fff;
}

.dropdown-menu {
    border-radius: 0px;
    font-size: 0.9rem;
    top:95%;
}

.navbar-light .navbar-nav .nav-link {
    color: #452b5e;
}

.navbar-light .navbar-nav .active>.nav-link{
   color: rgba(0,0,0,.5);
}

.nav-link {
    padding: 0 .8rem;
}

@media (max-width: 768px) {
    .nav-link {
        display: block;
        padding: .5rem 1rem !important;
    }
}

.navbar-light .navbar-toggler {
    color: none;
    border-color: transparent;
    height: 38px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}

.navbar-toggler span {
   display: block;
   background-color: #000;
   height: 3px;
   width: 35px;
   margin-top: 5px;
   margin-bottom: 5px;
   -webkit-transform: rotate(0deg);
   -moz-transform: rotate(0deg);
   -o-transform: rotate(0deg);
   transform: rotate(0deg);
   position: relative;
   left: 0;
   opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   -webkit-transition: transform .35s ease-in-out;
   -moz-transition: transform .35s ease-in-out;
   -o-transition: transform .35s ease-in-out;
   transition: transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: relative;
    left: 0px;
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: relative;
    left: 0px;
    top: -15px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}

/* BUTTONS */

.plus {position: absolute;bottom: 40px;}

.plusCircle {position: absolute;bottom: 40px;}
@media (max-width: 768px) {
  .plus {position: relative; bottom: 0px}
  .plusCircle{ position: relative; bottom: 0px}
}


.btn {
    border-radius: 0px;
    letter-spacing: 1.2px;
    font-weight: bold;
    padding: .475rem 2.75rem;
    font-size: 11pt; 
}

.btn-second-line {
    color: #f7a719;
    background-color: transparent;
    text-transform: uppercase;
    border: solid 1.5pt #f7a719;
}

.btn-second-line:hover, .btn-second-line:active{
    background-color: #fff !important;
    color: #f7a719 !important;
    border: solid 1.5pt #f7a719 !important;
}

.btn-second-lineW {
    color: #f7a719;
    background-color: transparent;
    text-transform: uppercase;
    border: solid 1.5pt #f7a719;
}

.btn-second-lineW:hover, .btn-second-lineW:active{
    color: #fff !important;
    border: solid 1.5pt #fff !important;
}

/* SLIDER */

.carousel-info {
    position: absolute;
    right: 15%;
    top: 60px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 576px) {
    .carousel-info{top: 20px;}
}

@media (max-width: 768px) {
    #fp_carousel .carousel-info{ font-size: 60%; }
}

@media (min-width: 769px) and (max-width: 999px) {
    #fp_carousel .carousel-info{ font-size: 75%; }
    .carousel-info{top: 40px;}
}

/* MENU */

#menu-item-176 a, #menu-item-177 a, #menu-item-178 a {
  color: rgba(0,0,0,0.40) !important;
}

/* ********************** STICKY SIDEBAR *********************** */
.content-section {
  min-height: 2000px;
}

.sidebar-section {
  position: absolute;
  height: 100%;
  width: 100%;
}

@media (max-width: 576px) {
    .sidebar-item {
        position: relative !important;
    }
}
.sidebar-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Position the items */
    // &:nth-child(2) { top: 25%; }
    // &:nth-child(3) { top: 50%; }
    // &:nth-child(4) { top: 75%; }
}
.make-me-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;   
    padding: 0 15px;
}

@media (max-width: 576px) {
    .make-me-sticky {   
        padding: 15px 0px 0px 0px !important;
    }

}

/* FORMS */

div.wpforms-container-full .wpforms-form .wpforms-field-description.wpforms-disclaimer-description {
    height: 100px !important;
}

@media (max-width: 576px) {
    div.wpforms-container-full .wpforms-form .wpforms-one-half, div.wpforms-container-full .wpforms-form .wpforms-three-sixths, div.wpforms-container-full .wpforms-form .wpforms-two-fourths {
        width: 100% !important;
    }
    div.wpforms-container-full .wpforms-form .wpforms-one-half{margin-left: 0px !important;} 
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    height: 90px !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    text-align: center;
    padding-top: 1.4rem !important;
}

.wpforms-field-container input[type=text], .wpforms-field-container input[type=tel], .wpforms-field-container input[type=email], .wpforms-field-container input[type=password], .wpforms-field-container textarea {
    min-width: 100%;
    background-color: #f2f2f2 !important;
    border-radius: 0px !important;
    border: 0px !important;
    font-weight: 300;
    letter-spacing: 1.3px !important;
    font-size: 90% !important;
} 

.wpforms-field-container a{
    color: inherit;
    text-decoration: underline !important;
}
.wpforms-field-container a:hover{
    color: #899c6f;
    text-decoration: underline !important;
}

.wpforms-field-container label, .wpforms-field-description {
    font-weight: normal !important;
    font-size: 80% !important;
    color: #452b5e;
    letter-spacing: 1.2px !important;
}

.wpforms-field-container .wpforms-field-checkbox label {
    font-size: 70% !important;
}

.wpforms-field-checkbox {
    padding: 3px !important;
}

.wpforms-submit {
    color: #f7a719 !important;
    background-color: transparent !important;
    text-transform: uppercase !important;
    border: solid 1.5pt #f7a719 !important;
    letter-spacing: 1.2px!important;
    font-weight: bold !important;
    padding: .475rem 2.75rem !important;
    font-size: 11pt !important;
}

..wpforms-submit:hover{
    background-color: #fff !important;
    color: #f7a719 !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
    max-width: 100% !important;
}

.wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
    background: transparent !important;
    border: none !important;
    text-align: center !important;
}

.wpforms-disclaimer-description {
    color: #8c8c8c !important;
    font-weight: 300 !important;
}

/* FOOTER */

footer a{
    color: inherit;
}

footer a:hover, footer a:focus{
    color: inherit;
    text-decoration: none;
}

footer p{
    font-size: 15px !important;
    line-height: 1.8em !important;
}

footer ul {
    padding: 0px;
    line-height: 1.5em;
    margin-bottom: 0rem;
}
footer ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}

/* BREADCRUMBS */

span.post.post-page.current-item {
    margin-left: 7px;
}

.breadcrumbs{}

.breadcrumbs a{
    margin: 0px 5px;
    padding: 4px 8px;
    background-color: #f9f9f9 !important;
    color: #666;
}
.breadcrumbs a:hover, .breadcrumbs a:focus{ background-color: #fff !important; }

/* SSAB */
.ssbp-btn {
    background: #452b5e !important;
    border: solid 2px #452b5e;
    color: #fff !important;
}

.ssbp-facebook:hover, .ssbp-twitter:hover,.ssbp-whatsup:hover, .ssbp-linkedin:hover,.ssbp-email:hover  {
    border: solid 2px #452b5e !important;
    color: #452b5e !important;
    background-color: #fff !important;
}

.ssbp-wrap .ssbp-list li {
     margin-top: 0.5rem !important;
}


/* SEARCH AND FILTER */

input.sf-input-text {
    padding: .5278em;
    font-weight: lighter;
    border-radius: 0px !important;
    border:solid 1px #ddd;
    width: 75%;
}

.searchandfilter ul li li {
    padding: 5px 0;
    text-align: center;
    margin: 0 auto;
    display: inline-block !important;
}

.searchandfilter ul {
    padding-inline-start: 0px !important;
}


.searchandfilter ul li li {
    padding: 5px 0;
    display: inline-block;
    width: 20%;
    display: inline-flex;;
}

.searchandfilter ul li.sf-field-search label {
    padding: 5px 0;
    display: inline-block;
    width: 40% !important;
}

.searchandfilter label {
    text-transform: uppercase;
    font-size: 90%
}

@media (max-width: 576px) {
    .searchandfilter ul li li {
        width: 50%;
        text-align: left;
    }
    .searchandfilter ul li li.sf-item-0 {
        width: 100%;
    }
    .searchandfilter ul li.sf-field-search label {
        width: 100% !important;
    }
}

input[type="radio"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 5px;
    /* background-color only for content */
    background-clip: content-box;
    border: 1px solid #bbbbbb;
    background-color: #e7e6e7;
    border-radius: 50%;
    margin-top: 1px;
}

input[type="checkbox"] {
    /* remove standard background appearance */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    /* create custom radiobutton appearance */
    display: inline-block !important;
    width: 15px !important;
    height: 15px !important;
    padding: 3px !important;
    /* background-color only for content */
    background-clip: content-box !important;
    border: 1px solid #bbbbbb !important;
    background-color: #e7e6e7 !important;
    margin-top: 2px !important;
}


/* appearance for checked radiobutton */
input[type="radio"]:checked, input[type="checkbox"]:checked {
  background-color: #452b5e !important;
}

input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: 0 !important;
}


/* HEIGHT COLUMNS */

.equal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.equal > [class*='col-'] {
    display: flex;
    flex-direction: column;
}


/* MAILCHIMP */

.yikes-easy-mc-form input[type=email], .yikes-easy-mc-form input[type=number], .yikes-easy-mc-form input[type=text], .yikes-easy-mc-form input[type=url], .yikes-easy-mc-form select{
    background-color: #fff !important;
    border: 1px solid #ddd !important;
}

.yikes-easy-mc-form .field-no-label, .yikes-easy-mc-form label {
    display: inline-flex !important;
    text-align: right !important;
}

.yikes-easy-mc-form .submit-button-inline-label {
    float: left;
}

.yikes-easy-mc-form label.label-inline {
    float: right;
    width: 73% !important;
    padding-right: 10px;
    text-align: right;
}

@media (max-width: 576px) {
    .yikes-easy-mc-form .submit-button-inline-label {
        float: none;
    }
    .yikes-easy-mc-form label.label-inline {
        float: none;
        width: 100% !important;
        padding-right: 0px !important;
    }
}

.yikes-easy-mc-form .submit-button-inline-label {
   width: 22% !important;
}

span.EMAIL-label {
    visibility: hidden;
    display: none; 
}
.edit-link {
    display: none;
}

/* MAPS */

.prettyMapList .prettyFileBar {
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.prettyMapList .mapHolder {
    margin-bottom: 0px !important;
    height: 400px !important;
}

.infoWindow h3{
    font-size: 16px !important;
    color: #452b5e !important;
}
.infoWindow p{
    font-size: 12px !important;
}
