@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Mulish:wght@300;400;500;700&display=swap');

:root {
	/*GRID*/
	--grid-width: 1200px !important;
	--grid-laptop-width: 1100px !important;
	--grid-gutter: 12px;
	
	/*TEXT*/
	--text-family: 'Montserrat', sans-serif;
	--text-family-bold: 'Montserrat', sans-serif;
	
    --text-fsize: 16px;
	--text-md-fsize: 15px;
	--text-sm-fsize: 14px;

	--text-lheight: 1.5;
	--text-md-lheight: 1.5rem;
	--text-sm-lheight: 1.5rem;
	
	/*BASE BUTTON*/
	--btn-padding: 0.5rem 2.50rem;
	--btn-fsize: 1rem;
	--btn-lheight: 1.5rem;
	--btn-radius: 0;

    --card-radius: 0.5rem;

	/*COLORS*/
	--color-primary: #ffba00;
    --color-secondary: #e5e9e9ff;
	--color-alt: #008cff;
    --color-background: #f8f8f8;
	--color-white: #fff;
    --color-gray: #6D747A;
    --color-gray-light: #D3D5D7;
    --color-white: #fff;
    --color-red:#df4759;
    --color-orange: #f36b19;
    --color-engineering-orange: #cb070bff;
    --color-black: #030200ff;
    --color-spanish-orange: #f16810ff;
    --color-jonquil: #f9c505ff;

}


[data-ae-animation]{
    transition-property: opacity;
    transition-duration: 0.8s;
    opacity: 0;
}
[data-ae-animation].animated {
    opacity: 1;
}


html, body{
    font-family: var(--text-family);
    font-size: var(--text-fsize);
    line-height: var(--text-lheight);
    color: var(--color-black);
    scroll-behavior: smooth;
    background: var(--color-background);
}
    
.row{ max-width: var(--grid-width); margin: auto;}
.row.plus{ max-width: 65% }
.row.wide{ max-width: 85% }
.row.fullwidth{ max-width: 100% }

p{margin-bottom: 2rem;}

strong{font-family: var(--text-family-bold);}

a{
    text-decoration: none;
    color: var(--color-dark);
    transition: 0.25s;
}

a:hover, a.active{
    opacity: 0.7;
}

a img{transition: 0.25s;}
a:hover img{opacity: 0.8;}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--text-family-bold);
    margin-bottom: 1.25rem;
    
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong{
    font-family: var(--text-family-bold);
}

h1, .h1{font-size: 3rem;font-weight: 700;font-family: var(--text-family-bold); color: var(--color-orange);}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
    color: var(--color-primary)
}
h1:hover a, h2:hover a, h3:hover a, h4:hover a, h5:hover a, h6:hover a{
    color: var(--color-secondary)
}

h2{
    font-size: 2.8rem;
    font-weight: 500;
    font-family: var(--text-family-bold);
    color: var(--color-orange);
    text-transform: uppercase;
}

h3{
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--text-family-bold);
}

h4{
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--text-family-bold);
    color: var(--color-white);
    text-transform: uppercase;
}

.h5, h5 {
    font-size: 1.1rem;
    color: var(--color-orange);
}

.button{
    transition: 0.1s linear;
    background: var(--color-primary);
    padding: var(--btn-padding); 
    font-size: var(--btn-fsize); 
    line-height: var(--btn-lheight); 
    color: var(--color-white);
    text-align: center;
    box-shadow: none;
    border: 0;
    border-width: 0;
    border-radius: var(--btn-radius);
}
.button, button{transition: 0.25s;}
.button.transparent{
    background: var(--color-white);
    color: var(--color-secondary);
    border-radius: var(--btn-radius);
}

.button:hover{color:var(--color-black);}


.c-white .button.transparent{
    border-color: var(--color-white);
}
.c-white .button.transparent:hover{border-color: var(--color-secondary);}


.button.pill{border-radius: 500px;}

label{
    display: block;
    margin-bottom: 0.3125rem;
    color: var(--color-primary)
}
input, textarea, select{
    border: 1px solid var(--color-btn);
    transition: 0.35s;
    padding: 0.85rem 0.75rem;
}
input:focus, textarea:focus, select:focus{
    box-shadow: 0 0 2px var(--color-secondary) !important;
    border-color: var(--color-secondary);
}

input[type=radio]{
    width: auto;
    margin-left: 0;
}

ul.noBullets{
    list-style: none;
    padding-left: 0;
}

[class^="flex-list-"]{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--grid-gutter));
    padding: 0;
    width: calc(100% + (2 * var(--grid-gutter)));
    max-width: calc(100% + (2 * var(--grid-gutter)));
}

[class^="flex-list-"] li{
    padding: 0 calc(var(--grid-gutter) / 2)  20px;
}

.flex-list-4 li{width: 25%;}
.flex-list-5 li{width: 20%;}
.flex-list-6 li{width: 16.66666666%;}

.filter{
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    min-height: inherit;
}

hr{border-color: var(--color-btn);opacity: 1;margin: 1.25rem 0;}

.squarepic{
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.filter-grayscale{
    filter: grayscale(100%);
}

.cta{
    margin-left: calc(-30% - 9px);
    margin-right: calc(-30% - 9px);
    overflow: hidden;
}

.wlgrid{margin-left: calc(-1 * var(--grid-gutter));margin-right: calc(-1 * var(--grid-gutter));}

figcaption{
    border-left: 2px solid var(--color-btn);
    padding-left: 10px;
    font-size: 0.875rem;
    margin-top: 10px;
}

/* ----- Bootstrap fixs ------- */
img{max-width: 100%;}
a{display: inline-block;}

ul.il-list{padding-left: 0;}

.text-left{text-align: left !important;}
.text-right{text-align: right !important;}
.align-middle{align-self: center !important;}

.c-primary{color: var(--color-primary) !important}
.c-secondary{color: var(--color-secondary) !important}
.c-gray{color: var(--color-gray) !important}
.c-white{color: var(--color-white) !important}
.c-black{color: var(--color-black) !important}

.bg-primary{background: var(--color-primary) !important}
.bg-secondary{background: var(--color-secondary) !important}
.bg-gray{background: var(--color-gray) !important}
.bg-white{background: var(--color-white) !important}
.bg-black{background: var(--color-black) !important}
.bg-light-gray{background: var(--color-gray-light) !important;}
.bg-spanish-orange{background: var(--color-spanish-orange) !important;}
.bg-gradient{background: linear-gradient(140deg, var(--color-gray) 0%, var(--color-gray-light) 100%);}


.row > .row{margin: 0 calc(-1 * var(--grid-gutter));}

.modal-footer {display: block;}
input, textarea, select{width: 100%;outline: 0 !important;}

.small, small {
    font-size: .875rem;
}

.top10{top: 10px}
.top20{top: 20px}

/* ------------------------------------- */

.splide__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
}

.destaque-img{
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.banner-page img{
    height: 516px;
    width:100%;
    object-fit:cover;
}

/* BANNER */
.carousel.carousel-banner{
    min-height:calc(75vh - 137px);
}

.carousel .carousel-inner{
    display: flex;
    align-items: center;
    min-height: inherit;
}

.carousel .fullwidth{
    width: 100%;
    max-height: calc(75vh - 137px);
    min-height: calc(75vh - 137px);
}

.carousel video.fullwidth{
    object-fit: cover;
}
.carousel video.fullwidth+.filter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.carousel-indicators {
    position: relative;
    margin-top: 1.25rem;
}
.carousel-indicators [data-bs-target] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.hero-bg-blur{
    background-color: rgba(0, 0, 0, 0.4);    
    backdrop-filter: blur(10px);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    height: 100%;
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    left: 10%;
    position: absolute;
}
.right {
    left: unset;
    right: 10%;
}

/* NAVBAR */
.nav-bar, .utility-bar {
    padding: 1rem 3rem 1rem 3rem;
  }

  .nav-bar {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 10;
    
  }  


  nav a {
    padding: 0 0.6rem;
  }

.utility-bar {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-black);
    font-size: 0.8rem;
    padding: 0.5rem;
    text-align: center;
}

/* CARDS */
.feature-card{
    border: 0px solid black;
    padding: 25px;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #fff;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card i {
    font-size: 4rem;
}

.feature-card h4 {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-img{
    aspect-ratio: 16/9;
    width: 100% !important;
    height: auto !important;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    transition: all 0.5s;
}
.card-img:hover{clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);}

/* BUTTONS */
.outline-button{
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--color-orange); 
    border-radius: 6px; 
    padding: 0.5rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    color: var(--color-orange);
    text-align: center;
    transition: all 0.5s;
    font-size: 0.9rem;
    font-weight: 700;
  }
  .outline-button:hover{
    background-color: var(--color-orange);
    color: var(--color-white);
    opacity: 1;
  }
  .outline-button:disabled,
  .outline-button[disabled]{
  border: 2px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: no-drop
}
.outline-button[disabled]:hover {
        color: #666666;
}

/* ACCORDION */

.accordion {
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
    width: 100%;
    border: 0px solid var(--color-dark);
    flex-direction: column;
    height: auto;
    box-shadow: 20px 20px 60px #bebebe, -20px 0px 60px #fff;
}
.accordion p{margin-bottom: 0;}

.accordion-select {
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
    margin-bottom: -46px !important;
    margin-right: -65px !important;
    margin-top: 0 !important;
}

.accordion-title {
    position: relative;
}

.accordion-title,
.accordion-select  {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    height: 46px;
    font-size: 16px;
}

.accordion-title:not(:nth-last-child(2))::after {
    border: 1px solid transparent;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.accordion-title span {
    bottom: 0px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    white-space: nowrap;
    width: 100%;
    transform: rotate(0deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    padding-left: 23px;
    padding-right: 23px;
    line-height: 46px;
}

.accordion-content {
    box-sizing: border-box;
    overflow: auto;
    position: relative;
    transition: margin 0.3s ease 0.1s;
    background-color: #ffffff;
    color: #000000;
    height: 120px;
    margin-bottom: -120px;
    margin-right: 0;
    padding: 22px;
    width: 100%;
}

.accordion-select:checked + .accordion-title + .accordion-content {
    margin-bottom: 0;
    margin-right: 0;
}

.accordion-title:not(:nth-last-child(2))::after {
    border-bottom-color: #000000;
    border-right-color: transparent;
} 

.accordion-select:hover + .accordion-title,
.accordion-select:checked + .accordion-title {
    background-color: var(--color-primary);
}



/* FOOTER */
footer {
    padding-top: 1.5rem;
    padding-bottom: 0;
    background: var(--color-primary);
    font-size: 0.9rem;
    line-height: 2rem;
}

footer i {
    font-size: 2rem;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

.footer-lower {
    position: relative;
    margin-top: 1.5rem;
    background: #f8f8f8;
    padding: 1.625em 0;
    color: #f8f8f8;
    border-top: none;
  }

/* ------------------------------------- */

/* Mobile only */
@media (max-width: 575.98px) {

    html, body{
        font-size: var(--text-sm-fsize);
        line-height: var(--text-sm-lheight);
    }

    h1, .h1 {font-size: 2.3rem;}
    h2{font-size: 1.75rem;}
    h3{font-size: 1.4rem;}
    h4{font-size: 1.1rem;}
    .h5, h5 {font-size: 1.05rem;}

}

/* Tablet only */
@media (min-width: 576px) and (max-width: 991.98px) { 
    
	html, body{
        font-size: var(--text-md-fsize);
        line-height: var(--text-md-lheight);
    }

}

/* Laptop - 1366x768 */
@media screen and (min-width: 1024px) and (max-width: 1400px) {
    .row{ max-width: var(--grid-laptop-width);}

    header > .row{max-width: 95% !important;}

    html, body{
        font-size: var(--text-md-fsize);
        line-height: var(--text-md-lheight);
    }

}

/* Desktop only */
@media (min-width: 992px) { 

}
