/*RESET*/
body {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
a, a:hover{
    color: inherit;
}
/* dark */
body.overlay {
    overflow: hidden;
}
.img {
    width: 40px;
    height: 40px;
}
.lazyload {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lazyloaded {
    opacity: 1;
}
.btn {
    all: unset;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #f17732;
    color: #E6E7FF;
    font-weight: bold;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
}
svg {
    display: inline-block!important;
    width: 30px;
    height: 30px;
}

/*Header default*/
.header-menu {
    position: fixed; 
    top: 0;
    width: 290px;
    min-height: 100vh;
    bottom: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    max-width: 420px;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translate(200px, 0);
    transform: translate(200px, 0);
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
    z-index: 999999;
}
.header-menu {
    overflow: visible;
}

.navbar {
    z-index: 99;
    width: 100%;
    position: relative;
    right: 0;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #000000, #1d2228);
    color: #ffffff !important; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: none; 
    padding: 15px 0; 
    font-family: 'Arial', sans-serif; 
    border-bottom: 1px solid rgb(0, 0, 0);
}
.ullist li {
    color: #ffffff;
    border-radius: 8px;
    padding: 6px;
    transition: 0.3s;
}

.ullist li:hover {
    transform: scale(1.1);
}

.ullist li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: rgb(255, 255, 255);
    transition: width 0.3s ease;
}

.ullist li:hover::after {
    width: 100%;
}

.navbar .burger-icon svg {
    fill: rgb(255, 255, 255);
}
/*.navbar.scrolled  {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 200;
    background-color: #44B900;
    transition: all 1s ease;
    width: 100%;
    height: 3px;
}
*/

.header-menu.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.header-menu .mobile-menu-wrap nav {
    height: 100%;
}
.header-menu .close-btn {
    position: relative;
    background-color: transparent;
    padding: 0;
    border: none;
    width: 30px;
    height: 30px;
}
.burger-icon {
    position: relative;
    width: 24px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.custom-header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.body-overlay {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    visibility: hidden;
    width: 100%;
    cursor: crosshair;
    overflow: hidden;
    z-index: 999;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-wrapper {
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-menu nav .mobile-menu li a {
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    display: inline-block;

}
.header-menu nav .mobile-menu li ul li {
    padding: 10px 0;
    border-bottom: none;
}

.header-menu .mobile-menu-wrap nav .mobile-menu li ul li a {
    font-size: 15px;
    display: block;
    font-weight: 500;
}

.header-menu .mobile-menu-wrap nav .mobile-menu li ul li ul {
    margin-top: 10px;
}

.header-menu nav {
    padding: 30px 20px;
}
.header-menu .menu-title {
    margin-top: 15px;
    font-size: 29px;
    overflow: hidden;
}
.header-menu .menu-title a {
    color: #000000;
}

.mobile-social-icon {
    width: 100%;
    display: flex;

}
.mobile-social-icon div {
    flex: 1;
    max-width: 20%;
    text-align: center;
    transition: 0.3s;
}
.mobile-social-icon div:hover {
    transform: scale(1.2);
}
.nav-bottom {
    bottom: 23px;
    left: 0;
    z-index: 99;
}

.nav-bottom .container {
    max-width: 350px;
    min-height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-bottom .flex17 {
    font-size: 14px;
    cursor: pointer;
    width: 25%;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.nav-bottom .active {
    background-color: rgb(2, 27, 117);
    color: white;
    border-radius: 10px;
}

.nav-bottom svg {
    width: 24px;
    height: 24px;
    fill: #000000!important;
}
.nav-bottom .active svg {
    width: 24px;
    height: 24px;
    fill: #fff!important;
}
.nav-bottom a{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
#createAccount svg{
    margin: 0 auto;
}
#createAccount.active svg g{
    fill: #fff;
}
#createAccount svg g{
    fill: #000;
}
.nav-bottom .flex17:hover {
    background-color: rgb(72, 46, 235);
    border-radius: 10px;
    color: #fff;
}

.nav-bottom .text {
    display: none;
    font-size: 12px;
    margin-top: 5px;
}

.nav-bottom .flex17.active .text {
    display: block;
}
/******* End Nav  Bars ***************/
/******* car card***************/
.cars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cars-container .car-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 4px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    min-width: 90%;
}
.cars-container .car-card:hover {
    transform: translateY(-5px);
}
.cars-container .offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}
.cars-container .offer-badge div{
    background-color: rgba(7, 23, 255, 0.7); 
    padding: 5px 10px;
    border-radius: 5px;
}
.cars-container .offer-badge div:first-of-type {
    font-weight: bold;
    background-color: rgba(191, 6, 6, 0.7);
}

.cars-container .car-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.cars-container .car-info {
    padding: 15px;
}

.cars-container .car-details {
    font-size: 14px;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cars-container .car-price {
    font-size: 16px;
    color: #007bff;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    .cars-container .car-card {
        margin: 0 auto;
    }

    .cars-container .car-img {
        height: 180px;
    }
}

/******* End car card***************/
/*******Start  financing  ***************/
.title2 hr {
    background: linear-gradient(90deg, #4b79a1, #283e51);
    border: none;
    height: 3px;
    width: 14%;
    border-radius: 5px;
}

.title-lines {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.financing-section {
padding: 40px 20px;
border-radius: 15px;
margin: 20px auto;
text-align: center;
}

.section-title {
font-size: 28px;
color: #333;
margin-bottom: 15px;
}

.section-description {
font-size: 18px;
color: #555;
margin-bottom: 30px;
line-height: 1.6;
}

.financing-options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
}

.option-card {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 250px;
text-align: center;
transition: 0.3s;
border-radius: 20px;
}

.option-card:hover {
transform: scale(1.05);
}

.option-card::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
border-radius: 20px;
height: 0;
background-color: #084d5e;
z-index: -1;
transition: height 0.3s ease;
}

.option-card:hover::after {
height: 100%;

}

.option-card:hover {
color: #fff!important;
}

.card-icon {
font-size: 36px;
color: #050b0c;
margin-bottom: 10px;
transition: 0.3s;
}

.option-card:hover .card-icon {
color: #ffffff;
transform: rotate(360deg);
}

.option-card h3 {
font-size: 20px;

margin-bottom: 10px;
}

.option-card p {
font-size: 16px;
}
.financing-sectio {
    background-image: linear-gradient(#0a1010, #020e4c);
    border-radius: 30px;
    box-shadow: 2px 4px 8px rgb(11, 0, 93);
}

.sec-description {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: white;
}

.responsive-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 720px) {
    .text-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .image-section {
        margin-top: 30px;
        width: 100%;
    }

    .sec-description {
        font-size: 18px;
    }
}


/*******End  financing  ***************/
/******* Login page  ***************/
.login-section {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
}

.login-section img {
    flex: 1;
    width: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.login-section img:hover {
    transform: scale(1.05);
}

.login-form-1 {
    flex: 1;
    padding: 30px;

}

.login-form-1 h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}


.login-form-1 .input-group {
    position: relative;
    margin-bottom: 20px;
}

.login-form-1 .input-group input {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form-1 .input-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.login-form-1 .input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #007bff;
    font-size: 18px;
}

.login-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #0056b3;
}

.login-form-1 .extra-links {
    text-align: center;
    margin-top: 20px;
}

.login-form-1 .extra-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.login-form-1 .extra-links a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .login-section {
        flex-direction: column;
    }

    .login-section img {
        width: 100%;
        height: 200px;
    }

    .login-form-1 {
        padding: 20px;
        width: 90%;
    }
}
/******* End Login page  ***************/
/*******  signup page  ***************/
.left-section, .right-section {
    flex: 1;
    min-width: 300px;
}
.left-section img {
    max-width: 500px;
}
.allinputs .form-reg__group{
    flex: 1 1 calc(50% - 20px);
}
.form-reg__group .iconParent{
position: absolute;
left: 0;
top: 20px;
z-index: 10;
}
@media screen and (max-width: 768px) {
    .signup-section {
        flex-direction: column;
    }
    .allinputs .form-reg__group{
    flex: 1 1 100%;
}
}
/******* End signup page  ***************/
/******* policy banks  ***************/
.bank-policy-section {
    overflow: hidden;
    position: relative;
    padding: 30px 20px;
    display: block;
    max-width: 100%;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(135deg, rgba(13, 93, 69, 0.689), rgb(1, 8, 41));
}

.bank-policy-section p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bank-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.bank-text {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.bank-container {
    flex: 2;
    display: flex;
    gap: 15px;
    max-width: 100%;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
}

.bank-container::-webkit-scrollbar {
    height: 6px;
}

.bank-container::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.bank-container::-webkit-scrollbar-track {
    background: #ddd;
}

.bank-item {
    flex: 0 0 auto;
    text-align: center;
    max-width: 120px;
}

.bank-item .banks-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #043971;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-item .banks-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* تعديل هنا لعرض الصورة بكل تفاصيلها */
}


.bank-item span {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .bank-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}
/*******End  policy banks  ***************/




/******* primarypage  ***************/
.loader {
    border: 9px solid #A4A4A4;
    border-top: 15px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swiper-container {
    visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.swiper-pagination {
    bottom: 10px;
    text-align: center;
    color: white;
}

.swiper-pagination span {
    background: #11FF00;
}

.swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: blue !important;
    width: 28px;
    border-radius: 10px;
}

.swiper-slide {
    height: 300px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}
.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}
/*******End  primarypage  ***************/









/*******  products style shop ***************/

/******* Start form input ***************/

  .section-login .login-wrapper {
            background-color: #003E9C;
            padding: 30px;
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            border-top-right-radius: 7rem;
            color: white!important;

            border: 2px solid red;
        }
        .section-login h2 {
            margin-bottom: 20px;
            text-align: center;
            color: #fff;
        }

          .section-login .icon-wrapper {
            position: absolute;
            left: 10px;
            top: 49px;
            z-index: 10;
            transition: transform 0.3s ease;
        }

 .section-login p {
            color: white!important;
        }
        .section-login a {
            color: #A1A5FF!important;
        }
        .section-login .bgun {
            color: #00FAFF;
        }

        .section-login .links-wrapper {
            text-align: center;
            margin-top: 15px;
            color: #555;
        }

        .section-login .links-wrapper a {
            color: #007bff;
            text-decoration: none;
        }

        .links-wrapper a:hover {
            text-decoration: underline;
        }

        .loader-circle {
            width: 30px;
            height: 30px;
            border-style: solid;
            border-width: 2px;
            border-top-color: #2CDF00;
            -webkit-animation: spin 2000ms infinite ease;
            animation: spin 2000ms infinite ease;
            transition: .6s;
        }

       .loader-circle-alt {
            border-top-color: #0078ff;
        }

@-webkit-keyframes spin {
            0% {
                transform: rotate(0deg);
                transition: .6s;
            }
            100% {
                transform: rotate(360deg);
                transition: .6s;
            }
        }

@keyframes spin {
            0% {
                transform: rotate(0deg);
                transition: .6s;
            }
            100% {
                transform: rotate(360deg);
                transition: .6s;
            }
        }
        .btn-container button {
            display: flex;
            margin: 0 auto!important;
        }
 .field-group {
    margin-bottom: 15px;
}

.field-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.3s ease;
}
.field-group label {
    margin-bottom: 10px;
}
.field-group input:valid, 
.field-group input:focus {
    background: #E5E8E2;
    transform: scale(1.05);
    border: 2px solid #1CB500;
    position: relative;
    z-index: 5;
}
/******* End form input ***************/


/*===================================================
 Homes Banner
==================================================*/
.hero_banner {
    display: flex;
    height: auto;
    padding: 7rem 0;
    align-items: center;
    position: relative;

}

.side_block.extream_img {
    position: relative;
}
.list_crs_img .cirl {
    position: absolute;
    right: 5%;
    top: 10%;
}
.list_crs_img .arrow {
    position: absolute;
    top: 40%;
    right: 5%;
}
.list_crs_img .moon {
    position: absolute;
    left: 0%;
    top: 30%;
}
.side_block img {
    display: table;
    align-items: center;
    margin: 0 auto;
}
.animate-fl-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.animate-fl-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.animate-fl-x {
    -webkit-animation-name: fl-x;
    animation-name: fl-x;

    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.ffbv {
    -webkit-animation-name: fl-x;
    animation-name: fl-xb;

    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes fl-x {
    0% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes fl-x {
    0% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes fl-xb {
    0% {

        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    50% {

        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {

        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}
.animate-fl-y {
    -webkit-animation-name: fl-y;
    animation-name: fl-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes fl-y {
    0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes fl-y {
    0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}


/*===================================================
End  Homes Banner
==================================================*/

/*------------------- card design ---------------*/
.grid-wrapper {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 80px;
    background: #9C9C9C;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 30px;
    transition: all ease 0.4s;
    box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
    overflow: hidden;
    border: 2px solid #181B16;
}

.grid-wrapper::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(to bottom, #10c5f6, #0033FF);
    transition: transform 0.4s ease-in-out;
    transform: translateX(100%);
    z-index: 0;
}

.grid-wrapper:hover::before {
    transform: translateX(0);
}

.grid-icon {
    position: relative;
    display: inline-flex;
    width: 62px;
    height: 62px;
    margin: 2rem auto;
    justify-content: center;
    align-items: center;
    background: #10c5f6;
    border-radius: 50%;
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0px 0px 0px 10px rgb(3 185 124 / 20%);
    z-index: 1;
}

.grid-wrapper:hover .grid-icon {
    background: #ffffff;
    color: #0b94f7;
}
.grid-wrapper:hover {
    transform: translateY(-10px);
}
.caption-wrapper {
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.caption-wrapper h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.caption-wrapper p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #37455f;
}

.grid-wrapper:hover h4, .grid-wrapper:hover p {
    color: #ffffff;
}
/*------------------- End card design ---------------*/







/******* Start Footer style ***************/
.footer {
    background-image: linear-gradient(180deg, #084d5e, #000);
    color: #FFFFFF;
    padding: 20px;
    z-index: 1;
    overflow: hidden;
}
.footer a {
    color: #fff!important;
}

.footer h3 {
    margin-bottom: 10px;
    color: #f1c40f;
}

.footer-description p {
    margin: 0;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #f1c40f;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}


.footer-bottom {
    border-top: 1px solid red;
    padding-top: 10px;
    text-align: center;

}

.footer-bottom p {
    margin: 0;
    color: white;
    font-size: 14px;
}



/*-------------------  End Footer style ---------------*/