/*
 Theme Name:   Soledad Child Theme
 Theme URI:    http://pencidesign.com/
 Description:  Soledad Child Theme - Made by PenciDesign
 Author:       Pencidesign
 Version:      1.0
 Author URI:   http://pencidesign.com/
 Template:     soledad
 Text Domain:  soledad
*/

/* = Theme customization go here
-------------------------------------------------------------- */

@media screen and (min-width: 800px) {
#navigation.header-6 .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
#navigation.header-6 .pcheader-icon,
#navigation.header-6 .menu {
  margin-right: 0;
}
#navigation.header-6 .pcheader-icon {
  margin-left: 15px;
}
}

.penci-slide-overlay .penci-mag-featured-content {
    text-align: right;
    direction:RTL;
}


.footertitle {
display:flex;
justify-content: center;
padding-bottom: 20px;
font-size: 20px;
}
.footercolumn {
display: flex;
justify-content: space-between;
gap:8px;
}

.footeritems {
width: 33%;
}

.footerform {
    background: #ddd;
    padding: 20px 30px;
    border-radius: 15px;
}

.footerform input, .footerform select {
    background: #FFF !important;
    border-radius: 8px;
}

.footerform input[type="submit"] {
    background: #000 !important;
    border-radius: 8px;
}

#navigation.menu-style-2 ul.menu li#menu-item-1459 ul.sub-menu,
#navigation.menu-style-2 .menu li#menu-item-1459 ul ul.sub-menu {
    background-color: #CC0000 !important; 
}
#navigation.menu-style-2 ul.menu li#menu-item-1459 ul.sub-menu a,
#navigation.menu-style-2 .menu li#menu-item-1459 ul ul.sub-menu a {
    color: #fff !important;
}

#navigation.menu-style-2 ul.menu li#menu-item-1459 ul.sub-menu a:hover,
#navigation.menu-style-2 .menu li#menu-item-1459 ul ul.sub-menu a:hover {
    color: #FFD100 !important; 
}

@media only screen and (max-width: 767px) {
    #sidebar-nav ul.menu li.menu-item-1459 ul.sub-menu,
    #sidebar-nav .menu li.menu-item-1459 ul ul.sub-menu {
        background-color: #CC0000 !important;
    }
    #sidebar-nav ul.menu li.menu-item-1459 ul.sub-menu a,
    #sidebar-nav .menu li.menu-item-1459 ul ul.sub-menu a {
        color: #fff !important; 
    }

    #sidebar-nav ul.menu li.menu-item-1459 ul.sub-menu a:hover,
    #sidebar-nav .menu li.menu-item-1459 ul ul.sub-menu a:hover {
        color: #FFD100 !important; 
    }
}

/* footer call buttons */
@media screen and (min-width: 768px) {
.sticky-container {
    display: none;
}
}
@media screen and (max-width: 768px) {
    .sticky-container {
        display: flex;
        justify-content: center; /* Changed from space-between to center */
        align-items: center;
        width: 100%;
        height: 50px;
        padding: 10px;
        margin: 0;
        position: fixed !important;
        left: 0;
        bottom: 0 !important;
        z-index: 9999;
        background-color: #2d2d2d;
        gap: 20px; /* Add some space between buttons */
    }

    .sticky-container.callwhatsapp {
        width: 50%;
    }

    .animatedd.infinite {
        animation-iteration-count: infinite;
    }

    .pulse {
        animation-name: pulse;
        -webkit-animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1);
        -moz-animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1);
        -ms-animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1);
        animation: pulse 1.25s infinite cubic-bezier(.66, 0, 0, 1);
        box-shadow: 0 0 0 0 rgba(221, 221, 221, .7);
    }

    
.textcall {
        height: 34px;
        position: relative; 
        font-weight: bold;
        color: #ffffff;
        text-align: center;
        line-height: 30px;
        font-size: 12px;
        border-radius: 10px;
        width: fit-content; 
        padding: 0 15px; 
        padding-bottom:0;
	    background: #b22234;
	    margin-left:240px;


    }

.textcallw {
        height: 34px;
        position: relative; 
        font-weight: bold;
        color: #ffffff;
        text-align: center;
        line-height: 30px;
        font-size: 12px;
        border-radius: 10px;
        width: fit-content; 
        padding: 0 15px; 
       margin-right:10px;
        background: #008000;
        margin-right: 0;


}
}


#footer-copyright {
padding-bottom: 40px;
}
.penci-go-to-top-floating {
bottom: 120px;
}  
}

.grid-post-box-meta span {
    color: #000 !important;
}

.wpcf7 label {
    color: #000 !important;
}

.wpcf7 input[type="submit"] {
    display: block;
    margin: 0 auto !important;
}

/* Accordion general styles */
.custom-accordion .accordion-header {
    background-color: #0032a0; 
    cursor: pointer;
    padding: 10px 15px 0;
    border: 1px solid #ddd;
    position: relative;
    font-weight: bold;
    transition: background-color 0.3s;
    border-radius: 8px;
}

.custom-accordion .accordion-header h3 {
    color: white !important;
    font-size: 14px !important;
}

.custom-accordion .accordion-header::before {
    font-family: 'Font Awesome 5 Free'; 
    content: '\f107'; /* down arrow */
    font-size: 22px;
    color: white;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-accordion .accordion-header.active::before {
    content: '\f106'; /* up arrow */
    font-size: 22px;

}

.custom-accordion .accordion-header.active {
    background-color: #0032a0;
}

.custom-accordion .accordion-collapse {
    background-color: #f0f0f0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
    padding: 0 15px;
    border-radius: 8px;
}

.custom-accordion .accordion-body {
    padding: 10px;
    border-top: 1px solid #ddd;
    color: black;
    font-size: 14px;
}

/* End of Accordion general styles */

/* Hide reCAPTCHA badge globally */
.grecaptcha-badge {
    display: none !important;
}

/* for Quick Access in Sidebar */
/* General styles for sidebar icons */
.sidebarclasses {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.widget .sidebarclasses h4 a {
    display: flex;
    justify-content: space-around;
}

.sidebarclasses h4 {
    width: calc(50% - 10px);
    margin: 0;
    font-weight: normal !important;
}

.icon {
    border: 1px solid gray;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.icon i {
    margin-right: 16px; /* Increased spacing between icon and text */
    font-size: 22px;
}

/* Hover effect for links */
#customLanguageSidebar a:hover {
    text-decoration: none;
}

/* for tables with odd and even different color rows */
.blue_style tr:nth-child(odd) {
        background-color: #f2f2f2; 

}

.blue_style tr:nth-child(even) {
        background-color: white; 

}

.blue_style td, .blue_style th {
    border: 1px solid #0032A0; 
    padding: 8px; 
}

#banner {
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) 
{
    #banner {
        display: none;
    }
    
}

/* Add shadow for tables with only one cell */
.post-entry table tr:only-child td:only-child {
    box-shadow: 0 4px 8px #ffd100 !important;
}

/* for headings fonts */
.single .post h1,
.single .post h2,
.single .post h3:not(.accordion-header h3),
.single .post h4 {
  color: #000080 !important;
}

.single .post h2 {
	 font-size: 24px;
}

.single .post h3:not(.accordion-header h3) {	
    font-size: 19px;
    }

.single .post h4 {
		 font-size: 15px;
}

#widget-area a:hover {
  color: #fff !important;
}

@media (max-width: 768px) {
	.footer-whatsapp {
		display: none;
	}
	
	.penci-go-to-top-floating {
    margin-bottom: 15px;
}
}

@media (min-width: 768px) {
  #widget-area {
    padding: 30px 0 !important;
  }
	#footer-section {
	height: 50px;
}
}

/* for image border radius */
.penci-image-holder {
border-radius: 8px; 
}