@import 'components/navbar.css';
@import 'components/hero.css';
@import 'components/sections.css';







:root {
    --primary-colorORIGINAL: #0056b3;
    --primary-color: #5F5334;
    --secondary-color: #6c757d;

    --bs-primary-rgbX: #5F5334;
	
	
}

body {
    font-family: 'Poppins', sans-serif;
}


.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Use a value from 200 to 700 */

.oswald-500 {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.oswald-600 {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.oswald-700 {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}



.gray {
  color: #333333;
}
.blue {
  color: #007CB4;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    Xpadding: 0.8rem 2rem;
    font-weight: 500;
}
.btn-lg {
    padding: 0.8rem 2rem;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}




/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */
.logo-cabecera { width: 120px; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 

 }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 

 }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
.logo-cabecera { width: 140px; }

 }

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

 }

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 

 }

.bg-sphi-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-sphi-light {
    --bs-bg-opacity: 1;
    background-color: rgba(173, 155, 106, 0.8) !important;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #FFFFFF;
    color: #AD9B6A;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-link:hover {
    color: #AD9B6A;
    color: #FFFFFF;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-link-intra {
    color: #FFFFFF;
    /* transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out; */
    transition: transform 1s; 
}

.nav-link-intra:hover {
    color: #FFFFFF;
    transition: transform 0.25s;
    transform: scale(1.5);
    /* transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out; */
}

.iconoE { cursor: pointer; transition: transform 2s; }
.iconoE:hover { transform: scale(2); z-index: 1200; }



.text-primary {
    --bs-text-opacity: 1;
	--bs-primary-rgb: 13, 110, 253; /* #5F5334 */
	--bs-primary-rgb: 95, 83, 52; /* #5F5334 */
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #413923; /* #0b5ed7; */
    --bs-btn-hover-border-color: #413923; /* #0a58ca; */
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #000000; /*  #0a58ca; */
    --bs-btn-active-border-color: #000000; /*  #0a53be; */
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}
.btn-primary:hover {
    
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    Xpadding: 0.8rem 2rem;
    font-weight: 500;
}
