@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tilt+Warp&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--font-family-2);
}

body {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: clamp(14px, 1vw, 16px);
    color: var(--Black-Color);
}

:root {
    /* Font Family */
    --font-family-1: "Tilt Warp", sans-serif;
    --font-family-2: "Poppins", sans-serif;
    /* Color's */
    --Primary-Color: #780A2E;
    --Secondary-Color: #1F201F;
    --White-Color: #FFFFFF;
    --Black-Color: #000000;
    --Gray-Color: #989898;
    --Secondary-Color-2: #595555;
    --Light-Gray-Color: #EAEAEA;
    --Gradient-Color-1: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 43.38%, rgba(150, 150, 150, 0.39) 100.92%);
    --Transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

/* Container */
.container {
    max-width: 1513px;
}

/* Pages Css Started-------------------------------------------------------------------------------------------------- */
/* HEADER.PHP START */
.header {
    padding: 20px 0px;
    background-color: var(--Primary-Color);
}

.header .logo {
    max-width: 237px;
    width: 100%;
}

.header .logo a,
.header .logo a img {
    width: 100%;
}

.header .navbars ul li a {
    font-family: var(--font-family-2);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    transition: var(--Transition);
    color: var(--White-Color);
}

.header .navbars {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header .navbars nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

button#open-toggle {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 18px;
    color: var(--White-Color);
}

.header .navbars .menu-head {
    display: none;
}

/* HEADER.PHP END */

/* Responsive */
@media (max-width: 1199px) {

    /* Menu Design */
    .header .navbars {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 280px;
        background: var(--White-Color);
        height: 100%;
        z-index: 9;
        flex-direction: column;
        align-items: start;
        padding: 20px;
        overflow-y: scroll;
        transform: translateX(-100%);
        transition: var(--Transition);
    }

    body.menu-open .header .navbars {
        transform: translateX(0%);
    }

    .header .navbars nav {
        width: 100%;
    }

    .header .navbars a.button_1 {
        width: 100%;
        text-align: center;
    }

    .header .navbars nav ul li,
    .header .navbars nav ul li a {
        width: 100%;
        color: var(--Black-Color);
        text-align: start;
    }

    .header .navbars nav ul {
        display: flex;
        align-items: start;
        gap: 16px;
        flex-direction: column;
    }

    button#open-toggle {
        display: block;
    }

    .header .navbars .menu-head {
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--Primary-Color);
        width: 100%;
        padding-bottom: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }

    #overlay {
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        background-color: var(--Black-Color);
        opacity: 0.5;
        width: 100%;
        height: 100%;
        z-index: 9;
    }

    body.menu-open #overlay {
        display: block;
    }

    #close-toggle {
        background-color: transparent;
        border: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 63.07%, #780A2E 233.53%);
    min-height: 615px;
    padding: 32px 0px;
    display: flex;
    align-items: center;
}

.hero-section .top-title {
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    color: var(--Black-Color);
}

.hero-section h1 {
    font-weight: 800;
    font-size: clamp(28px, 5vw, 60px);
    color: var(--Black-Color);
    text-align: center;
}

.hero-section h1 span {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 35px);
    text-align: center;
    color: var(--Black-Color);
}

.hero-section h1 b {
    font-weight: 800;
    font-size: clamp(24px, 4vw, 50px);
    text-align: center;
    color: #000000BD;
}

.hero-section h2 {
    font-weight: 300;
    font-size: clamp(18px, 2.5vw, 30px);
    color: var(--Black-Color);
    margin-bottom: 16px;
}

.hero-section ul li {
    font-weight: 300;
    font-size: 16px;
    color: var(--Primary-Color);
    margin-bottom: 22px;
}

.form-content {
    background: #780A2E0F;
    border: none;
    box-shadow: 0px 14px 10.4px 1px #00000026;
    border-radius: 0px;
    padding: 20px 30px;
}

.form-content .title {
    font-weight: 500;
    font-size: 16px;
    color: var(--Black-Color);
}

.form-content .options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.form-content .options .option {
    background: #D9D9D9;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: var(--Black-Color);
    width: calc(50% - 8px);
    cursor: pointer;
    position: relative;
    padding: 4px;
}

.form-content .options .option.active {
    background-color: var(--Primary-Color);
    color: var(--White-Color);
}

.form-content .options .option.full {
    width: 100%;
}

.form-content .options .option .badge {
    position: absolute;
    top: -13px;
    left: 7px;
    border-radius: 0px;
    box-shadow: 0px 4px 4px 0px #00000040;
    background: #F4EFEF;
    font-weight: 300;
    font-size: 8px;
    color: var(--Black-Color);
    padding: 2px;
}

.form-content .btn {
    width: 100%;
    background-color: var(--Primary-Color);
    border-radius: 100px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    color: var(--White-Color);
}

.form-content .backheader {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 28px;
    width: 28px;
    min-width: 28px;
    min-height: 28px;
    height: 28px;
    max-height: 28px;
    background: #780A2E1A;
    cursor: pointer;
    border-radius: 50px;
    margin-bottom: 4px;
}

.form-content input {
    outline: none;
    background-color: var(--White-Color);
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--Black-Color);
    padding: 4px 20px;
    width: 100%;
}

.form-content input[type="checkbox"] {
    width: 21px;
    min-width: 21px;
    height: 21px;
    accent-color: var(--Primary-Color);
}

.form-content label {
    color: #00000099;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}

.form-content .step {
    display: none;
}

.form-content .step.active {
    display: block;
}

.form-content .success {
    color: #1a7f37;
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
    display: none;
}

.form-content .error {
    color: #b42318;
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
    display: none;
}

/* about-us */
.about-us {
    padding: 92px 0px 102px;
}

.about-us h2,
.education h2 {
    display: inline-block;
    background-color: var(--Primary-Color);
    color: var(--White-Color);
    padding: 10px 35px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
}

.about-us .content p {
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 25px);
    text-align: justify;
    color: var(--Black-Color);
}

.education {
    background-color: #EBEBEB;
    overflow: hidden;
}

.education .content,
.education .image img {
    position: relative;
    z-index: 1;
}

.education .content ul {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 38px 0px;
}

.education .content ul li {
    background-color: var(--White-Color);
    padding: 14px 22px;
    font-weight: 500;
    font-size: 20px;
    color: var(--Black-Color);
}

.education .image {
    position: relative;
}

.education .image::before {
    content: "";
    background-color: var(--White-Color);
    height: 417px;
    width: 417px;
    border-radius: 100%;
    filter: blur(100px);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.education .image[data-aos=fade-up] {
    transform: translate3d(0, 100%, 0);
}

.education .image[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}


/* ==========================================================
   PARTNER UNIVERSITIES
   ========================================================== */
.partner-universities {
    width: 100%;
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.partner-universities h2,
.abroad h2,
.programs h2 {
    display: inline-block;
    background-color: var(--Primary-Color);
    color: var(--White-Color);
    padding: 10px 35px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
}

.partner-universities .content {
    display: flex;
    gap: 62px;
    flex-direction: column;
}

.partner-universities .content .country-section {
    display: flex;
    align-items: stretch;
}

.partner-universities .content .country-section .country-header {
    background: var(--Primary-Color);
    color: var(--White-Color);
    font-size: 24px;
    font-weight: 600;
    padding: 20px 28px;
    min-width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-universities .content .marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.partner-universities .content .marquee .universities-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.partner-universities .content .marquee-reverse .universities-grid {
    animation: scrollRight 20s linear infinite;
}

.partner-universities .content .marquee:hover .universities-grid {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.partner-universities .content .university-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 282px;
    width: 282px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.partner-universities .content .university-card:hover {
    transform: translateY(-5px);
}

.partner-universities .content .university-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    min-height: 70px;
    width: 100%;
    background: #fff;
}

.partner-universities .content .university-logo img {
    max-width: 130px;
    max-height: 55px;
    object-fit: contain;
}

.partner-universities .content .university-name {
    width: 100%;
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    background: #AEAEAE;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA button */
.partner-universities .cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 10px 40px;
    max-width: 467px;
    border: 2px solid var(--Black-Color);
    color: var(--Black-Color);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 24px);
}

.cta-button:hover {
    background: var(--Primary-Color);
    color: var(--White-Color);
    border-color: var(--Primary-Color);
}

.abroad {
    padding-bottom: 90px;
}

.abroad .content {
    background-color: var(--White-Color);
    box-shadow: 0px 4px 17.4px 4px #00000026;
    padding: 32px 0px;
    border-radius: 30px;
}

.abroad .content .icon {
    max-width: 110px;
    margin: auto;
    margin-bottom: 32px;
}

.abroad .content .icon img {
    width: 100%;
}

.abroad .content .title {
    font-weight: 600;
    font-size: 20px;
    color: var(--Black-Color);
    margin-bottom: 6px;
}

.abroad .content p {
    min-height: 92px;
    font-weight: 300;
    font-size: 20px;
    color: var(--Black-Color);
}

.scholarship-section {
    background-color: var(--Primary-Color);
    padding: 32px 0px;
}

.scholarship-section h2 {
    display: inline-block;
    background-color: var(--White-Color);
    color: var(--Primary-Color);
    padding: 10px 35px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
}

.scholarship-section .scholarship-marquee {
    width: 100%;
    overflow: hidden;
}

.scholarship-section .scholarship-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

.scholarship-section .scholarship-track:hover {
    animation-play-state: paused;
}

.scholarship-section .card {
    width: 330px;
    height: 420px;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.scholarship-section .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs {
    padding: 40px 0px 0px;
}

.programs .cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 10px 40px;
    max-width: 467px;
    border: 2px solid var(--Black-Color);
    color: var(--Black-Color);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 24px);
}

.cta-button:hover {
    background: var(--Primary-Color);
    color: var(--White-Color);
    border-color: var(--Primary-Color);
}

.programs .lists {
    background-color: #CBCBCB;
    padding: 25px 0px;
}

.programs .content {
    background-color: var(--White-Color);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 18px;
    color: var(--Black-Color);
    transition: var(--Transition);
    cursor: pointer;
}

.programs .content:hover {
    background-color: var(--Primary-Color);
    color: var(--White-Color);
}



/* ==========================================================
   DESTINATIONS SECTION
   ========================================================== */
.destinations-section {
    width: 100%;
    background: var(--Primary-Color);
    padding: 30px 0 40px;
    overflow: hidden;
}

.destinations-section h2 {
    display: inline-block;
    background-color: var(--White-Color);
    color: var(--Black-Color);
    padding: 10px 35px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
}

.destinations-section .destinations-marquee {
    width: 100%;
    overflow: hidden;
}

.destinations-section .destinations-track {
    display: flex;
    gap: 21px;
    width: max-content;
    animation: destinationsScroll 20s linear infinite;
}

.destinations-section .destinations-track:hover {
    animation-play-state: paused;
}

@keyframes destinationsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.destinations-section .destination-card {
    position: relative;
    width: 320px;
    height: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.destinations-section .destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destinations-section .destination-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: #fff;
    box-shadow: 0px -3px 14.9px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    white-space: nowrap;
}

.image-design {
    padding: 104px 0px;
}

.image-design h2,
.companies-section h2,
.saying h2 {
    display: inline-block;
    background-color: var(--Primary-Color);
    color: var(--White-Color);
    padding: 10px 35px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
}

.companies-section .bg-primary {
    background-color: var(--Primary-Color) !important;
    width: 100%;
    padding: 52px 0px;
}

.companies-section .bg-primary .overflow {
    overflow: hidden;
}

.companies-section .bg-primary .companies-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: companiesScroll 28s linear infinite;
}

.companies-section .bg-primary .companies-strip:hover .companies-track {
    animation-play-state: paused;
}

.companies-section .bg-primary .company-card {
    width: 220px;
    height: 84px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    margin-right: 12px;
}

.companies-section .bg-primary .company-card img {
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
}

@keyframes companiesScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.saying {
    padding: 80px 0px;
}

.saying .grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    row-gap: 40px;
}

@media (max-width: 991px) {
    .saying .grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .saying .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.saying .grid-box .box .box-inner {
    width: 100%;
    height: 100%;
    max-width: 287px;
    margin: auto;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    position: relative;
}

.saying .grid-box .box .box-inner .name {
    width: 100%;
    text-align: end;
}

.saying .grid-box .box .box-inner .name h4 {
    font-weight: 600;
    font-size: 20px;
    color: var(--White-Color);
    background-color: var(--Primary-Color);
    text-align: center;
    width: 100%;
    padding: 7px;
}

.saying .grid-box .box .box-inner .name .button,
.saying .grid-box .box .box-inner .click-open .button {
    height: 38px;
    width: 38px;
    min-height: 38px;
    min-width: 38px;
    background: #FFFFFF80;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin: 10px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    cursor: pointer;
}

.saying .grid-box .box .box-inner .click-open {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--Primary-Color);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 28px 17px;
    overflow-y: scroll;
}

.saying .grid-box .box .box-inner .click-open::-webkit-scrollbar {
    display: none;
}

.saying .grid-box .box .box-inner .click-open .button {
    margin: 0px;
}

.saying .grid-box .box .box-inner .click-open p {
    color: var(--White-Color);
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 20px);
}

.saying .grid-box .box .box-inner .click-open {
    display: none;
}

.saying .grid-box .box.active .click-open {
    display: flex;
}

.faq-section {
    padding: 60px 0px;
    text-align: center;
}

.faq-title {
    background: #8b0d2f;
    color: #fff;
    display: inline-block;
    padding: 12px 30px;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 50px;
}

.faq-item {
    text-align: left;
}

.faq-question {
    background: #e5e5e5;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-answer {
    background: var(--Primary-Color);
    color: var(--White-Color);
    padding: 20px;
    display: none;
    font-size: 16px;
    line-height: 1.6;
    border-top: 1px solid var(--White-Color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background: var(--Primary-Color);
    color: var(--White-Color);
}

.arrow {
    transition: 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-btn {
    margin-top: 50px;
}

.faq-btn a {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--Black-Color);
    border-radius: 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--Black-Color);
    transition: 0.3s;
}

.faq-btn a:hover {
    background: var(--Black-Color);
    color: var(--White-Color);
}

/* Responsive */
@media(max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer-section {
    padding: 88px 0px 153px;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-section .content .top-title {
    font-weight: 300;
    font-size: 30px;
    color: var(--White-Color);
}

.footer-section .content h2 {
    font-weight: 500;
    font-size: clamp(32px, 6vw, 70px);
    color: var(--White-Color);
}

.footer-section .content h3 {
    color: var(--White-Color);
    font-weight: 600;
    font-size: 35px;
}

.copyright {
    padding: 40px 0px;
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--Black-Color);
}

.about-us h2,
.education h2,
.partner-universities h2,
.abroad h2,
.programs h2,
.image-design h2,
.companies-section h2,
.saying h2 {
    font-size: clamp(18px, 2.5vw, 30px);
}

@media (max-width: 575px) {
    .partner-universities .content .country-section .country-header {
        padding: 0px 8px 10px;
    }

    .partner-universities .content .country-section {
        flex-direction: column;
        background-color: var(--Primary-Color);
        padding: 10px;
    }

    .partner-universities .content {
        gap: 10px;
    }
}


/* .process-section {
    padding: 40px 20px;
} */

.process-section .process-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* vertical line */
.process-section .process-wrapper::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #444;
}

.process-section .process-item {
    position: relative;
    padding-left: 60px;
}

.process-section .circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: var(--White-Color);
    transform: translate(-0px, -7px);
}

/* Colors */
.process-section .yellow {
    background: #f4b400;
}

.process-section .orange {
    background: #ff5722;
}

.process-section .pink {
    background: #e91e63;
}

.process-section .purple {
    background: #673ab7;
}

.process-section .teal {
    background: #009688;
}

.process-section .green {
    background: #4caf50;
}

.process-section .process-item h3 {
    font-size: 14px;
    color: var(--Primary-Color);
}
.process-section .process-item p{
    font-size: 12px;
}

.image-design .image{
    display: none;
}
@media (max-width: 991px) {
    .image-design {
       padding: 54px 0px;
    }
}

.processing-image{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.content-box{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    border-radius: 100px;
}
.content-box .count {
    height: 100px;
    width: 100px;
    min-width: 100px;
    border-radius: 100px;
    outline: 5px dashed;
    outline-offset: 20px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    color: var(--White-Color);
    box-shadow: 10px 0px 24px #00000040;
    border: 1px dashed var(--White-Color);
}
.content-box .content h3{
    color: var(--White-Color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.content-box .content p{
    color: var(--White-Color);
    font-size: 16px;
    font-weight: 300;
}
@media (max-width: 991px) {
    .content-box .content h3 {
        font-size: 18px;
    }
    .content-box .content p {
        font-size: 14px;
    }
    .content-box .count {
        height: 80px;
        width: 80px;
        min-width: 80px;
        outline: 3px dashed;
        font-size: 32px;
        border-radius: 8px;
    }
    .content-box {
        gap: 32px;
        border-radius: 27px;
        height: 120px;
    }
}
@media (min-width: 992px) {
    .image-design .image{
        display: block;
    }
    .process-section{
        display: none;
    }
    .processing-image{
        display: none;
    }
}