/******************************************/
/** General                              **/
/******************************************/

:root {
   --primary: #495B77;
   --secondary: #106770;
   --black: #000000;
   --texto: #6E747E;
   --light: #f2f2f2;
   --white: #ffffff;
   --scroll-button: #FDBC69;
   
   --color-one: #45c7d4;
   --color-two: #ff90c2;
   --color-three: #abc9f7;
   --color-four: #ff908d;
   --color-five: #fdbc69;
   --color-six: #5dbee3;
   --color-seven: #d08dff;
   --color-eight: #a3c259;
}

*, *::before, *::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html, body {
   min-height: 100vh;
   min-height: 100dvh;
   color: var(--texto) !important;
   font-family: "Baloo 2", sans-serif;
   font-optical-sizing: auto;
   font-weight: 400;
   font-style: normal;
   font-size: 1.05rem;
   line-height: 1.3;
}


/* navbar
---------------*/
#navbarShrink.shrink{
   box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
   border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
   padding: 1rem 0 !important;
}
#navbarShrink .navbar-nav .nav-link:hover {
color: var(--scroll-button) !important;
}
/* end ---*/


.divider-colors div {
   height: 4px;
   width: 12.5%;
   display: inline-block;
}

.divider-colors.small div {height: 4px;}

.divider-colors div:nth-child(1) {background-color: var(--color-one);}
.divider-colors div:nth-child(2) {background-color: var(--color-two);}
.divider-colors div:nth-child(3) {background-color: var(--color-three);}
.divider-colors div:nth-child(4) {background-color: var(--color-four);}
.divider-colors div:nth-child(5) {background-color: var(--color-five);}
.divider-colors div:nth-child(6) {background-color: var(--color-six);}
.divider-colors div:nth-child(7) {background-color: var(--color-seven);}
.divider-colors div:nth-child(8) {background-color: var(--color-eight);}

/* HOME
---------------*/
#hero {
   height: 45vh;
}
#hero .splide {
   height:35vh !important;
}
@media (min-width: 1024px){
   #hero {
      height:80vh;
   }
   #hero .splide {
      height:65vh !important;
   }
   #hero img.rounded-5, #bannerPages .rounded-5 {border-radius: 4rem !important;}
   #hero img.rounded-top-0, #bannerPages .rounded-top-0 {border-top-left-radius:0 !important; border-top-right-radius:0 !important;}
   
}

#hero .splide__arrows.splide__arrows--ltr {
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: flex-end;
}
@media (max-width: 767px){
   #hero .splide__arrows.splide__arrows--ltr {
      margin-top: 60px !important;
   }
}

#hero .splide__arrow {
   left: 0;
   right: 0;
   position: relative;
   margin: 0 1rem 5rem 0;
}

#hero .content {
   left: -2px;
   bottom: -2px;
}

.splide__arrow:hover svg path {stroke: var(--secondary) !important;}

/* end ---*/



/******************************************/
/** Helpers                              **/
/******************************************/

#bannerPages{
   height: 25vh !important;
   min-height: 250px !important;
}

.imgCard{
   overflow: hidden !important;
   position:relative !important;
}
.card:hover{
   box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.12) !important;
}
.card:hover .imgCard svg{
   opacity:100 !important;
   margin-top:-10px;
}
.card:hover img{
   transform: rotate(1.2deg) scale(1.1) ;
   opacity: 0.35;
}


/* Colors */
.text-primary {color: var(--primary) !important;}
.text-secondary {color: var(--secondary) !important;}

.hover\:text-primary:hover {color: var(--primary) !important;}

.bg-primary {background-color: var(--primary) !important;}
.hover\:bg-primary:hover {background-color: var(--primary) !important;}
.bg-secondary {background-color: var(--secondary) !important;}

.bg-cover{
   background-size: cover !important;
   background-position: center !important;
   background-repeat: no-repeat !important;
}


footer a{
   color: var(--white) !important;
   text-decoration: none !important;
}
footer a:hover{
   color: var(--scroll-button) !important;
}



/* Fonts */

.fs-7 {font-size: .95rem;}
.fs-8 {font-size: .8rem;}
.fs-9 {font-size: .7rem;}

/* Sizes */
.titles{font-size: clamp(1.5rem, 2.6vw, 4rem);}

.button {
   opacity: 1;
   padding-top: 15px;
   padding-right: 30px;
   padding-bottom: 15px;
   padding-left: 30px;
   border-radius: 14px;   
}

.btn-primary {
   --bs-btn-color: #fff;
   --bs-btn-bg: var(--primary);
   --bs-btn-border-color: var(--primary);
   --bs-btn-hover-color: #fff;
   --bs-btn-hover-bg: #3c4a61;
   --bs-btn-hover-border-color: #3c4a61;
   --bs-btn-focus-shadow-rgb: 49, 132, 253;
   --bs-btn-active-color: #fff;
   --bs-btn-active-bg: #3c4a61;
   --bs-btn-active-border-color: #3c4a61;
   --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
   --bs-btn-disabled-color: #fff;
   --bs-btn-disabled-bg: var(--primary);
   --bs-btn-disabled-border-color: var(--primary);
}

.btn-warning {
   --bs-btn-color: #8E5000 !important;
   --bs-btn-bg: var(--scroll-button);
   --bs-btn-border-color: var(--scroll-button);
   --bs-btn-hover-color: #8E5000 !important;
   --bs-btn-hover-bg: #d79b4d;
   --bs-btn-hover-border-color: #d79b4d;
   --bs-btn-focus-shadow-rgb: 217, 164, 6;
   --bs-btn-active-color: #8E5000 !important;
   --bs-btn-active-bg: #d79b4d;
   --bs-btn-active-border-color: #d79b4d;
   --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
   --bs-btn-disabled-color: #8E5000 !important;
   --bs-btn-disabled-bg: var(--scroll-button);
   --bs-btn-disabled-border-color: var(--scroll-button);
}

.w-fit {width: fit-content;}
.w-screen {width: 100vw; width: 100dvw;}
.h-screen {height: 100vh; height: 100dvh;}

/* Components */


/* Animations */

.transition-03 {
   transition: all linear .3s;
   -o-transition: all linear .3s;
   -moz-transition: all linear .3s;
   -webkit-transition: all linear .3s;
}
.transition-02 {
   transition: all linear .2s;
   -o-transition: all linear .2s;
   -moz-transition: all linear .2s;
   -webkit-transition: all linear .2s;
}

/* scroll button */

#scroll-button {
   opacity: 0;
   transform: translateY(50px);
   right: 30px;
   bottom: 20px;
   z-index: 1101;
   transition: all 0.5s ease-out;
   border: 3px solid var(--white);
}

#scroll-button.show {
   opacity: 1;
   transform: translateY(0);
}

/******************************************/
/** Forms                                **/
/******************************************/

.form-select,
.form-control,
.input-group {
   border-radius: 8px;
   border: 1px solid #D9D9D9;
}

.input-group:active,
.input-group:focus,
.input-group:focus-within,
.form-select:active,
.form-select:focus,
.form-control:active,
.form-control:focus {
   box-shadow: none;
   border-color: var(--primary);
   background-color: transparent;
}

.input-group.disabled,
.form-control:disabled,
.form-select:disabled {
   border-color: #D9D9D9 !important;
   background-color: #D9D9D9 !important;
}

.form-check-input {
   min-width: 1em !important;
   min-height: 1em !important;
}

.form-check-input:checked {
   border-color: var(--primary) !important;
   background-color: var(--primary) !important;
}

.form-check-input:focus {
   box-shadow: none;
   border-color: #D9D9D9 !important;
}

::placeholder {
   opacity: 1;
   color: var(--texto) !important;
}
::-ms-input-placeholder {color: var(--texto) !important;}
