:root {
  --bs-blue: #174885;
  --bs-purple: #8a469b;
  --bs-yellow: #f0c030;
  --bs-orange: #d05c33;
  --bs-green: #00845c;
  --bs-gray: #494949;
}

body {
  font-family: "Fredoka", sans-serif;
}

.bg-blue {
  background-color: var(--bs-blue);
}
.bg-custom-purple {
  background: linear-gradient(135deg, var(--bs-purple), #7b3e8a);
}

.bg-custom-orange {
  background: linear-gradient(135deg, var(--bs-orange), #c0542d);
}

.bg-custom-yellow {
  background: linear-gradient(135deg, var(--bs-yellow), #deb129);
}

.bg-custom-green {
  background: linear-gradient(135deg, var(--bs-green), #036f4f);
}

.bg-custom-blue {
  background: linear-gradient(46deg, var(--bs-green), #477688, #63628f);
}
.text-purple {
  color: var(--bs-purple);
}
.mt-115px {
  margin-top: 115px;
}
.mt-145px {
  margin-top: 145px;
}
.widget-title {
  margin-top: 3rem !important;
  color: var(--bs-blue);
}
/* Theme card hover effects */
.theme-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons styles */
.btn-primary {
  &:hover {
    background-color: var(--bs-blue);
    opacity: 0.9;
  }
}
.btn-outline-primary {
  border: solid 1px var(--bs-blue);
  &:hover {
    background-color: var(--bs-blue);
    color: white;
    border: none;
  }
}
/* Search input styles */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-container .bi-search {
  position: absolute;
  right: 10px;
  color: white;
  pointer-events: none;
}

.search-input {
  background: transparent;
  border: none;
  color: white;
  padding: 5px 35px 5px 10px;
  width: 200px;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}
/* Inputs styles */
.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

/* Card styles */
.card a {
  display: block;
  overflow: hidden;
}

.card img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}
.novedades-carrusel .owl-item img {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block;
}



.card:hover img {
  transform: scale(1.1);
}

.card {
  overflow: hidden;
}

/* Container max-width */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1300px;
  }
}

/* Typography */
.small,
small {
  font-size: 0.77em;
}

/* Navigation styles */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  height: 50px;
  background-color: var(--bs-blue);
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 50px;
  height: 95px;
}

.nav-item {
 height: 100px;
 display: flex;
 align-items: center;
 position: relative;
}
.nav-link {
  color: #4c6684 !important;
  padding: 0.75rem 0.5rem !important;
  margin: 0 0.25rem;
  font-weight: 500;
}

.nav-link:hover:not(.btn) {
  color: var(--bs-blue) !important;
  background-color: transparent !important;
}

.nav-link.btn-success {
  background-color: var(--bs-green) !important;
  border: none !important;
  color: white !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: 0px;
}

.nav-link.btn-success:hover {
  opacity: 0.9;
  color: white !important;
}

/* Social links */
.social-links a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

/* Dropdown styles */
.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin-top: 0px;
  background-color: #f7f7f7;
  top: 98px;
  width: 240px;
}
.dropdown-menu li {
  height: auto;
  padding: 0.3rem 0.4rem;
}
.dropdown-menu li:not(:last-child) {
  border-bottom: solid 1px var(--bs-gray);
}

.dropdown-item {
  padding: 0.3rem 0.4rem;
  text-wrap: auto;
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--bs-blue);
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero section */
.hero-section {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  margin-top: 145px;
}

/* Owl Carousel styles */
.owl-dots {
  display: none;
}

.owl-nav {
  margin-top: 0 !important;
  position: absolute;
  width: 100%;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-prev,
.owl-next {
  position: absolute;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: rgb(101, 101, 101) !important;
  pointer-events: auto;
}

.owl-prev {
  left: -60px;
}

.owl-next {
  right: 35px;
}

.owl-prev i,
.owl-next i {
  font-size: 1.5rem;
}

/* Utility classes */
.text-blue {
  color: var(--bs-blue);
}

.btn-custom {
  background-color: var(--bs-green);
  color: white;
}

.btn-custom:hover {
  background-color: #006c4b;
  color: white;
}

/* Centro de Conocimiento Styles */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://placehold.co/1900x500");
  background-size: cover;
  background-position: center center;
}

.caption-slide {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.caption-slide .title {
   display: block;
   font-size: 4rem;
   font-weight: 600;
}

.caption-slide .subtitle {
   display: block;
   font-size: 2rem;
   font-weight: 500;
}
.resource-card {
  border: 1px solid #e0e0e0;
  transition: transform 0.3s;
  border-radius: 0;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card .card-body {
  padding: 2rem;
}

.resource-icon {
  width: 60px;
  height: 60px;
  background-color: #f8f9fa;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.resource-icon i {
  font-size: 1.5rem;
  color: var(--bs-blue);
}

.filter-button {
  border: 1px solid #dee2e6;
  background: white;
  color: #6c757d;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 25px;
  transition: all 0.3s;
}

.filter-button:hover,
.filter-button.active {
  background-color: var(--bs-blue);
  color: white;
  border-color: var(--bs-blue);
}

.btn-outline-primary {
  border: 1px solid var(--bs-blue);
  color: var(--bs-blue);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--bs-blue);
  color: white;
}

.btn-outline-danger {
  border: 1px solid var(--bs-orange);
  color: var(--bs-orange);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background-color: var(--bs-orange);
  color: white;
}

/* Footer Styles */
footer {
  background-color: #f7f7f7;
}
.footer-form input.form-control,
.footer-form select.form-select {
  background-color: transparent;
  border-radius: 0;
}

.footer-form .btn {
  border-radius: 0;
  min-width: 100px;
}

.footer-form .bg-yellow {
  background-color: var(--bs-yellow);
}

/* Newsletter Box styles */
footer .card {
  background-color: transparent;
  border-radius: 0;
  border-color: var(--bs-blue) !important;
  border-width: 1.5px !important;
}

footer .form-control {
  border-radius: 0;
  border-color: var(--bs-green);
}

footer .btn {
  border-radius: 0;
}

footer .btn-success {
  background-color: var(--bs-green);
  border: none;
}

footer .btn-outline-success {
  border-color: var(--bs-green);
  color: var(--bs-green);
}

footer .btn-outline-success:hover {
  background-color: var(--bs-green);
  color: white;
}

/*Page Custon*/
.custon-page .panel-layout {
	margin-top: 90px;
}
.custon-page .siteorigin-panels-stretch {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.overlay-c1, .overlay-c1-wrapper {
                background: #174885;
                opacity: .9
}
.overlay-c1 h1 {
	color: #fff !important;
	margin-bottom: 1rem;
}

.custon-page .so-widget-sow-editor-base {
	margin-top: 1rem;
} 
.custon-page .so-widget-sow-editor-base p {
        color: var(--bs-secondary-color) !important;
}

            .overlay-c2-wrapper {
                background: #4c6684;
                opacity: .9
            }

            .overlay-c3-wrapper {
                background: #1f4d84;
                opacity: .9
            }

            .overlay-c1-c2-wrapper {
                background: linear-gradient(-45deg,#174885,#4c6684);
                opacity: .85
            }

            .overlay-c2-c1-wrapper {
                background: linear-gradient(-45deg,#4c6684,#174885);
                opacity: .85
            }
/* Layout 3368 #pgc-3368-0-0 ,  */
            #pgc-3368-0-2 {
                width: 20%;
                width: calc(20% - ( 0.8 * 30px ) )
            }

            #pgc-3368-0-1 {
                width: 60%;
                width: calc(60% - ( 0.4 * 30px ) )
            }

            #pg-3368-0 , #pl-3368 .so-panel , #pl-3368 .so-panel:last-of-type {
                margin-bottom: 0px
            }

            #pgc-3368-1-0 , #pgc-3368-1-2 {
                width: 5%;
                width: calc(5% - ( 0.95 * 30px ) )
            }

            #pgc-3368-1-1 {
                width: 90%;
                width: calc(90% - ( 0.1 * 30px ) )
            }

            #pg-3368-0> .panel-row-style {
                background-image: url(https://miempresacircular.pe/wp-content/uploads/2023/12/Banners-interiores1-scaled.jpg);
                padding: 90px 90px 90px 90px
            }

            #pg-3368-0.panel-has-style > .panel-row-style, #pg-3368-0.panel-no-style , #pg-3368-1.panel-has-style > .panel-row-style, #pg-3368-1.panel-no-style {
                -webkit-align-items: flex-start;
                align-items: flex-start
            }

            #pgc-3368-0-1> .panel-cell-style {
                padding: 60px 60px 48px 60px
            }

            #pgc-3368-0-1 {
                align-self: auto
            }

            #pg-3368-1> .panel-row-style {
                background-color: #ffffff
            }

            @media (max-width: 767px) {
                #pg-3368-0.panel-no-style, #pg-3368-0.panel-has-style > .panel-row-style, #pg-3368-0 , #pg-3368-1.panel-no-style, #pg-3368-1.panel-has-style > .panel-row-style, #pg-3368-1 {
                    -webkit-flex-direction:column;
                    -ms-flex-direction: column;
                    flex-direction: column
                }

                #pg-3368-0 > .panel-grid-cell , #pg-3368-0 > .panel-row-style > .panel-grid-cell , #pg-3368-1 > .panel-grid-cell , #pg-3368-1 > .panel-row-style > .panel-grid-cell {
                    width: 100%;
                    margin-right: 0
                }

                #pgc-3368-0-0 , #pgc-3368-0-1 , #pgc-3368-1-0 , #pgc-3368-1-1 , #pl-3368 .panel-grid .panel-grid-cell-mobile-last {
                    margin-bottom: 0px
                }

                #pg-3368-0 , #pg-3368-1 {
                    margin-bottom: px
                }

                #pl-3368 .panel-grid-cell {
                    padding: 0
                }

                #pl-3368 .panel-grid .panel-grid-cell-empty {
                    display: none
                }

                #pgc-3368-0-1> .panel-cell-style {
                    padding: 60px 30px 48px 30px
                }
            }
