/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

 
/* Custom CSS */
.rfw_information {
    display: flex;
}

.rfw_information .info {
    width: 75%;
    background: ghostwhite;
    padding: 0px 20px;
}

.rfw_information h4 {
    font-size: 18px;
}

.rfw_information p {
    font-size: 16px;
}

.rfw_information ul {
    font-size: 16px;
    list-style: square;
    margin-left: 35px;
}
.rfw_information .marketing {
    width: 25%;
    background: ghostwhite;
    margin-left: 10px;
}

.rfw_information .marketing img {
    width: 100%;
    border: 1px solid;
}
.rfw_information .credit {
    text-align: center;
}

.rfw_information .credit ul {
    list-style: none;
}
.rfw_btn a {
    display: block;
    text-decoration: none;
    background:#f6861e;
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin: 10px 20px;
    padding: 10px 20px;
}
.rfw_btn a:hover{
    background-color: #13294b;
    }
  
p.plug-name {
    font-size: 23px;
    font-weight: 400;
}
.email-form{
    display: flex;
    align-items: center;
}
input[type="email"] {
    width: 200px;
    box-sizing: border-box;
}
.email-button{
    background: #f6861e;
    padding: 5px 10px;
    border: none;
    color: white;
    border-radius: 4px;
}
.email-button:hover{
    background-color: #13294b;
}

/* CSS for Header */
.rfw-header {
    background-color: #3e7da6; /* Your header background color */
    color: #000000; /* Text color for the header */
    padding: 3px 13px;
    text-align: center;
    margin-left: -21px;
}
  
.rfw-header h1 {
margin-bottom: 10px;
font-size: 24px;
color: white;
}
  
.rfw-header {
display: flex;
align-items: center;
}

/* CSS for Logo */  
.logo {
margin-right: 20px; 
}
  
.logo img {
max-width:80px; 
height: auto;
}
  
/* our product css */

.products-container-ib {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    /* justify-content: space-between; */
}

.product-card-ib {
    flex: 1 1 calc(26% - 20px);
    /* Adjusts card width */
    max-width: 200px;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.product-card-ib img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    cursor: pointer;
}

.product-card-ib h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}



.product-card-ib:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Remove focus outline for images inside links */
.product-card-ib a {
    outline: none;
    /* Removes default outline for the link */
    border: none;
    /* Ensures no border is applied */
}

.product-card-ib a img {
    outline: none;
    /* Ensures no outline is applied to the image */
    border: none;
    /* Ensures no border is applied to the image */
}

/* Override focus styles completely */
.product-card-ib a:focus,
.product-card-ib a img:focus {
    outline: none !important;
    /* Forcefully removes any focus styles */
    border: none !important;
    box-shadow: none !important;
    /* Removes box shadows if applied */
}