/* MAIN */

* {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

body, input {
    -webkit-font-smoothing: antialiased;
    font-variant-ligatures: no-common-ligatures;
    font-family: 'PublicSans', serif !important;
    font-variation-settings: 'wght' 400;
}

input[type=text], input[type=submit], input[type=date], input[type=tel], input[type=email], textarea, select {
    width: 100%;
}

input {
    padding: 4px 6px;
    font-size: 90%;
}
label {
    margin: 18px 0px 4px;
    font-size: 90%;
    font-variation-settings: 'wght' 500;
}


#frontPage, #page, #single, .offset_img_sticky {margin-top: 55px;}

/*********************** FONTS ************************/
@font-face {
    font-family: 'PublicSans';
    src: url('../fonts/PublicSans-VariableFont_wght.ttf');
}

/*********************** TITLES ************************/
h1{font-size: calc((100% + 0.25vw) * 2);font-variation-settings: 'wght' 500; letter-spacing: 1.5px;}
h2{font-size: calc((100% + 0.25vw) * 1.5);font-variation-settings: 'wght' 800;}
h3{font-size: calc((100% + 0.25vw) * 1);}
h4{font-size: calc((100% + 0.25vw) * 0.7);}
h4{font-size: calc((100% + 0.25vw) * 0.3);}
h4{font-size: calc((100% + 0.25vw));}


/*********************** TEXT ************************/
small {font-size: 80% !important;}
.textSS{font-size: 55% !important;}
.textS{font-size: 70% !important;}
.textSM{font-size: 80% !important;}
.textM{font-size:90% !important;}
.text{font-size:100% !important;}
.textMM{font-size:100% !important;}
.textML{font-size: 120% !important;}
.textL{font-size: 125% !important;}
.textXL{font-size: 160% !important;}
.textXXL{font-size: 185% !important;}
.textXXXL{font-size: 200% !important;}
.textExtra{font-size: 300% !important;}
.text-to-mobile {font-size: 80% !important;}


.thin{font-variation-settings:'wght' 100;}
.medium{font-variation-settings: 'wght' 400 !important}
strong, .strong, b {font-variation-settings:'wght' 600;}
.strongFamily {font-weight: bold;}
.bold{font-variation-settings: 'wght' 700 !important}
.extra{font-variation-settings: 'wght' 900 !important}

.font-italic {
    font-style: italic;
}

.lineHeightS {line-height: 1.2em !important;}
.lineHeightM {line-height: 1.5em !important;}
.lineHeightL {line-height: 2em !important;}
.whiteSpace {white-space: pre;}
.letterSpacingCustom {letter-spacing: 2px;}

.shadowText{text-shadow: 1px 1px 4px #000000;}
.shadowCustom{box-shadow: 0 1rem 1rem rgba(0,0,0,.10)!important;}


.mainColor {color: #61A093;}
.mainColorB {background-color: #61A093;}

.tintoColor {color: #56070C;}
.tintoColorB {background-color: #56070C;}

.ocreColor {color: #b9935a;}
.ocreColorB {background-color: #b9935a;}

.ocreHColor {color: #EA981A;}
.ocreHColorB {background-color: #EA981A;}

.brownColor {color: #665936;}
.brownColorB {background-color: #665936;}


.lightGreyB {background-color: #ece3d2;}

.familySecond {font-family: 'Lora', serif;}

.bg-white-trans {background-color: #ffffff40;}

/* ********************** EFFECTS ********************** */

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 55px;
    z-index: -90000000000;
}
.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: 1100px;
    }
}

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

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

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

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


.brightenSlick  {
    filter: brightness(100%);
    transition: all .3s ease !important;
}

.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{color: inherit;text-decoration: none;}
a.noeffect:hover{color: inherit;text-decoration: none;}


a.effect{color: inherit; text-decoration: underline;}
a.effect:hover{color: inherit;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;
}

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

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

/***** VIDEO ****/

.home-banner .slide .video-slide {
    background-color: #fff; }

.home-banner.loading .video-background {
    opacity: 0; }


.embed-container, .video-background {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.video-background {pointer-events: none;}

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

.player {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background-color: #27a19440;
    z-index: 1000;
    cursor: pointer;
}

#mute, #play {
    width: 34px;
    height: 34px;
}


@keyframes taadaa { 
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.video-foreground {
  animation: taadaa 4s;
}

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

#player video:focus {
    outline:0;
}

iframe {
    border: 0px !important;
}

.fullCenterBanner{
    position: absolute;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
}

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

input[type=search], input#coupon_code{
    background-color: transparent!important ;
    border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus {
    outline: 0;
}

input[type=search]:hover{}


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

.logo-main {
    position: absolute;
    top: -15px;
    left: 20px;
    z-index: 1000;
}

a.nav-link {font-variation-settings: 'wght' 500;}

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

button.navbar-toggler.navbar-toggler-right.collapsed, button.navbar-toggler.navbar-toggler-right {
    position: absolute !important;
    top: -50px;
    right: 20px;
}

.navbar-light .navbar-toggler {
    color: #fff !important;
    border-color: transparent!important;
}

.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;
}

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

.dropdown-menu {
    margin: 0.500rem 0 0 !important;
    background-color: #e84e34 !important;
    border: 0px !important;
    border-radius: 0rem !important;
    min-width: 7.45rem !important;
}

dropdown-item:focus, .dropdown-item:hover {
    color: #fff !important;
    text-decoration: none;
    background-color: transparent !important;
    font-variation-settings: 'wght' 300;
}

/* ********************** FOOTER *********************** */

footer .menu-item-42 {
    display: none;
}

footer a {color: #fff;text-decoration: none;}

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

footer ul{}

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;
    padding: 10px 14px;
    display: inline-block;
}

.widget-menu-legal ul li {
    font-size: 15px !important;
    list-style: none;
    padding: 4px 0px 0px 8px;
    display: inline-block;
}

@media (max-width: 576px) {
    .widget-menu-legal ul li {
        padding: 3px 6px;
        display: block;
    }

}

.title-widget {
    font-size: 15px !important;
    line-height: 1.7em !important;
}

#credits{
    color: #b9b9b9;
}

#credits a {
    color: #b9b9b9;
    text-decoration: underline;
}
#credits a:hover {
    color: #f7f7f7;
}
/* ********************** CUSTOM THEME *********************** */
.wpcf7-not-valid-tip {
    font-size: 0.8em !important;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .px-adjust{
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }
}

.btn, input[type=submit] {
    border-radius: .25rem !important;
    letter-spacing: 1.2px;
    font-weight: bold;
    padding: .475rem 2.75rem;
    font-size: 11pt; 
}

.btn-main, input[type=submit] {
    color: #fff;
    background-color: #61A093;
    text-transform: uppercase;
    border: solid #61A093 1.5pt;
}

.btn-main:hover, input[type=submit]:hover {
    color: #61A093;
    background-color: #fff;
    text-transform: uppercase;
    border: #fff 1.5pt #f7a719;
}

.btn-second {
    color: #fff;
    background-color: #EA981A;
    text-transform: uppercase;
    border: solid #EA981A 1.5pt;
}

.btn-second:hover {
    color: #EA981A;
    background-color: #fff;
    text-transform: uppercase;
    border: #fff 1.5pt #EA981A;
}




