* {
    margin: 0;
    padding: 0;
    font-family: 'Sora', sans-serif;
}

/* .container {
    width: 100%;
    height: auto;
} */

/* navbar */

.navbar-nav {
    margin-right: 0 !important;
    padding-right: 100px;
}

.login-nav {
    margin-right: 0 !important;
    padding-right: 100px;

}

.nav-back {
    background-color: #F0F1EC;
    border-radius: 50px;
    /* background-size: contain; */
}

.logo-img {
    width: 150px;
}

.navbar {
    background-color: #ffffff;
    color: #000000;
    margin-top: 30px;
}

.nav-item {
    padding-left: 20px;
}

.nav-item a span {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    padding-left: 20px;
}

.nav-item a span:hover {
    color: #982020;
}

.nav-item button {
    margin-left: 60px;
    color: #15809E;
    border-radius: 50px;
    width: 120px;
    /* height: 100%; */
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #15809E;
    border-color: #fff;
    box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.nav-item button:hover {
    span {
        color: #FFF;
    }

    /* background-color: #982020;
    border-color: #fff; */
}

.nav-item button span {
    color: #fff;
}

.nav-item a.active span {
    color: #982020;
    font-weight: 700;
    /* text-decoration: underline; */
    /* text-decoration-color: #102D35; */
}

.nav-item {
    padding: 4px;
}

.navbar-brand {
    color: #000000 !important;
    padding-left: 100px;
}

#navbar button {
    color: white !important;
}

/* Container */

/* banner */

#banner-container {
    /* height: 520px; */
    background-color: #fff;
    color: #000000 !important;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 0;
    position: relative;
}

#banner-container .banner-img {
    float: right;
    margin-top: -404px;
    /* margin-right: 90px; */
}

#banner-container .front-img {
    width: 600px;
    /* width: 575px; */
    height: auto;

}

#banner-row h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 55px;
    margin-left: 90px;
    text-align: left;
    color: #0e3d4a;
    float: left;
}

#banner-row p {
    padding-left: 90px;
    padding-top: 20px;
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}

#banner-row button {
    margin-top: 20px;
    width: 200px;
    height: 70px;
    border-radius: 10px;
    margin-right: 20px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

#banner-row .button {
    margin-left: 90px;
    float: left;
}

#banner-row .login {
    margin-right: -40px;
}

#banner-row .signup {
    background-color: #102D35;
}

#banner-row .login {
    background-color: #d73333;
}

#banner-row a {
    background-color: white !important;
    color: black !important;
    border: none;
    margin-left: 20px;
    margin-top: 20px;

}

#banner-row img {
    /* width: 900px; */
    /* height: 400px; */
    /* margin-top: -100px; */
    margin-right: 100px;
}

#banner-col {
    padding-left: 20px;
}


/* Initially hide the text */
#banner .banner-text h2,
.banner-text p {
    opacity: 0;
    /* Hide text initially */
    transform: translateY(20px);
    /* Start slightly lower */
    transition: opacity 1s ease, transform 1s ease;
    /* Apply transition to opacity and transform */
}

/* Apply styles when text is visible */
#banner .banner-text.show h2,
.banner-text.show p {
    opacity: 1;
    /* Fade in the text */
    transform: translateY(0);
    /* Bring text to its normal position */
}

/* Add some smooth transition on hover to button */
#banner .button button {
    transition: all 0.3s ease;
}

#banner .button button:hover {
    transform: scale(1.05);
    /* Slightly enlarge button on hover */
}

/* Optional: Style for the banner text */
#banner .banner-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

#banner .banner-text p {
    font-size: 18px;
    color: #666;
}

/* blue-card */
#blue-card {
    position: relative;
    /* height: 520px; */
    padding-top: 50px;
    /* padding-bottom: 0px; */
    background-color: #15809E;
    color: #ffffff;
    overflow: hidden;
}

#blue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 30%, rgba(0, 0, 0, 0.7) 70%);
    filter: blur(5px);
    /* Apply a blur to the glow */
    opacity: 0.7;
    /* Adjust the opacity of the glow */
    pointer-events: none;
    /* Prevent interaction with the glow layer */
    z-index: -1;
    /* Ensure the glow is behind the content */
}

/* Optional: Transition effect for hover */
#blue-card:hover::before {
    opacity: 0.7;
    /* Increase the opacity on hover */
}

/*  */

#blue-card img {
    width: 397px;
}

#blue-card h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 55px;
    margin-left: 90px;
    text-align: left;
    padding-right: 10px;
}

#blue-card p {
    padding-right: 120px;
    /* padding-top: 20px; */
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}


/*  */

/* Add transitions to the image and text inside the card */
/* #blue-card .image-container img {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 1s ease;
  } */

#blue-card .blue-card-text h3,
#blue-card .blue-card-text p {
    opacity: 0;
    transform: translateX(-20px);
    /* Start text slightly off to the left */
    transition: opacity 1s ease, transform 1s ease;
}

/* When the card is shown, make the image and text appear */
#blue-card.show .image-container img {
    opacity: 1;
    transform: scale(1);
}

#blue-card.show .blue-card-text h3,
#blue-card.show .blue-card-text p {
    opacity: 1;
    transform: translateX(0);
}


#service-col3 {
    padding-top: 60px;
}

/* about */

#mouve-card {
    /* height: 520px; */
    padding-top: 50px;
    /* padding-bottom: 80px; */
    background-color: #A685D1;
    color: #ffffff;
}


#mouve-card h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 55px;
    margin-left: 90px;
    text-align: left;
    padding-right: 10px;
    margin-top: -40px;
    /* padding-top: -100px; */
}

#mouve-card-col p {
    padding-right: 120px;
    /* padding-top: -200px; */
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}

#mouve-card-container .card-img {
    margin-top: -206px;
    /* float: left; */
    padding-left: 750px;
    /* padding-right: 130px; */
}

#mouve-card-container img {
    width: 450px;
}

#mouve-card-col {
    margin-top: 105px;

}

#mouve-card .mouve-card-text h3,
#mouve-card .mouve-card-text p {
    opacity: 0;
    transform: translateX(-20px);
    /* Start text slightly off to the left */
    transition: opacity 1s ease, transform 1s ease;
}

/* When the card is shown, make the image and text appear */
#mouve-card.show .image-container img {
    opacity: 1;
    transform: scale(1);
}

#mouve-card.show .mouve-card-text h3,
#mouve-card.show .mouve-card-text p {
    opacity: 1;
    transform: translateX(0);
}

/* product */

#group {
    padding-top: 80px;
    padding-bottom: 80px;
}

#group h3 {
    padding-bottom: 70px;
    background-color: #0e3d4a;
    padding: 10px;
    margin: 0 100px 30px 100px;
    color: #FFF;
    height: 50px;
    text-align: center;
    border-radius: 15px;
    font-weight: 700;
    width: 70%;
}

#group p {
    margin-top: -10px;
    color: #3F3F3F;
}

/* Style the search field */


#group-col2 ul {
    padding-top: 90px;
}

#group-col2 ul li {
    padding-top: 15px;
}

/* Groups */
/* #groups .join-group-bar {
    background-color: #0e3d4a;
    color: red;
} */


#group #product-container .fx {
    display: flex;
  }
  
  #group #product-container .fx-gap {
    gap: 18px;
  }
  
  #group #product-container input,
  button {
    color: #fff;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    outline: none;
  }
  
  #group #product-container form {
    position: absolute;
    /* top: 1980px; */
    margin-top: 1990px;
    left: 0;
    right: 0;
    width: 750px;
    height: 96px;
    padding: 30px;
    margin: -83px auto 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 40px #ff7c7c, 0 0 0 20px #ebe4e4eb;
    transform: scale(0.6);
  }
  
  #group #product-container input[type="text"] {
    width: 450px;
    /* height: 96px; */
    font-size: 30px;
    /* line-height: 1; */
    color: #ff7c7c;
  }
  
  #group #product-container input[type="text"]::placeholder {
    color: #ff7c7c;
  }
  
  #group #product-container button {
    position: relative;
    display: block;
    width: 80px;
    height: 40px;
    cursor: pointer;
    left: 140px;
  }
  
  #group #product-container #search-icon-circle {
    position: relative;
    top: -15px;
    left: 0;
    width: 50px;
    height: 50px;
    margin-top: 0;
    border-width: 15px;
    border: 15px solid #ff7c7c;
    background-color: transparent;
    border-radius: 50%;
    transition: 0.5s ease all;
  }
  
  #group #product-container button span {
    position: absolute;
    top: 28px;
    left: 25px;
    display: block;
    width: 45px;
    height: 15px;
    background-color: transparent;
    border-radius: 10px;
    transform: rotateZ(52deg);
    transition: 0.5s ease all;
  }
  
  #group #product-container button span:before,
  #product-container button span:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 15px;
    background-color: #ff7c7c;
    border-radius: 10px;
    transform: rotateZ(0);
    transition: 0.5s ease all;
  }
  
  #group #product-container #search-icon:hover #search-icon-circle {
    top: -1px;
    width: 67px;
    height: 15px;
    border-width: 0;
    background-color: #ff7c7c;
    border-radius: 20px;
  }
  
  #group #product-container #search-icon:hover span {
    top: 50%;
    left: 56px;
    width: 25px;
    margin-top: -9px;
    transform: rotateZ(0);
  }
  
  #group #product-container #search-icon:hover button span:before {
    bottom: 11px;
    transform: rotateZ(52deg);
  }
  
  #group #product-container #search-icon:hover button span:after {
    bottom: -11px;
    transform: rotateZ(-52deg);
  }
  #group #product-container #search-icon:hover button span:before,
  #search-icon:hover button span:after {
    right: -6px;
    width: 40px;
    background-color: #ff7c7c;
  }
  

/* Group List */
#group .container {
    padding-top: 85px;
    width: 900px;
}

#blog {
    /* height: 500px; */
    padding-top: 85px;
    /* background-color: #01579B; */
}

.card {
    
    background-color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


#p-img-card {
    height: 350px;
}

#product-container .container {
    width: 100%;
}

.image-container {
    
    position: relative;
}

.image-container img:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.thumbnail-image {
    border-radius: 10px !important;
    height: 250px;
    width: 100%;
}

#containerP {
    margin-top: -100px;
}

#group .btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    padding: 3px;
}

#group a {
    text-decoration: none;
}

.creme {
    background-color: #fff;
    border: 2px solid grey;


}

.creme:hover {
    border: 3px solid grey;
}

.creme:focus {
    background-color: grey;

}


.red {
    background-color: #fff;
    border: 2px solid red;

}


.red:hover {
    border: 3px solid red;
}

.red:focus {
    background-color: red;
}



.blue {
    background-color: #fff;
    border: 2px solid #40C4FF;
}

.blue:hover {
    border: 3px solid #40C4FF;
}

.blue:focus {
    background-color: #40C4FF;
}

.darkblue {
    background-color: #fff;
    border: 2px solid #01579B;
}

.darkblue:hover {
    border: 3px solid #01579B;
}

.darkblue:focus {
    background-color: #01579B;
}

.yellow {
    background-color: #fff;
    border: 2px solid #FFCA28;
}

.yellow:hover {
    border-radius: 3px solid #FFCA28;
}

.yellow:focus {
    background-color: #FFCA28;
}


.item-size {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid grey;
    color: grey;
    font-size: 10px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}


.rating-star {
    font-size: 10px !important;
}

.rating-number {
    font-size: 10px;
    color: grey;

}

.buy {
    font-size: 12px;
    color: purple;
    font-weight: 500;
}

.voutchers {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;

}

/* .voutchers:hover {
    
} */

.voutcher-divider {

    display: flex;

}

.voutcher-left {
    width: 60%
}

.voutcher-name {
    color: grey;
    font-size: 9px;
    font-weight: 500;
}

.voutcher-code {
    margin-top: 16px;
    color: red;
    font-size: 15px;
    font-weight: bold;
}

.voutcher-right {
    width: 40%;
    background-color: purple;
    color: #fff;
}

.voutcher-right:hover {
    background-color: red;
}

.discount-percent {
    font-size: 12px;
    font-weight: bold;
    position: relative;
    top: 5px;
}

.off {
    font-size: 14px;
    position: relative;
    bottom: 5px;
}

/* social */

#social {
    padding-top: 80px;
    padding-bottom: 80px;
}

#social h1 {
    padding-bottom: 70px;
}

.social-col a:hover img {
    transform: translateY(-10px);
}

#social-row {
    flex-direction: row;
}

/* footer */

#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    color: white;
    text-align: center;
}

#footer-col1 img {
    width: 200px;
}

.mb-3 {
    padding-top: 10px;
}

#social-row img {
    width: 20px;
}

#footer-col2 .copyright {
    margin-top: -10px;
    font-size: 10px;
}

#footer-row {
    margin-top: -60px;
}

#footer-row .terms {
    margin-left: 80px;
}

#footer-row .terms a {
    text-decoration: none;
    color: #000000;
}

#footer-row .faqs,
.terms-conditions {
    font-size: 15px;
    font-weight: 600;
}

#footer-row .terms-conditions {
    padding-right: 10px;
    margin-top: -2px;
}


#footer-row .powered {
    margin-left: 94px;
    margin-top: -10px;
}

#footer-row .powered p {
    font-size: 10px;
}

#footer-row .powered img {
    width: 100px;


}

#footer-row .powered .jima-logo {
    margin-left: 25px;
    margin-top: -43px;
}


/* Sign up as an organisation Style */

.signup-image-container {
    position: relative;
    /* This makes the overlay position relative to the container */
    display: inline-block;
    /* Make the image container behave like a block-level element */
    width: 100%;
    /* Full width */
    /* border-radius: 20px; */
}

.signup-image-container img {
    width: 100%;
    /* Make sure the image is responsive */
    border-radius: 25px;
    /* Optional: rounded corners */
    transition: none;
}

.signup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 108, 156, 0.7);
    /* Yellow color with transparency */
    border-radius: 20px;
    /* Optional: rounded corners to match the image */
    pointer-events: none;
    /* Prevent the overlay from blocking clicks or interactions with the image */
}

.joinInfo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(235, 166, 18, 0.7);
    /* Yellow color with transparency */
    border-radius: 20px;
    /* Optional: rounded corners to match the image */
    pointer-events: none;
    /* Prevent the overlay from blocking clicks or interactions with the image */
}

.logo-text {
    margin-top: -50px;
    font-size: 55px;
    font-weight: 900;
    line-height: 58px;
}

#contact_person_info img {
    background-color: #E85858;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 88, 88, 0.4);
    /* Yellow color with transparency */
    border-radius: 20px;
    /* Optional: rounded corners to match the image */
    pointer-events: none;
    /* Prevent the overlay from blocking clicks or interactions with the image */
}

.secutity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 121, 195, 0.4);
    /* Yellow color with transparency */
    border-radius: 20px;
    /* Optional: rounded corners to match the image */
    pointer-events: none;
    /* Prevent the overlay from blocking clicks or interactions with the image */
}

/* Initially hide the forms */
#contact_person_info {
    display: none;
    /* Hidden initially */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* When showing, we fade in */
.show {
    display: block;
    opacity: 1;
}

/* Slide-in and Slide-out animations */
.slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out forwards;
}

.slide-out-right {
    animation: slideOutRight 0.5s ease-in forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.5s ease-in forwards;
}

/* Slide-in animation from the right (for Continue button) */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide-in animation from the left (for Back button) */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide-out animation to the right (for Continue button) */
@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Slide-out animation to the left (for Back button) */
@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}



#contact_person_info .back {
    width: 30px;
}

#contact_person_info .front {
    width: 30px;
}

.sign_as_organisation {
    padding: 20px;
}

.sign_as_organisation h2 {
    font-weight: 700;
}

.sign_as_organisation h5 {
    color: #E85858;
    font-weight: 700;
}

.sign_as_organisation input {
    background-color: #DEF8FF;
    border-color: #000000 solid 5px;
    border-radius: 10px;


}

.sign_as_organisation select {
    background-color: #DEF8FF;
    /* border: #DEF8FF; */
    border-color: #000000 solid 5px;
    border-radius: 10px;

}

.sign_as_organisation select option {
    background-color: #DEF8FF;
    border-radius: 10px;
}

.sign_as_organisation input::placeholder {
    font-size: 15px;
    text-align: left;
    font-style: italic;
    opacity: 0.3;
}

.sign_as_organisation textarea {
    background-color: #DEF8FF;
    border: #DEF8FF;
    border-radius: 10px;

}

.sign_as_organisation textarea::placeholder {
    font-size: 15px;
    text-align: left;
    font-style: italic;
    opacity: 0.3;
}

.sign_as_organisation button {
    border-radius: 10px;
}

/* Payment Form */
#payment .payment-card {
    background-color: #15809E;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#payment h6 {
    color: #FFF;
    padding-right: 20px;
    padding-top: 20px;
}

#payment .registration_fee_txt {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
}

#payment .radio {
    margin-top: -25px;
}

#payment .radio input {
    border-color: #000000;
    width: 20px;
    height: 20px;
}

#payment .radio label {
    margin-top: 8px;
    padding-left: 5px;
}

.radio-wrapper {
    display: flex;
    align-items: center;
}

.payment-label {
    margin-left: 8px;
    /* Adjust space between the input and label */
}

.notice {
    background-color: #f9f9f9;
    /* Light background for the notice */
    border-left: 5px solid #ff9800;
    /* Orange left border for emphasis */
    padding: 15px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    /* Align icon and text horizontally */
    border-radius: 10px;
}

.notice i {
    font-size: 24px;
    /* Set icon size */
    color: #ff9800;
    /* Icon color to match the border */
    margin-right: 10px;
    /* Space between icon and text */
}

.notice p {
    margin: 10px 0;
}

.notice strong {
    font-weight: bold;
    color: #d32f2f;
    /* Red color for emphasized text */
}

.member_type {
    margin-top: -10px;
}

.member_type2 {
    margin-top: -25px;
}

.membership_fee input {
    background-color: #7eb0bf;
}

.membership_fee input::placeholder {
    color: #000000;
    font-style: normal;
    opacity: 0.7;
}

.membership_fee input[readonly] {
    background-color: #7eb0bf;
}

.pay-for {
    padding-top: 40px;
}

#payment2 .payment-card {
    background-color: #15809E;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#payment2 h6 {
    color: #FFF;
    padding-right: 20px;
    padding-top: 20px;
}

#payment2 .registration_fee_txt {
    font-size: 25px;
    font-weight: 700;
    color: #FFF;
}

#payment2 .radio {
    margin-top: -25px;
}

#payment2 .radio input {
    border-color: #000000;
    width: 20px;
    height: 20px;
}

#payment2 .radio label {
    /* margin-top: 8px; */
    padding-left: 15px;
}

#payment2 .payment-container {
    /* max-width: 400px; */
    margin: auto;
    background-color: #fff;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#payment2 .payment-option {
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 20px;
    background-color: #15809E;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgb(0, 0, 0);
    padding-right: 30px;
}

#payment2 .payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#payment2 .payment-option input[type="radio"]{
    background-color: #01579B;
}

#payment2 .payment-option img {
    margin-left: 10px;
    width: 50px;
}

#payment2 .pay {
    padding-top: 20px;
}

.notice-terms {
    background-color: #f9f9f9;
    /* Light background for the notice */
    border-left: 5px solid #ff9800;
    /* Orange left border for emphasis */
    padding: 15px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    align-items: center;
    /* Align icon and text horizontally */
    border-radius: 10px;
}

.notice-terms i {
    font-size: 24px;
    /* Set icon size */
    color: #ff9800;
    /* Icon color to match the border */
    margin-right: 10px;
    /* Space between icon and text */
}

.notice-terms p {
    /* margin: 10px 0; */
    color: #420001;
}

.notice-terms .txt1 {
    margin-top: -15px;
    margin-left: 40px;
    color: #420001;
}

.notice-terms .txt2 {
    margin-top: -15px;
    margin-left: 40px;
    color: #000000;
}

.notice-terms strong {
    font-weight: bold;
    color: #d32f2f;

    /* Red color for emphasized text */
}

.checkbox {
    margin-top: 20px;
}

.checkbox input {
    border-color: #000000;
    width: 20px;
    height: 20px;
}

.checkbox label {
    margin-top: 8px;
    padding-left: 10px;
    color: #FFF;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.short-code {
    border-radius: 30px;
    background-color: #FF3B30;
    padding: 5px;
}

.login-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(195, 188, 188, 0.2), 0 6px 20px 0 rgba(217, 205, 205, 0.19);
}

/* media */
/* @media only screen and (max-width: 987px) {
    .navbar-brand {
        padding-left: 0px;
    }

    #footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 700px;
        color: white;
        text-align: center;
    }



} */

@media only screen and (max-width: 987px) {
    /* #banner-row img{
        padding-top: 20px;
    } */

    .navbar-brand {
        padding-left: 0px;
    }

    .social-col {
        width: 33%;
    }

    #containerP {
        margin-top: 0;
    }

    /* #banner {
        width: 100%;
    } */

    #banner-container .banner-img {
        /* float: right; */
        margin-top: -810px;
        /* padding-right: -25px; */
    }

    #banner-container .front-img {
        width: 450px;
        /* width: 575px; */
        height: auto;
        /* position: fixed; */

    }



    #banner .banner-text h2 {
        font-size: 30px;
        font-weight: 600;
        line-height: 35px;
        /* margin-right: 90px; */
        margin-left: 0;
        padding-top: 260px;
        text-align: center;
        color: #0e4371;
        text-align: center;
    }

    #banner .banner-text p {
        padding-left: 0;
        font-size: 16px;
        text-align: center;
        color: gray;
    }

    #banner .button {
        float: none;
    }

    #banner .sign-log {
        margin-left: -50px;
    }

    #banner .signup {
        height: 90px;
    }

    #banner .sign {
        margin-left: 0;
    }

    #banner .log {
        margin-left: 0;
    }

    #banner .login {
        height: 90px;
    }

    #blue-card {
        height: 660px;
    }

    #blue-card #service-col1 img {
        width: 260px;
        margin-top: 302px;

    }



    #blue-card #service-col3 h3 {
        margin-top: -660px;
        line-height: 33px;
        margin-left: 0;
        font-size: 25px;
        text-align: left;
        font-weight: 700;
    }

    #blue-card #service-col3 p {
        /* margin-top: -700px; */
        padding-left: 0;
        padding-right: 0;
        font-size: 14px;
        text-align: left;
    }

    #mouve-card {
        height: 660px;
    }

    #mouve-card-container .card-img {
        margin-top: 25px;
        float: right;
        padding-right: 330px;
        /* padding-right: 130px; */
    }

    #mouve-card-container img {
        width: 300px;
    }

    #mouve-card-container h3 {
        margin-left: 0;
        font-size: 27px;
        line-height: 33px;
        margin-top: -100px;
    }

    #mouve-card-container p {
        padding-left: 0;
        padding-right: 0;
        font-size: 14px;
        /* line-height: 33px; */
        /* margin-top: -100px; */
    }

    #group .join-group-txt h3 {
        /* width: 400px; */
        margin-left: 0;
        margin-right: 0;
    }

    #group #product-container form {
        position: absolute;
        top: 2580px;
        left: -80px;
        right: 0;
        width: 550px;
        height: 96px;
        padding: 30px;
        margin: -83px auto 0 auto;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 5px 40px #ff7c7c, 0 0 0 20px #ebe4e4eb;
        transform: scale(0.6);
      }

      #group #product-container button {
        position: relative;
        display: block;
        width: 70px;
        height: 30px;
        cursor: pointer;
        left: -20px;
      }


    #group #product-container .container {
        /* padding-left: 30px; */
        width: 100%;
    }

    #group #product-container .container .card {
        width: 100%;
        padding: 20px;
    }

    #blog {
        padding-top: 255px;
    }

    #footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 300px;
        color: white;
        text-align: center;
    }

    #footer #banner {
        padding-bottom: 30px;
    }

    #footer-col1 img {
        width: 180px;
    }

    #footer-col1 {
        margin-top: 60px;
    }

    #footer-col2 .copyright {
        margin-top: -255px;
        font-size: 10px;
    }

    #footer-row {
        margin-top: -60px;
    }

    #footer-row .terms {
        margin-left: 0;
        margin-top: -25px
    }

    #footer-row .terms a {
        text-decoration: none;
        color: #000000;
    }

    #footer-row .faqs {
        /* float: left; */
        padding-top: 50px;
    }

    #footer-row .terms-conditions {
        /* float: right; */
        /* padding-top: -100px; */
        margin-top: 0;
    }

    #footer-row .faqs,
    .terms-conditions {
        font-size: 15px;
        font-weight: 600;
    }

    #footer-row .terms-conditions {
        padding-right: 10px;
        margin-top: -14px;
    }


    #footer-row .powered {
        margin-left: 60px;
        margin-top: 10px;
    }

    #footer-row .powered p {
        font-size: 10px;
        margin-right: 200px;
    }

    #footer-row .powered img {
        width: 130px;
        margin-right: 60px;
        margin-top: -10px;
    }

    #footer-row .powered .jima-logo {
        margin-left: 40px;
        margin-top: -43px;
    }


    #footer-col2 .social-col {
        margin-top: -540px;
    }

    .nav-login {
        display: none;
    }


    /*  */

    /* .social-col {
        padding: 0px;
    } */

}

/* Normal screen to bigger screen */
@media only screen and (min-width: 768px) {

    .navbar-nav .login {
        display: none;
    }

    #banner-container .front-img {
        width: 700px;
        /* width: 575px; */
        height: auto;

    }

    #banner-container .banner-img {
        float: right;
        margin-top: -427px;
        margin-right: 100px;
    }


    #banner-container {
        /* height: 500px; */
        background-color: #fff;
        color: #000000 !important;
        padding-top: 80px;
        padding-bottom: 80px;
        z-index: 0;
        position: relative;
    }


    #banner-row button {
        margin-top: 20px;
        width: 200px;
        height: 80px;
        font-weight: 600;
        border-radius: 10px;
        margin-right: 20px;
        /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    }

    #banner-row .button {
        margin-right: 50px;

    }

    #banner-row .login {
        margin-right: -40px;
        padding: auto;
    }

    #banner-row .signup {
        background-color: #102D35;
    }

    #banner-row .login {
        background-color: #d73333;
    }

    #mouve-card-container .card-img  {
        margin-top: -296px;
        padding-left: 800px;
    }

    #group #product-container form {
        position: absolute;
        /* top: 1950px; */
        left: 0;
        right: 0;
        width: 750px;
        height: 96px;
        padding: 30px;
        margin: -83px auto 0 auto;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 5px 40px #ff7c7c, 0 0 0 20px #ebe4e4eb;
        transform: scale(0.6);
      }

      #group #product-container .searchbar {
        margin-top: 200px;
      }

}