:root {
    --main-color: #792535;
    --secondary-color: rgba(252, 205, 139, 0.97);
    --main-transition: 0.3s;
    --text-mute: #897878;
    --text-mute-secondary: #bebebe;
    --gray-25: rgba(252, 252, 253, 1);
    --gray-50: rgba(249, 250, 251, 1);
    --gray-75: rgba(248, 248, 248, 1);
    --gray-200: rgba(234, 236, 240, 1);
    --gray-100: rgba(242, 244, 247, 1);
    --gray-300: rgba(208, 213, 221, 1);
    --gray-400: rgba(152, 162, 179, 1);
    --gray-500: rgba(102, 112, 133, 1);
    --gray-600: rgba(71, 84, 103, 1);
    --gray-700: rgba(52, 64, 84, 1);
    --gray-800: rgba(29, 41, 57, 1);
    --gray-900: rgba(16, 24, 40, 1);
    --collection-1-sec-50: rgba(252, 205, 139, 0.5);
    --collection-1-border: rgba(191, 146, 79, 1);
    --collection-1-sec-color: rgba(252, 205, 139, 1);
    --collection-1-brand: rgba(121, 37, 53, 1);
    --collection-1-color: rgba(255, 255, 255, 1);
}

body {
    font-family: "Almarai", sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

a {
    color: black;
    transition: var(--main-transition);
    text-decoration: none !important;
}

a:hover {
    color: var(--main-color);
}

li {
    list-style: none;
}

.border-golden {
    border: 1px solid var(--secondary-color) !important;
}

.title {
    color: var(--main-color);
    width: fit-content;
    position: relative;
    font-size: 28px;
    font-weight: 800;
    z-index: 2;
    padding-inline: 20px;
    padding-bottom: 5px;
    text-align: center;
}

.title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    z-index: -1;
    transform: translateX(20px) skewX(-15deg);
}

.title + p {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.text-primary {
    color: var(--main-color) !important;
}

.btn {
    border-radius: 20px;
    width: fit-content;
}

.btn-primary {
    background-color: var(--main-color);
    border: 1px solid white;
}

.btn-primary:hover {
    background-color: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.btn-primary:active {
    background-color: whitesmoke !important;
    color: black !important;
}

.btn-secondary {
    background-color: white;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.btn-secondary:hover {
    background-color: var(--main-color);
    color: white;
    border: 1px solid white;
}

/* navbar style */
.navbar {
    padding: 0;
}

.navbar .logo {
    width: 90px;
}

.navbar .logo img {
    max-width: 100%;
}

.navbar .collapse {
    justify-content: space-between;
}

.navbar .left-content {
    display: flex;
    background-color: white;
    padding: 16px;
    gap: 10px;
    font-size: 0.7rem;
}

.navbar .navbar-collapse .left-content {
    background-color: var(--secondary-color);
}

.navbar-toggler {
    transition: 0.3s all;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-toggler:hover {
    filter: drop-shadow(0 0 0.5rem black);
}

.navbar .left-content a i {
    margin-inline-end: 3px;
    padding-inline-end: 3px;
    border-inline-end: 1px solid black;
}

.navbar .container-fluid {
    padding-inline-end: 0;
    background-color: #ffffff;
}

/* .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: translateX(50%);
    background-color: #5d1120;
    opacity: 0;
} */

.navbar-nav .nav-item .nav-link.active {
    color: #5d1120;
    border-bottom: 2px solid #5d1120;
}

/* hero section */
.hero-section {
    position: relative;
}

.hero-section .we {
    position: absolute;
    left: 4%;
    bottom: -20px;
    z-index: 10;
    background-color: var(--main-color);
    color: white;
    padding: 20px;
    font-size: 30px;
}

.hero-section .we span {
    font-size: 5rem;
    line-height: 0;
}

/* section 2 in home page style */
.about-us {
    /*height: 100vh;*/
}

.about {
    background-color: var(--main-color);
    color: white;
    padding: 70px 30px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.about::after {
    /*position: absolute;*/
    /*content: '';*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*clip-path: polygon(28% 0, 100% 0%, 100% 100%, 28% 100%);*/
    /*z-index: -1;*/
    /*background-color: var(--main-color);*/
    /*top:  0;*/
    /*left: 0;*/
}

.about .title {
    margin-inline-start: 25px;
    margin-bottom: 1.5rem;
}

.about .subtitle {
    color: #df97a4;
    max-width: 480px;
    font-size: 0.9rem;
}

.about ul {
    margin-block: 60px;
    width: 500px;
}

.about ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    max-width: 500px;
    font-size: 0.9rem;
}

.about .video {
    position: absolute;
    top: 35%;
    right: 470px;
    border-radius: 10px;
    z-index: 5;
    overflow: hidden;
}

.about a {
    display: none;
}

.about .triangles {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

.cards-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin: 200px 0%;
    align-items: center;
    padding-inline: 15%;
}

.cards-section .card {
    border: 1px solid var(--main-color);
    border-radius: 20px;
    height: fit-content;
    gap: 10px;
    padding: 20px;
    background-color: #f9f7f6;
}

.cards-section .card img {
    width: 50px;
}

.cards-section .card p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.cards-section .card span {
    color: var(--text-mute);
    font-size: 0.9rem;
}

.cards-section .card a {
    width: fit-content;
}

.cards-section .card:nth-child(2) {
    padding: 30px;
    background-color: var(--main-color);
    /* order: 2; */
}

.cards-section .card:nth-child(2) span {
    color: var(--text-mute-secondary);
}

.cards-section .card:nth-child(2) p {
    color: white;
}

.cards-section .card:nth-child(2) a {
    background-color: white;
    color: var(--main-color);
}

video {
    border-radius: 15px;
}

video[poster] {
    object-fit: cover;
}

/* our care section */
.our_care {
    background-color: var(--main-color);
    padding-block: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.our_care .subtitle {
    color: var(--text-mute-secondary);
    font-size: 14px;
}

.our_care .left-circle {
    position: absolute;
    left: -50px;
    bottom: -130px;
}

.our_care .right-circle {
    position: absolute;
    right: 0px;
    bottom: -340px;
}

/*Our Achievements*/
.our_achievements {
    margin: 150px 50px;
}

.our_achievements .achievements-cards {
    position: relative;
    margin: 50px 180px;
}

.our_achievements .achievements-cards .card {
    /* height: 320px; */
}

.our_achievements .achievements-cards .card {
    padding-inline-start: 220px;
    border: navajowhite;
    /* box-shadow: 0px 0px 6px 1.5px #eee; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 53px;
    /* border-radius: 10px; */
}

.our_achievements .achievements-cards .card:nth-child(odd) {
    padding-inline-end: 220px;
    padding-inline-start: 0px;
}

.our_achievements .achievements-cards .card > img {
    width: 290px;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: -20px;
    right: -70px;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    background-color: white;
}

.our_achievements .achievements-cards .card:nth-child(odd) > img {
    left: -70px;
    right: initial;
}

.our_achievements .achievements-cards .card .hashtag {
    background-color: var(--secondary-color);
    width: fit-content;
    font-weight: 800;
    font-size: 20px;
    padding: 5px 15px;
}

.our_achievements .achievements-cards .card .achievement-title {
    font-size: 24px;
    font-weight: 800;
}

.our_achievements .achievements-cards .card .subtitle {
    color: var(--text-mute);
}

.our_achievements .achievements-cards .card .data {
    display: flex;
    padding: 0;
    gap: 35px;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .data
    li {
    display: flex;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .data
    li
    span {
    margin-inline-end: 7px;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .data
    li
    img {
    width: 15px;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .progress-bar
    > span
    .blog-section
    .progress-bar
    > span {
    text-align: start;
    font-weight: bold;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .progress-bar
    .bar,
.blog-section .progress-bar .bar {
    width: 100%;
    height: 25px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .progress-bar
    .bar
    .track,
.blog-section .progress-bar .bar .track {
    width: 85%;
    height: 100%;
    display: block;
    position: relative;
    border-radius: 10px;
    box-shadow: -2px 2px 4px 0px #ccc;
    margin-block: 5px;
    overflow: hidden !important;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards)
    .card
    .progress-bar
    .bar
    .track
    .progress,
.blog-section .progress-bar .bar .track .progress {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(
        90deg,
        #b06775 0%,
        #792535 48.23%,
        #5d1120 100%
    );
    height: 100%;
    border-radius: 10px;
}

/* :is(.our_achievements .achievements-cards, .our-projects .project-cards) .card .progress-bar .bar,
.blog-section .progress-bar .bar {
    width: 100%;
    height: 25px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards) .card .progress-bar .bar .track,
.blog-section .progress-bar .bar .track {
    width: 85%;
    height: 100%;
    display: block;
    position: relative;
    border-radius: 10px;
    box-shadow: -2px 2px 4px 0px #ccc;
    margin: 5px 0;
    overflow: visible;
}

:is(.our_achievements .achievements-cards, .our-projects .project-cards) .card .progress-bar .bar .track .progress,
.blog-section .progress-bar .bar .track .progress {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #b06775 0%, #792535 48.23%, #5d1120 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
} */


.our_achievements .achievements-cards .card .progress-bar .percentage,
.blog-section .progress-bar .percentage {
    color: rgba(130, 172, 71, 1);
}

/* our gallery section style */
.our_gallery {
    background-color: #f5f1f1;
    position: relative;
    margin-bottom: 200px;
    height: 48vh;
}

.our_gallery .title {
    display: block;
    margin: auto;
    position: absolute;
    top: -25px;
    transform: translateX(-50%);
}

.our_gallery > img {
    position: absolute;
    max-width: 100%;
    height: 100%;
}

.our_gallery > img:nth-child(1) {
    right: 0;
}

.our_gallery > img:nth-child(2) {
}

/* upcoming events section style */
.upcoming {
    background-color: var(--main-color);
    position: relative;
    padding: 100px 100px 50px;
    margin-top: 190px;
}

.upcoming .title {
    margin-bottom: 20px;
    margin-inline-start: -30px;
}

.upcoming > img {
    position: absolute;
    top: 0;
    left: 0;
}

.upcoming .events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 2px;
    overflow: hidden;
}

.event {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 250px;
}
/* .event::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    opacity: 0.5;
    background: rgb(255, 167, 81);
    background: linear-gradient(
        135deg,
        rgba(255, 167, 81, 1) 0%,
        rgba(255, 223, 86, 1) 81%,
        rgba(255, 228, 88, 1) 100%
    );
    z-index: 1;
} */

.event > img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: var(--main-transition);
}
.event:hover > img {
    /*filter: blur(0px) brightness(0.6);*/
}
.event .overlay {
    position: absolute;
    bottom: 0;
    height: 100%;
    background-color: rgba(121, 37, 52, 0.54);
    color: #f1f1f1;
    width: 100%;
    transition: 0.5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event:hover .overlay {
    opacity: 1;
}
.btn-golden{
    background-color: var(--secondary-color);
}
.upcoming .events-container .event .details {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
    color: black;
    z-index: 2;
    flex-direction: column;
    justify-content: space-between;
    align-items: self-start;
}

.upcoming .events-container .event .details .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    background-color: var(--secondary-color);
    padding: 15px 10px 10px 15px;
    border-radius: 0px 30px 0px 0px;
    font-weight: bold;
    color: black;
    font-size: 12px;
}

.upcoming .events-container .event .details .date .day {
    line-height: 1rem;
    font-weight: 800;
    font-size: 20px;
}

.upcoming .events-container .event .details .event-title {
    position: relative;
    /* margin-block: 5px; */
    border-radius: 10px 10px 10px 10px;
    background-color: var(--secondary-color);
    padding: 10px 10px 10px 15px;
    font-size: 16px;
}

/* .upcoming .events-container .event .details .event-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 9px;
    width: 100%;
    height: 50%;
    background-color: var(--secondary-color);
    opacity: 0.6;
    z-index: 0;
} */

/* Team members section style */
.work-team {
    margin: 100px;
}

.work-team .members-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 100px;
    margin-top: 50px;
}

.work-team .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-team .team-member .images {
    position: relative;
    width: fit-content;
}

.work-team .team-member img.person {
    display: block;
    margin: auto;
    padding: 3px;
    box-shadow: 0px 1px 3px 2px #ccc;
    max-width: 100%;
}

.work-team .team-member :is(img.polygon1, img.polygon2) {
    position: absolute;
    right: -50px;
    top: -25px;
    transform: rotate(0deg);
}

.work-team .team-member img.polygon2 {
    right: -20px;
    top: -10px;
}

.work-team .team-member .member-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0;
    margin-top: 15px;
}

.work-team .team-member .member-position {
    margin-bottom: 5px;
    font-weight: 600;
}

.work-team .team-member .member-quote {
    color: #999797;
    font-weight: bold;
    margin-block: 7px 5px;
    position: relative;
}

.work-team .team-member .member-quote::after,
.work-team .team-member .member-quote::before {
    position: absolute;
    content: "”";
    left: -13px;
    top: -5px;
    width: 10px;
    height: 10px;
    font-weight: bold;
    color: black;
    font-size: 3rem;
}

.work-team .team-member .member-quote::before {
    content: "“";
    left: initial;
    top: -15px;
    right: -23px;
}

.work-team .team-member .social-links {
    display: flex;
    gap: 15px;
}

/* about us page style */
.about-us {
    margin: 70px 20px;
}

.about-title {
    font-family: Almarai;
    font-size: 44px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: right;
    margin-top: 35px;
    margin-right: 17px;
}

.about-title + p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: justify;
    margin-right: 17px;
    color: #808080;
}

.about-us-card {
    margin: 70px 40px;
}

.cards-section-rectangle {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 50px;
    margin: 120px 0%;
    align-items: center;
    padding-inline: 7%;
}

.cards-section-rectangle .card {
    border: 1px solid var(--main-color);
    border-radius: 36px;
    height: 399.91px;
    gap: 10px;
    padding: 40px 20px 20px;
    background-color: var(--main-color);
}

.cards-section-rectangle .card img {
    width: 60px;
    margin: 0 auto;
}

.cards-section-rectangle .card .topcard {
    top: -2px;
    width: 80%;
    margin-right: 13px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.cards-section-rectangle .card .bottomcard {
    width: 80%;
    margin-right: 13px;
    bottom: -2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.cards-section-rectangle .card p {
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    color: #fccd8b;
    margin-top: 15px;
}

.cards-section-rectangle .card span {
    font-family: Almarai;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}

.team {
}

.team-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: right;
    margin-top: 20px;
    margin-right: 17px;
}

.team-section {
    display: flex;
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: -140px; */
}

footer a {
    text-decoration: none;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    /* column-gap: 50px; */
    /* row-gap: 150px; */
}

.text-data {
    background-color: var(--main-color);
    padding: 61px 5px 20px;
    position: absolute;
    width: 180px;
    bottom: 74px;
    z-index: -2;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.team-img {
    width:280px;
    height: 280px;
    position: relative;
    top: -40px;
}

.team-img::after {
    content: "";
    position: absolute;
    /* bottom: -24px; */
    left: 49%;
    transform: translateX(-50%);
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 10px solid #d19e11;
    z-index: -1;
    background-color: white;
}

.team-img img {
    max-width: 100%;
    height: 100%;
    position: initial !important;
    margin-top: -60px;
}

.team-name {
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-align: center;
}

.team-job {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 15px;
    text-align: center;
}

.fromfield {
    margin: 80px 0px;
}

.fromfield h2 {
    margin-right: 150px;
    bottom: -25px;
}

.fromfield .our_gallery {
    /* width: 1752px; */
    height: 472px;
    left: 0px;
    top: 0px;

    background: #f5f1f1;
}

/* end style of about us page*/

/* start style for contact us page */

.contactdiv {
    margin: 70px 182px;
}

.contact-us {
    margin-top: 120px;
    margin-bottom: 120px;
    background-color: var(--main-color);
    height: 380px;
}

.contact-form {
    background: #ffffff;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
    /* transform: matrix(-1, 0, 0, 1, 0, 0); */
    height: 500px;
    width: 50%;
    top: 216px;
    border-radius: 16px;
    margin-inline-start: 10%;
    /* padding-top: 65px; */
}

.contact-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 70px;
    margin-inline-start: 40px;
    margin-top: 20px;
}

.contact-title + p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-inline-start: 40px;
    color: #808080;
}

.contact-form a:hover {
    color: #cccccc;
    /*margin-right: 40px;*/
    /*display: flex;*/
    /*flex-direction: row;*/
    /*align-items: flex-start;*/
    /*padding: 11px 40px;*/
    /*gap: 8px;*/
    /*height: 52px;*/
    /*border-radius: 50px;*/
}

.form-control {
    /* width: 530px; */
    /*height: 32px;*/
    /*font-style: normal;*/
    /*font-weight: 400;*/
    /*line-height: 160%;*/
    /*text-align: right;*/
    /*margin-right: 18px;*/
}

.contact-info {
    margin-inline-start: 270%;
    display: grid;
    margin-top: -60px;
}
.contact-info i {
    margin: 0;
}
.contact-icon {
    color: #fccd8b;
    margin-left: 15px;
    margin-bottom: 10px;
}

.contact-label {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.contact-text {
    color: #fff;
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* end style for contact us page */

/* start style for activity */
.activity {
    margin: 100px 125px;
}

.activity p {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    color: #112b3c;
    margin-top: 20px;
}

.swiper-activity-arrow {
    position: relative;
    display: flex;
}

.swiper-activity-arrow .swiper-button-next:after,
.swiper-activity-arrow .swiper-button-prev:after {
    color: #a91444;
    border: none;
    background: rgba(230, 28, 93, 0.04);
}

.activity-img {
    height: 279px !important;
    border-radius: 16px 16px 0px 0px;
}

.activity-cat {
    margin-inline-end: 65%;
    height: 26px;
    margin-top: 330px;
    background: #ffeac1;
    border-radius: 38px;
}

.activity-cat .name {
    font-weight: 900;
    font-size: 12px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-align: start;
    width: max-content;
    margin-inline: 10px;
    color: #1b1b1b;
}

.activity-des {
    font-size: 12px;
    text-align: start;
    position: absolute;
    margin-bottom: auto;
    top: 405px;
    bottom: 0;
    z-index: 1;
    width: 100%;
}

.activity-body-card .data {
    display: flex;
    padding: 0;
    gap: 65px;
    margin-top: 40px;
    margin-right: 5px;
}

.activity-body-card .data li {
    display: flex;
}

.activity-body-card .data li span {
    margin-inline-end: 7px;
}

.activity-body-card .data li img {
    width: 15px;
}

.pagination-container nav {
    display: flex;
    justify-content: center;
}

/* start style for blog page */

.blog-section {
    background-color: #f8f8f8;
    margin: 90px 60px 60px 60px;
    padding: 30px;
}
.blog-section .title {
    top: -50px;
}
.blog-section .subtitle {
    color: initial;
    font-size: 1.7rem;
    font-weight: bold;
    top: -30px;
    position: relative;
}

.blog-section .swiper-controles {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-inline-end: 30px;
    width: max-content;
}
.blog-section .content-container {
    background-color: #f8f8f8;
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 70px;
    margin-top: 30px;
    padding-inline: 20px;
}
.blog-section .content-container.blog-details {
    grid-template-columns: 1fr 25%;
    gap: 40px;
}
.blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    height: fit-content;
}

.blog-section .blog-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.blog img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-teaser {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 20px;
    padding: 10px;
}

.blog-title {
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: #792535;
    margin-bottom: 5px;
}

.blog-meta {
    font-size: 12px;
    line-height: 26px;
    letter-spacing: -0.03em;
    color: #792535;
}
.blog-section .description {
    line-height: 28px;
    font-weight: 300;
}
.short-text {
    max-width: 100%;
    font-weight: 300;
    font-size: 12px;
    line-height: 22px;
    padding: 10px;
}

.side-bar {
    background: #f8f8f8;
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 10px;
}
.search-field {
    position: relative;
    height: 53px;
    margin-bottom: 40px;
}
#search-bar {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 0.5px solid #c8bdbd;
    border-radius: 5px;
    padding-inline-start: 60px;
}

#search-button {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    color: black;
}

.small-blog {
    display: flex;
    column-gap: 10px;
    margin-bottom: 30px;
    height: fit-content;
}
.small-blog img {
    width: 60%;
    object-fit: cover;
    border-radius: 10px;
    height: 60px;
}
.small-blog h6 {
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: #1b1b1b;
    margin: 0;
    font-size: 0.8rem;
}

.small-blog p {
    font-size: 12px;
    line-height: 22px;
    color: #8d8d8d;
    margin: 0;
}

/* end style for blog page */

/* start of read in section */
.read-in {
    /* overflow: hidden; */
    margin: 60px 30px;
}

.read-in .title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.read-in .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 50px;
}
.read-in .item {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.read-in .item img {
    width: 100%;
    border-radius: 10px;
}

.read-in .item div {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    /* margin-block: 15px; */
    margin: 15px;
}

.read-in .item div span:first-child {
    font-weight: 600;
}

.read-in .item .description {
    color: #a6a6a6;
    font-size: 0.8rem;
}

/* end of read in section */

/* our projects style start here */
.our-projects {
    margin-top: 80px;
}
.our-projects .project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 30px;
}
.our-projects .project-cards .card {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    border: none;
    height: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.our-projects .project-cards .card .progress-bar .percentage {
    color: var(--secondary-color);
}
.our-projects .project-cards .card .data {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-block: 20px;
}

.our-projects .project-cards .card .image  {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.our-projects .project-cards .card > div .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    background-color: var(--secondary-color);
    padding: 15px 10px 10px 15px;
    border-radius: 0px 30px 0px 0px;
    font-weight: bold;
    color: black;
    font-size: 12px;
}

.our-projects .project-cards .card > div .date .day {
    line-height: 1rem;
    font-weight: 800;
    font-size: 20px;
}

.our-projects .project-cards .card > div .event-title {
    position: relative;
    /* margin-block: 5px; */
    border-radius: 10px 10px 10px 10px;
    background-color: var(--secondary-color);
    padding: 10px 10px 10px 15px;
    font-size: 16px;
}
.our-projects .project-cards .card .hashtag {
    background-color: rgba(255, 234, 193, 1);
    width: fit-content;
    font-size: 0.8rem;
    font-weight: bolder;
    border-radius: 20px;
    padding: 5px 10px;
}
/* our projects style starts here */

/* Footer Style */
footer {
    /*    display: grid;*/
    /*    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));*/
    /*    gap: 50px;*/
    /* direction: rtl; */
}

footer section {
    padding-block: 10px;
    background-color: #f5f1f1;
}

footer section {
    padding-bottom: 20px !important;
}

footer > div {
    background-color: #f5f1f1;
    position: relative;
}

footer a {
}

footer > div::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background-color: #cccccc;
}

footer form {
    position: relative;
    width: fit-content;
}

footer form button {
    position: absolute;
    top: 4px;
    left: 5px;
    border: none;
    background-color: var(--main-color);
    padding: 6px 10px;
    color: white;
    border-radius: 50%;
}

footer form input {
    padding: 10px;
    border: none;
    border-radius: 50px;
    transition: var(--main-transition);
}

footer form input:focus-visible {
    outline: 1px solid var(--main-color);
}

.subscriber {
    position: relative;
}

#fetChData {
    position: absolute;
    display: flex;
    align-items: center;
    min-width: 300px;
    background-color: white;
    bottom: -34px;
    right: 70px;
    text-align: left;
    color: #28b661;
    opacity: 0;
    transition: opacity 1s;
    border-radius: 3px;
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    padding: 15px;
}

.feedbackMessage i {
    margin-right: 10px;
}

/* modals style */
.participateButton,
.modalButton:hover {
    border: none;
}

.participateButton,
.modalButton {
    position: fixed;
    bottom: 20%;
    right: 0;
    z-index: 10;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    padding: 20px 10px 20px 15px;
    background-color: var(--secondary-color);
    color: var(--main-color);
    font-weight: 600;
    border: none;
}

.modalButton img {
    width: 20px;
}

.modal {
    /* top: 50px !important; */
}

.modal :is(input, .form-select, .form-control) {
    width: 100%;
    padding: 10px 5px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
}

.modal :is(input:focus, input:valid, .form-select, .form-control) {
    color: #212529;
    background-color: #fff;
    border: 1px solid var(--main-color);
    outline: 0;
    box-shadow: none;
    border-radius: 5px;
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-position-x: 10px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    padding: 1rem;
    padding-right: 2rem;
}

.modal .col-md-6,
.modal .col-12 {
    position: relative;
    padding-inline: 40px;
}

.modal label {
    position: absolute;
    top: 7px;
    margin-bottom: 0;
    right: 20px;
    padding: inherit;
    font-size: 16px;
    color: #cccccc;
    pointer-events: none;
    transition: 0.5s;
    background-color: transparent;
}

.modal button[type="submit"] {
    padding: 8px 30px;
}

.modal :is(input:valid, input:focus, textarea) ~ label,
.form-label:is(.select-label, .form-files-label) {
    right: 50px;
    top: -10px;
    color: var(--main-color);
    font-size: 14px;
    background-color: white;
    padding-inline: 10px;
}

.modal-header {
    border: none;
    padding-bottom: 50px;
}

.modal-header .modal-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -30px;
    background-color: var(--main-color);
    color: white;
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 1.2rem !important;
    font-weight: 500;
}

#participateModal .modal-header .modal-title {
    background-color: var(--secondary-color);
    color: black;
}

#volunteerModal .modal-header .modal-title {
    background-color: #f9f7f6;
    border: 1px solid var(--main-color);
    color: black;
}

.modal-header .modal-title img {
    /* width: 25px; */
}

.modal-header .btn-close {
    color: var(--secondary-color);
}

.memberDetails .modal-dialog .modal-content {
    background-color: var(--main-color);
    color: white;
}

.memberDetails .modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important;
}
.memberDetails .team-img {
    /*width: 170px;*/
    /*height: 170px;*/
}
.memberDetails p.statement {
    padding: 100px 70px 30px;
}

.memberDetails .team-img::after {
    /*width: 140px;*/
    /*height: 140px;*/
}
.memberDetails .team-job {
    font-size: 12px;
}
.memberDetails .modal-header .modal-title img {
    width: 100%;
}

.memberDetails .modal-header .text-data {
    position: absolute;
    bottom: -80px;
}

.memberDetails .modal-header .text-data .team-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.memberDetails .modal-header .text-data .team-job {
    margin: 0;
}

.memberDetails .modal-header .modal-title {
    background-color: initial;
    top: -178px;
}

.aboutUsSwiper {
    height: 450px !important;
}

/* toast style */

/* Toast messages */
#toast {
    position: fixed;
    right: 32px;
    top: 32px;
    z-index: 99999;
}

.toast:not(.show) {
    display: flex;
}

.toast {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px 0;
    min-width: 400px;
    max-width: 450px;
    border-left: 4px solid;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
}

.progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}

.progress-running {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transition: all 0.5s;
}

.progress--success {
    background-color: #71be34;
}

.progress--info {
    background-color: #2f86eb;
}

.progress--warning {
    background-color: #ffb702;
}

.progress--error {
    background-color: #ff623d;
}

@keyframes progress {
    to {
        width: 0%;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(calc(100% + 32px));
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(calc(100% + 32px));
    }
}

.toast + .toast {
    margin-top: 24px;
}

.toast--success {
    border-color: #47d864;
}

.toast--success .toast__icon {
    color: #47d864;
}

.toast--info {
    border-color: #2f86eb;
}

.toast--info .toast__icon {
    color: #2f86eb;
}

.toast--warning {
    border-color: #ffc021;
}

.toast--warning .toast__icon {
    color: #ffc021;
}

.toast--error {
    border-color: #ff623d;
}

.toast--error .toast__icon {
    color: #ff623d;
}

.toast__icon {
    font-size: 24px;
}

.toast__close,
.toast__icon {
    padding: 0 16px;
}

.toast__body {
    flex-grow: 1;
}

.toast__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.toast__msg {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
    line-height: 1.5;
}

.toast__close {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.toast__close:hover {
    opacity: 0.8;
}

.about-video {
    border-radius: 20px;
    overflow: hidden;
}

.page-link {
    border-radius: 50%;
    color: #641625;
}
.active > .page-link {
    columns: #fff;
    background-color: #641625;
    border-color: #641625;
}
.page-item:first-child .page-link {
    /* border-top-left-radius: initial;
    border-bottom-left-radius: initial;
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius); */
    border-radius: 50%;
}

.page-item:last-child .page-link {
    /* border-top-right-radius: initial;
    border-bottom-right-radius: initial;
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius); */
    border-radius: 50%;
}

footer .heart {
    animation: beat infinite ease 1.5s;
}

@keyframes beating {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes beat {
    0%,
    50%,
    100% {
        transform: scale(1.1, 1.1);
    }
    30%,
    80% {
        transform: scale(0.92, 0.95);
    }
}
.project_id_container,
.activity_id_container {
    transition: 0.5s;
}

/*
program Section
Add by @RafiqSultan
 */
.program-section {
    background-color: #f8f8f8;
    margin: auto;
    height: auto;
    width: 100% !important;
}

.program {
    margin:0px 40px;
    position: relative;
    top: -20px;
}

.program-title {
    font-family: Almarai;
    font-size: 32px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-align: right;
    margin-right: 17px;
}

.cards-section-program {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
    margin: auto;
}

.all_lecture {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin: auto;
}
.lecture-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    width: 370px;
    padding: 0px 0px 16px;
    position: relative;
    background-color: var(--collection-1-color);
    border-radius: 16px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.lecture-card .img {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    flex: 0 0 auto;
    border-radius: 16px 16px 0px 0px;
}
.lecture-card .img .location_type {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
    background-color: var(--collection-1-sec-50) !important;
    padding: 5px 25px;
    border-radius: 0 16px;
}

.lecture-card .rectangle {
    position: relative;
    width: 370px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.lecture-card .users {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0px 0px 0px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.lecture-card .user {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
}

.lecture-card .img-2 {
    position: relative;
    width: 24px;
    height: 24px;
}

.lecture-card .text-wrapper {
    position: relative;
    width: fit-content;
    font-family: "Almarai-Bold", Helvetica;
    font-weight: 700;
    color: var(--collection-1-border);
    font-size: 16px;
    text-align: right;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.lecture-card .instractor {
    display: inline-flex;
    flex-direction: row-reverse;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 24px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--collection-1-sec-50);
    border-radius: 16px 0px 0px 16px;
}

.lecture-card .div {
    width: fit-content;
    font-family: "Almarai-Bold", Helvetica;
    font-weight: 700;
    color: var(--gray-900);
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0;
    line-height: normal;
    direction: rtl;
}

.lecture-card .ellipse {
    position: relative;
    width: 42px;
    height: 42px;
    margin-top: -4px;
    margin-bottom: -4px;
    object-fit: cover;
}

.lecture-card .content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    /* gap: 16px; */
    padding: 0px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.lecture-card .text-wrapper-2 {
    align-self: stretch;
    height: 62px;
    margin-top: -1px;
    font-family: "Almarai-Bold", Helvetica;
    font-weight: 700;
    color: var(--gray-900);
    font-size: 24px;
    text-align: center;
    position: relative;
    letter-spacing: 0;
    line-height: normal;
    direction: rtl;
}

.lecture-card .time {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 11px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.lecture-card .location-with-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 0 0 auto;
}

.lecture-card .div-2 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;

    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.lecture-card .text-wrapper-3 {
    position: relative;
    width: fit-content;
    font-family: "Almarai-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-700);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    direction: rtl;
}

.lecture-card .frame {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px 0px;
    position: relative;
    align-self: stretch;
}

.lecture-card .more {
    display: flex;
    width: 212px;
    align-items: center;
    gap: 8px;
    position: relative;
}
.lecture-card .more .text-wrapper-3 {
    display: flex;
    width: 212px;
    align-items: center;
    gap: 8px;
    position: relative;
    color: var(--collection-1-border);
}

.lecture-card .text-wrapper-4 {
    width: fit-content;
    margin-top: -1px;
    font-family: "Almarai-Regular", Helvetica;
    font-weight: 700;
    color: var(--main-color);
    font-size: 18px;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0;
    line-height: normal;
    direction: rtl;
}

.lecture-card .enroll-now {
    display: flex;
    width: 212px;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.lecture-card .text-wrapper-5 {
    align-self: stretch;
    width: 71px;
    margin-top: -1px;
    font-family: "Almarai-Bold", Helvetica;
    font-weight: 700;
    color: var(--main-color);
    font-size: 16px;
    position: relative;
    letter-spacing: 0;
    line-height: normal;
    direction: rtl;
}

/* program Details  */
.program_details-title {
    padding: 10px !important;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid var(--main-color);
    margin-bottom: 20px;
}
/* .program_details-title-col {
    padding: 10px !important;
    width: 100%;
    text-align: center;
    display: none;
    color: var(--main-color);
} */
.program_list ul li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--collection-1-sec-color);
    margin-right: 5px;
    margin-left: 15px;
}
.program_list ul {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.program_list ul li {
    width: 100%;
    margin: 20px 0;
    white-space: unset;
}
.program_details-instractor {
    width: 100%;
    text-align: center;
}
.program_details-instractor h5 {
    width: fit-content;
    padding: 8px 64px;
    margin: 10px auto;
    border-radius: 8px;
    background-color: var(--collection-1-sec-color);
}
.program_details_join .text-wrapper-4 {
    background-color: var(--main-color);
    color: #fff;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    border-radius: 8px;
    cursor: pointer;
}
.program-banner {
    width: 100%;
    height: fit-content;
}
.titleh2-program {
    color: var(--secondary-color) !important;
}

/* start of our-program section */
.our-program {
    margin: 10px 30px;
}
.bg-gray {
    background-color: #e9e8e8;
}
.our-program .title {
    /* margin-bottom: -20px; */
    margin: 0 10px -20px;
    font-size: 1.5rem;
}

.our-program .items {
    background-color: var(--main-color);
    background: linear-gradient(to bottom, var(--main-color) 70%, #f8f8f8 30%);
    position: relative;
}
.our-program .items .our-program-link {
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    padding: 10px;
    color: #fff;
    height: 50px;
}
.our-program .items .video {
    width: 100%;
    height: 300px;
}
@media (min-width: 670px) {
    .our-program {
        margin: 10px 70px;
    }
    .our-program .items .video {
        width: 600px;
        height: 400px;
    }
}

/* end of our-program section */

/* popup */

.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

.popup-content {
    background-color: white;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    color: #5d1120;
}
.popup_button{
    background-color: var(--main-color);
    border: none;
    border-radius: 30px;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;

}
.popup_button:hover{
    color: #fff;
    cursor: pointer;

}
/* ---------------------------------- */
.bg-custom-gray{
    background-color: #f8f8f8;
}
.bounce2 {
    animation: bounce2 2s ease infinite;
  }
  @keyframes bounce2 {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-30px);}
      60% {transform: translateY(-15px);}
  }
