/* ///////////////////////////// common css /////////////////////////////////// */
img {
    width: 100%;
    height: 100%;
}

.row {
    --bs-gutter-x: 0rem !important;
}

:root {
    --base-duration: 500ms;
    --color-1: #2c3e50;
    --color-2: #1abc9c;
    --color-3: #2ecc71;
}

/* ///////////////////////////// common css /////////////////////////////////// */

/* /////////////////////////// Accordien start ///////////////////////////////////////// */

img {
    max-width: 100%;
    height: auto;
}

.page-wrapper {
    box-sizing: content-box;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.accordion-group {
    margin: 1rem 0;
}

.accordion {
    background-color: #034177;
    border-radius: 1rem;
    box-shadow: 0 5px 5px -5px rgb(52 80 99);
}

.accordion+.accordion {
    margin-top: 1rem;
}

.ac-state {
    display: none;
}

.ac-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.1rem;
    /* border-radius: 1rem; */
    background-color: #fff;
    /* border-top: 1px solid #034177; */
    color: #034177;
}

/* .ac-trigger:hover,
.ac-trigger:focus {
    background-color: #fff;
    border: 2px solid #022C51;
    border-radius: 1rem;
    color: #022C51;


} */

.ac-title {
    font-weight: 600;
}

.ac-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
}

.ac-content-inner {
    overflow: hidden;
    padding: 0 1rem;
    /* color: white; */
    background-color: #fff;
}

.ac-content-inner ul {
    color: 034177;
}

.ac-content img {
    display: block;
    margin: 0 auto;
}

.ac-state:not(:checked)~.ac-trigger .ac-icon-close {
    display: none;
}

.ac-state:checked~.ac-trigger {
    background-color: #034177;
    color: #fff;
    /* box-shadow: 0 5px 5px -5px rgb(52 80 99); */
    border: 1px;
}

.ac-state:checked~.ac-trigger .ac-icon-open {
    display: none;
}

.ac-state:checked~.ac-content {
    grid-template-rows: 1fr;
}

/* /////////////////////////// Accordien end ///////////////////////////////////////// */
/* /////////////////////////// footer  section ///////////////////////////////////////// */
footer {
    background-color: #034177;
    color: #f0f0f0;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: #034177;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section ul li a i {
    margin-right: 5px;
    color: #034177;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    /* background-color: #333; */
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #fff;
    transform: translateY(-3px);
    color: #034177;
}

.newsletter h4 {
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
}

.newsletter button {
    background-color: #034177;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #034177;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    /* border-top: 1px solid #333; */
    position: relative;
}

.newsletter form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    /* margin: 0 auto; */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.newsletter input[type="email"] {
    flex: 1;
    padding: 16px 15px;
    border: none;
    outline: none;
    font-size: 14px;

    /* border-radius: 25px 0 0 25px; */
}

.newsletter button {
    background: #034177;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 6px;

}

.newsletter button:hover {
    background: transparent;
    color: #034177;
    border: 2px solid #034177;
    font-weight: bold;
}

.back-to-top {
    display: none !important;
    position: fixed;
    right: 20px;
    bottom: 60px;
    background-color: #EEF0F6;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #EEF0F6;
    color: #034177;
}


/* /////////////////////////// footer  section ///////////////////////////////////////// */
/* /////////////////////////// All media quary ///////////////////////////////////////// */
@media only screen and (max-width: 1024px) {
    .footer-container {
        max-width: 900px !important;
    }
}

@media only screen and (max-width: 768px) {
    .footer-container {
        /* flex-direction: column; */
        max-width: 800px !important;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
    }
}

@media only screen and (max-width: 425px) {

    .back-to-top {
        right: 10px;
        bottom: 50px;
    }

   .sp_margin {
    margin-top: 0px !important;
   }
}

@media only screen and (max-width: 375px) {

    .back-to-top {
        right: 10px;
        bottom: 80px;
    }
}