:root {
    --primary-color: #213E8D;
    --hovered-color: #122863;
    --secondary-color: #58C0CE;
    --third-color: #00AB94;
    --white-color: #ffffff;
    --labels-color: #212121;
    --schemes-secondary: #1D192B;
    --labels-color-02: #3C3C4399;
    --schemes-variant: #49454F;
    --gray-color: #8E8E93;
    --gray-color-3: #C7C7CC;
    --gray-color-4: #D1D1D6;
    --gray-color-5: #E5E5EA;
    --gray-color-6: #F2F2F7;
    --lighter-bg: #E9E3FC;
    --section-pading: 60px;
    --transition-ease: all .3s ease-in-out;
    --transition-linear: all .3s linear;
}

html[dir="rtl"] .form-control {
    direction: rtl;
}

/* Buttons */
.btn {
    padding: 12px 20px;
}

.btn-primary {
    color: var(--white-color);
    font-weight: 700;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: var(--transition-linear);
}

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

.btn-secondary {
    color: var(--white-color);
    font-weight: 700;
    border-radius: 10px;
    background-color: var(--secondary-color);
    transition: var(--transition-linear);
}

.btn-secondary:hover {
    color: var(--secondary-color);
    background-color: var(--gray-color-5);
}

/* Color */
.text-c-primary {
    color: var(--primary-color) !important;
}


.text-c-secondary {
    color: var(--secondary-color) !important;
}

.text-c-label {
    color: var(--labels-color) !important;
}

.text-c-label-2 {
    color: var(--labels-color-02) !important;
}

.text-c-schemes {
    color: var(--schemes-variant) !important;
}

.text-c-schemes-secondary {
    color: var(--schemes-secondary) !important;
}

/* Background */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-third {
    background-color: var(--third-color);
}

.bg-gray-6 {
    background-color: var(--gray-color-6);
}

.bg-lighter {
    background-color: var(--lighter-bg-color);
}

/* public */
.fw-medium {
    font-weight: 500;
}

.section-padding {
    padding-top: var(--section-pading);
    padding-bottom: var(--section-pading);
}

.section-padding-2 {
    padding-top: calc(var(--section-pading) * 2.8);
    padding-bottom: var(--section-pading);
}

/* Animations */
.icon-animation path {
    animation: color-animation 3s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

@keyframes color-animation {
    from {
        fill: var(--primary-color);
    }

    to {
        fill: var(--secondary-color);
    }
}

body {
    font-family: "Tajawal", serif;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

h1 {
    font-size: clamp(30px, 42px, 4vw);
}

button {
    outline: none;
    border: none;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

main#main-content {
    flex: 1 1 0%;
}

.fixed_icon {
    position: fixed;
    bottom: 60px;
    left: 40px;
    z-index: 999999999;
}

.fixed_icon img {
    max-width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Start Header */
header .navbar {
    position: absolute;
    z-index: 55;
    width: 100%;
    margin-top: 20px;
}

header .navbar .container {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0px 2px 4px 0px #00000040;
}

header .navbar-brand img {
    width: 180px;
    height: 50px;
    object-fit: contain;
}

header .navbar .container .dropdown-menu {
    background-color: #F8F5F5;
    border: none;
}

header .navbar .container .dropdown-menu .dropdown-item {
    text-align: center;
    color: #363535;
}

header .navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 18px;
    padding: 8px;
}

header .navbar-nav .nav-item .nav-link.active {
    color: var(--secondary-color);
}

/* End Header */
/* Start Footer */
footer {
    position: relative;
    background-color: #213E8DCC;
    padding-top: var(--section-pading);
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 40%;
}

footer .container {
    position: relative;
    z-index: 3;
}

footer .container .logo {
    max-width: 160px;
    height: 230px;
    object-fit: contain;
}

footer .container .nav-item .nav-link {
    font-weight: 500;
    font-size: clamp(16px, 18px, 4vw);
    color: var(--white-color);
}

footer .container .social-media li {
    text-align: center;
    color: var(--white-color);
    font-size: 12px;
}

footer .container .social-media li a {
    display: block;
    margin-bottom: 15px;
}

footer .bottom-footer {
    background-color: var(--primary-color);
}

footer .bottom-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 0px;
    color: var(--white-color);
}

footer .bottom-footer ul li a.link-item {
    color: var(--labels-secondary);
    font-size: clamp(17px, 21px, 4vw);
}

@media (max-width: 991px) {
    footer .bottom-footer .container {
        flex-direction: column;
    }

    footer .bottom-footer .copyright {
        text-align: center;
    }

}

/* End Footer */
/* Start Main Hero:<Home-Page> */
.main-hero {
    min-height: 65dvh;
}

.main-hero .swiper-slide {
    height: 100%;
}

.main-hero .swiper-slide .bg-slide {
    height: 650px;
    max-height: 80%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.main-hero .swiper-slide .bg-slide .content {
    color: var(--white-color);
    text-align: center;
    padding-top: 35px;
    clip-path: ellipse(47% 95% at 50% 105%);
    aspect-ratio: 1/1;
    max-height: 77%;
    max-width: 96%;
}

.main-hero .swiper-slide .bg-slide.slide-0 .content {
    background-color: #213E8DA6;
}

.main-hero .swiper-slide .bg-slide.slide-1 .content {
    background-color: #951F7AA6;
}

.main-hero .swiper-slide .bg-slide.slide-2 .content {
    background-color: #00AB94D9;
}

.main-hero .swiper-slide .bg-slide .content .text {
    max-width: 400px;
    margin: 10px auto;
    text-align: center;
    padding-top: 25px;
}

.main-hero .swiper-slide .bg-slide .content .text h1 {
    font-weight: 700;
    font-size: clamp(18px, 23px, 4vw);
}

.main-hero .swiper-slide .bg-slide .content .text p ,
.main-hero .swiper-slide .bg-slide .content .text span {
    font-weight: 500;
    font-size: clamp(16px, 18px, 4vw) !important;
    margin-top: 25px;
    text-align: center !important;
}

.main-hero .swiper-slide .image {
    max-width: 550px;
    height: 315px;
    text-align: center;
    margin: 0px auto;
    position: relative;
    top: -250px;
}

.main-hero .swiper-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .main-hero .swiper-slide .bg-slide .content {
        clip-path: none;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
}

/* End Main Hero:<Home-Page> */

/* Start Educational Furniture:<Home-Page> */
.educational-furniture {
    position: relative;
    background-color: #EDF1F2CC;
    border: 1px solid var(--gray-color-4);
    overflow: hidden;
}

.educational-furniture::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/liness.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 30%;
    z-index: -1;
}

.ed-furniture-item {
    position: relative;
    overflow: hidden;
    max-width: 255px;
    height: 235px;
    border-radius: 10px;
    margin: 0px auto;
}

.educational-environments .ed-furniture-item {
    max-width: none!important;
    margin: 0px 12px!important;
}

.ed-furniture-item .image,
.ed-furniture-item .content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.educational-environments .item .image img,
.ed-furniture-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-ease);
}

.educational-environments .item .content,
.ed-furniture-item .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #00000080;
    opacity: 0;
    color: var(--white-color);
    transition: var(--transition-ease);
    padding: 5px 10px;
}

.educational-environments .item:hover .image img,
.ed-furniture-item:hover .image img {
    transform: scale(1.1);
}

.educational-environments .item:hover .content,
.ed-furniture-item:hover .content {
    opacity: 1;
}

/* End Educational Furniture:<Home-Page> */

/* Start Educational Environments:<Home-Page> */
.educational-environments .item {
    position: relative;
    overflow: hidden;
    max-width: 510px;
    height: 600px;
    border-radius: 10px;
    margin: 0px auto;
}

.educational-environments .item .title,
.educational-environments .item .image,
.educational-environments .item .content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    justify-content: start;
}

.educational-environments .item .title {
    top: 20%;
    left: -50%;
    transform: translateX(50%);
    text-align: center;
    font-weight: 700;
    color: var(--white-color);
}

.educational-environments .item .content {
    background-color: #0000004D;
    padding-top: 23.40%;
}

.educational-environments .item:hover .title {
    opacity: 0;
    z-index: 0;
}

.educational-environments .item .content::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-lines.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

/* End Educational Environments:<Home-Page> */
/* Start Our Partners:<Home-Page> */
.our-partners {
    position: relative;
}

.our-partners::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-image-partners.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 16%;
}

.partner-widget-item .image {
    border: 15px solid var(--secondary-color);
    border-radius: 50%;
    max-width: 280px;
    height: 280px;
    aspect-ratio: 1/1;
    margin: 0px auto 30px;
    overflow: hidden;
}

.partner-widget-item a {
    border-radius: 8px !important;
    padding: 12px 20px;
}

.partner-widget-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* End Our Partners:<Home-Page> */
/* Start Our Statistics:<Home-Page> */
.our-statistics {
    position: relative;
    background-color: #F1F4F5;
}

.our-statistics::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-image: url(../images/our-static-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 10%;
}

.our-statistics .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.our-statistics .content .item {
    width: 190px;
    height: 190px;
    background-color: #F7F7FB;
    border: 1px solid #9C9999;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.our-statistics .content .item img {
    width: 80px;
    height: 64px;
    object-fit: contain;
}

.our-statistics .content .item .num {
    color: var(--labels-color);
}

.our-statistics .content .item .text {
    color: var(--gray-color);
}

/* End Our Statistics:<Home-Page> */
/* Start Our Projects :<Home-Page> */
.our-projects {
    background-color: #EDF1F2CC;
}

.our-projects .swiper-slide {
    text-align: center;
}

.project-card-item {
    position: relative;
    max-width: 275px;
    margin: 0px auto;
}

.project-card-item .content img,
.project-card-item .content .text {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 3;
}

.project-card-item .content {
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    width: 100%;
    height: 370px;
}

.project-card-item .content .text {
    background-color: #00000066;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    color: var(--white-color);

}

.project-card-item img {
    opacity: 90%;
    object-fit: cover;
}

.project-card-item .num {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 120px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(30px, 40px, 4vw);
    font-weight: 700;
    color: var(--white-color);
    z-index: 5;
}

.project-card-item .num::after,
.project-card-item .num::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.project-card-item .num::before {
    mask-image: url(../images/Ellipse.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #f1f4f5;
    mask-position: center;
    z-index: -1;
    scale: 1.3;
}

.project-card-item .num::after {
    background-image: url(../images/Ellipse.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
    width: 80%;
    height: 80%;
}

.our-projects .swiper-slide a.btn {
    padding: 12px 24px;
}

/* End Our Projects :<Home-Page> */
/* Start Said About Us:<Home-Page> */
.testimonial-slide-item {
    max-width: 300px;
    background-color: #58C0CE73;
    padding: 30px 20px;
    border-radius: 14px;
    position: relative;
    margin: 0px auto;
}

.testimonial-slide-item::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 50px;
    border-radius: 8px;
    background-color: #58C0CE66;
    left: -20px;
    top: -20px;
}

.testimonial-slide-item .text {
    color: #000000;
    line-height: 32px;
    font-weight: 500;
    font-size: clamp(12px, 14px, 4vw);
    margin-top: 15px;
}

/* End Said About Us:<Home-Page> */
/* Start Blog Section:<Home-Page> */
.blog-card-item {
    max-width: 350px;
    margin: 0px auto;
}

.blog-card-item .image {
    height: 230px;
    width: 100%;
    text-align: center;
    margin: 0px auto;
}

.blog-card-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.blog-card-item .info {
    margin-top: 15px;
}

.blog-card-item .info .title {
    color: var(--schemes-secondary);
    font-weight: 400;
    line-height: 40px;
    font-size: clamp(20px, 26px, 4vw);
}

.blog-card-item .info .text {
    color: var(--labels-color-02);
    font-size: clamp(17px, 20px, 4vw);
    line-height: 36px;
}

.blog-card-item .info .actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-card-item .actions button {
    background-color: transparent;
    color: var(--labels-color);
}

/* End Blog Section:<Home-Page> */
/* Start Contact Us Section:<Puplic> */
.contact-us-section {
    padding-top: 1px;
    padding-bottom: 36px;
    background-color: #EDF1F2CC;
    position: relative;
}

/*.contact-us-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/Circles-line.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}*/

.contact-us-section .container {
    position: relative;
    z-index: 3;
}

.contact-us-section .form-control {
    color: var(--labels-color-02);
    border: 1px solid var(--gray-color-3);
    background-color: var(--white-color);
    padding: 24px 10px;
}

/* End Contact Us Section:<Puplic> */
/* Start Partners Hero:<Partners-Page> */
.partners-hero {
    position: relative;
    min-height: 100dvh;
    background: linear-gradient(180deg, rgba(33, 62, 141, 0.8) 0%, rgba(33, 62, 141, 0.65) 34.5%, rgba(33, 62, 141, 0.65) 66%, rgba(33, 62, 141, 0.5) 82.5%, rgba(33, 62, 141, 0.35) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-hero::before,
.partners-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.partners-hero::after {
    z-index: 2;
    background-color: #00000066;
}

.partners-hero::before {
    z-index: 1;
    background-image: url(../images/bg-hero-partners.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 30%;
}

.partners-hero .container {
    height: 100%;
    position: relative;
    z-index: 5;
}

.partners-hero .container img {
    width: 100%;
    max-height: 265px;
    object-fit: contain;
}

.partners-hero .container .text {
    color: var(--gray-color-5);
    font-weight: 700;
    font-size: clamp(18px, 21px, 4vw);
    max-width: 750px;
    margin: 10px auto 20px;
}

.partner-item {
    background-color: var(--white-color);
    padding: 20px;
    border: 2px solid var(--lighter-bg);
    border-radius: 16px;
}

.partner-item .image {
    width: 100%;
    height: 220px;
    margin: 0px auto 25px;
    text-align: center;
    background-color: #5F2EE11F;
    border-radius: 16px;
    overflow: hidden;
}

.partner-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End Partners Hero:<Partners-Page> */
/* Start Contact Us:<Contact_US-Page> */
.hero {
    position: relative;
}

.hero img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    object-position: 0% 30%;
}

.hero .title-section {
    position: absolute;
    padding: 20px 26px;
    background-color: #A7A5A559;
    left: 50%;
    transform: translateX(-50%);
    top: 65%;
    color: var(--white-color);
}

.contact-form .form-control {
    padding: 16px;
    color: #827F7F;
    font-weight: 500;
}

.contact-form textarea {
    height: 150px;
}

.contact-form .widget {
    padding: 60px 20px;
    box-shadow: 0px 1px 6px 0px #1929470F;
    background-color: #213E8D33;
    border-radius: 15px;
}

.contact-form .widget .info {
    border-radius: 10px;
    border: 1px solid #DEE2E6;
    padding: 24px 16px;
}

.contact-form .widget .info p {
    color: #212F3E;
    font-weight: 500;
    line-height: 22px;
    font-size: clamp(14px, 17px, 4vw);
}

.contact-form .widget .social-media {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 16px;
}

.contact-form .widget .social-media a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

/* End Contact Us:<Contact_US-Page> */
/* Start Educational Enviroments:<Pages> */
.ed-content-item {
    max-width: 425px;
    margin: 0px auto;
    text-align: center;
}

.ed-content-item img {
    width: 100%;
    height: 270px;
    margin-bottom: 15px;
    object-fit: cover;
}

.ed-content-item h6 {
    color: #363535;
    font-weight: 300;
    font-size: clamp(19px, 23px, 4vw);
}

.ed-details .text {
    color: var(--schemes-variant);
    font-size: clamp(16px, 20px, 4vw);
    line-height: 28px;
}

.video-section .swiper-slide>* {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-section .swiper-container .swiper-button {
    position: relative;
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.video-section .swiper-container .swiper-button .swiper-button-prev,
.video-section .swiper-container .swiper-button .swiper-button-next {
    position: relative;
    flex-direction: column;
    color: var(--primary-color);
}

.video-section .swiper-container .swiper-button .swiper-button-prev.swiper-button-disabled,
.video-section .swiper-container .swiper-button .swiper-button-next.swiper-button-disabled {
    flex-direction: column;
    color: #909090;
}

.video-section .swiper-container .swiper-button .swiper-button-prev::after,
.video-section .swiper-container .swiper-button .swiper-button-next::after {
    content: none;
}

.video-section .swiper-container .swiper-button h6 {
    font-weight: 400;
    margin-top: 10px;
    font-size: clamp(17px, 21px, 4vw);
}

/* End Educational Enviroments:<Pages> */
/* Start Solutions Furniture:<Pages> */
.solution-item-card {
    border: 1px solid #142951;
    height: 300px;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.solution-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-linear);
}

.solution-item-card .title-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: #BEB7B7B5;
    color: var(--labels-color);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: clamp(18px, 21px, 4vw);
    font-weight: 500;
    transition: var(--transition-ease);
    opacity: 0;
}

.solution-item-card:hover img {
    scale: 1.03;
}

.solution-item-card:hover .title-card {
    opacity: 1;
}

.our-service {
    position: relative;
    background-color: #F1F4F5;
}

.our-service::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 10%;
    z-index: 0;
    background-image: url(../images/our-static-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.our-service .container {
    position: relative;
    z-index: 3;
}

.search-filter {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--labels-color-02);
}

.search-filter input {
    flex: 1 1 auto;
    outline: none;
    border: none;
    background-color: transparent;
    padding: 14px;
}

.search-filter button {
    padding: 14px 18px;
    color: var(--white-color);
}

.item-cate {
    border: 1px solid var(--labels-color-02);
    background-color: var(--white-color);
    color: var(--labels-color-02);
    padding: 16px;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border-radius: 8px;
}

.item-cate:hover,
.item-cate.active {
    border: 1px solid #00AB94;
    background-color: #68E1FD1A;
    color: var(--labels-color-02);
}


/* End Solutions Furniture:<Pages> */
/* Start Educational Furniture:<Pages> */
.product-item {
    margin: 0px auto;
    text-align: center;
}

.product-item img {
    width: 100%;
    height: 200px;
    max-width: 270px;
    object-fit: cover;
    border-radius: 5px;
}

.product-item .title-product {
    color: var(--hovered-color);
    font-size: clamp(18px, 23px, 4vw);
    font-weight: 300;
    margin-top: 15px;
}

.most-products {
    background-color: #F2F4F8;
    border-radius: 12px;
    padding: 20px;
}

.product-scroll-div {
    height: 100%;
    max-height: 1100px;
    overflow-y: scroll;
}

.product-scroll-div::-webkit-scrollbar {
    background-color: #213E8D33;
}

.product-scroll-div::-webkit-scrollbar-thumb {
    background-color: #7D7D7F80;
}

.swiper-product-view {
    width: 100%;
    height: 400px;
}

.swiper-product-view .swiper-slide {
    text-align: center;
}

.thumbs-slider .swiper-slide img,
.swiper-product-view .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbs-slider .swiper-slide {
    border: 1px solid #213E8D33;
    height: 90px;
    max-width: 120px;
    cursor: pointer;
}

.product-info .product-desc {
    color: var(--schemes-variant);
    font-size: 16px;
    line-height: 28px;
}

.product-features li {
    list-style: decimal;
    margin-bottom: 10px;
}

.side-prod-img {
    width: 100%;
    max-width: 355px;
    height: 160px;
    object-fit: cover;
    margin: 0px auto;
    text-align: center;
}

.product-specifications table {
    display: flex;
    max-width: 500px;
}

.product-specifications table>* {
    width: 100%;
    display: flex;

}

.product-specifications table tr {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 50%;
}

.product-specifications table tr td {
    background-color: #78788014;
    padding: 8px 12px;
    border-left: 1px solid #757575A6;
    border-top: 1px solid #757575A6;
    font-size: clamp(16px, 19px, 4vw);
    height: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.product-specifications table tr:first-child td {
    border-right: 1px solid #757575A6;
    color: #363535;
    font-weight: 500;
    background-color: var(--white-color);

}

.product-specifications table tbody tr td {
    color: #363535;
    background-color: #F0FAF9;
}

.product-specifications table tr td:last-child {
    border-bottom: 1px solid #757575A6;
}

/* End Educational Furniture:<Pages> */
/* Start News:<Pages> */
.news-hero {
    position: relative;
    background-color: #00000033;
}

.news-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/blog-hero-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 60%;
    z-index: -1;
}

.news-hero .title {
    position: relative;
    z-index: 5;
    top: 80px;

}

.news-hero .swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 575px;
}

.news-hero .swiper-slide .bg-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-hero .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #0000004D;
    z-index: 1;
}

.news-hero .swiper-slide .text {
    position: absolute;
    top: 15%;
    z-index: 5;
    padding: 20px;
    background-color: #79797C33;
    backdrop-filter: blur(4px);
    max-width: 550px;
    text-align: start;
    color: var(--white-color);
    margin: 0px 10px;
    border-radius: 20px;
}

.news-hero .swiper-slide .text .article-title {
    margin-bottom: 15px;
    font-size: clamp(25px, 34px, 4vw);
    font-weight: 500;
}

.news-hero .swiper-slide .text .description {
    font-size: clamp(17px, 20px, 4vw);
    line-height: 32px;
}

.news-hero .swiper-pagination {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-hero .swiper-pagination .swiper-pagination-bullet {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: var(--white-color);
    opacity: 1;
}

.news-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* End News:<Pages> */
/* Start News Details:<Pages> */
.news-details-hero {
    position: relative;
}

.news-details-hero::before,
.news-details-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 65%;
    z-index: -1;
}

.news-details-hero::before {
    background-image: url(../images/blog-hero-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 40%;
}

.news-details-hero::after {
    background-color: #00000033;
}

@media (max-width: 768px) {
    .news-details-hero::after {
        height: 45%;
    }
}

.news-details-hero .content {
    position: relative;
    z-index: 3;
}

.news-details-hero .content .article-title {
    color: var(--schemes-secondary);
    font-weight: 500;
    font-size: clamp(20px, 28px, 4vw);
    padding-top: 15px;
}

.news-details-hero .content .image {
    text-align: center;
    margin-top: 25px;
}

.news-details-hero .content .image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
}

.news-details-hero .content .lecturer-info {
    position: absolute;
    top: 35%;
    left: 0%;
    z-index: 5;
    text-align: center;
}

.news-details-hero .content .lecturer-info .lecturer-img {
    width: 375px;
    height: 375px;
    background-image: url(../images/bg-sticker.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-details-hero .content .lecturer-info .lecturer-img img {
    width: 100%;
    max-width: 280px;
    height: 180px;
    object-fit: contain;
    object-position: center;
}

.news-details-hero .actions {
    padding-top: 95px;
    position: relative;
    z-index: 3;
}

.news-details-hero .actions button {
    background-color: transparent;
    color: #363535;
    text-align: center;
    font-size: clamp(18px, 24px, 4vw);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0px auto;
}

@media (max-width: 768px) {
    .news-details-hero .content .article-title {
        text-align: center;
    }

    .news-details-hero .content .lecturer-info {
        position: unset;
    }

    .news-details-hero .content .lecturer-info .lecturer-img {
        margin: 0px auto;
    }
}

@media (max-width: 420px) {
    .news-details-hero .content .lecturer-info .lecturer-img {
        width: 230px;
        height: 230px;
    }
}

.article .article-content {
    border: 1px solid #C8BAF1;
    padding: 20px;
    border-radius: 16px;
}

.article .article-content .text {
    margin-bottom: 25px;
}

.article .article-content .text p {
    color: var(--schemes-variant);
    text-align: justify;
    line-height: 36px;
    font-size: clamp(17px, 21px, 4vw);
}

.article .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.article .actions button {
    background-color: transparent;
}

.comments .accordion-button::after {
    position: absolute;
    top: 16px;
    left: 20px;
    background-image: url('../images/arrow-icon.svg');
}

.comments .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.comments .accordion-item {
    background-color: #00AB9405;
    border: 1px solid #F1F1F1;
    box-shadow: 0px 1px 12px 0px #0000000A;
    border-radius: 8px;
}

.comments .accordion-button {
    background-color: #00AB9405;
    border: none !important;
    color: var(--labels-color);
    font-weight: 500;
    flex-direction: column;
    align-items: start;
    font-size: 20px;
    border-radius: 8px !important;

}

.comments .accordion-button:focus {
    box-shadow: none;
}

.comments .accordion-button .user-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.comments .accordion-button .user-name {
    color: #363535;
    font-weight: 500;
    font-size: 18px;
}

.comments .accordion-body {
    border-top: 1px solid #00AB9433;
    color: var(--primary-color);
    margin: 20px;
}

.similar-articles {
    background-color: #00AB940A;
}

/* End News Details:<Pages> */
/* Start Our Projects:<Pages> */
.project-content {
    max-width: 620px;
}

.project-content-item .text {
    color: var(--schemes-variant);
    line-height: 36px;
    font-size: 16px;
}

.project-content-item .project-content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.similar-projects-div {
    background-color: #213E8D0F;
    border-radius: 14px;
    max-height: 1000px;
    overflow-y: auto;
}

.similar-projects-div .similar-project-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 45px;
    text-align: start;
}

.similar-projects-div .similar-project-item img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.similar-projects-div .similar-project-item .similar-project-item-title {
    color: var(--schemes-secondary);
    font-size: clamp(16px, 19px, 4vw);
    font-weight: 400;
}

@media (max-width: 1200px) {
    .similar-projects-div .similar-project-item {
        flex-direction: column;
        text-align: center;
    }
}

/* End Our Projects:<Pages> */
/* Start About Us:<Pages> */
.about-hero-section {
    position: relative;
    background-color: #000000CC;
    overflow: hidden;
}

.about-hero-section::after,
.about-hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.about-hero-section::before {
    background-image: url(../images/about-us-hero-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 96%;
}

.about-hero-section::after {
    background: linear-gradient(90deg, rgba(88, 192, 206, 0.2) -2.57%, rgba(88, 192, 206, 0.7) 97.43%);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.about-hero-section .container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-hero-section .container .hero-text p {
    color: var(--gray-color-5);
    line-height: 36px;
    font-size: clamp(17px, 21px, 4vw);
    font-weight: 400;
    margin-bottom: 45px;
}

.about-hero-section .images-hero {
    position: relative;
    max-width: 560px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px auto;
}

.about-hero-section .images-hero #center-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
}

.about-hero-section .images-hero img {

    object-fit: contain;
}

.about-hero-section .images-hero .absolute-images img {
    position: absolute;
    width: 130px;
    height: 130px;
}

@media (min-width: 1201px) {
    .about-hero-section {
        min-height: 90dvh;
    }
}

@media (max-width: 1199px) {
    .about-hero-section {
        min-height: calc(100dvh + 150px);
    }

    .about-hero-section .images-hero .absolute-images img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 420px) {
    .about-hero-section .images-hero #center-image {
        width: 100%;
        height: 100%;
        max-width: 220px;
    }

    .about-hero-section .images-hero .absolute-images img {
        width: 80px;
        height: 80px;
    }
}


/* Position classes   */
.position-left {
    left: 8%;
    top: 75%;
}

.position-right {
    left: 70%;
    top: 75%;
}

.position-top-left {
    left: 8%;
    top: 0;
}

.position-top-right {
    left: 70%;
    top: 0;
}

.position-bottom {
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
}

.about-hero-section .images-hero .absolute-images img:nth-child(1) {
    left: 8%;
    top: 75%;
    animation: position-left 5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) infinite;
}

.about-hero-section .images-hero .absolute-images img:nth-child(2) {
    left: 70%;
    top: 75%;
    animation: position-right 5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) infinite;
}

.about-hero-section .images-hero .absolute-images img:nth-child(3) {
    left: 8%;
    top: 0;
    animation: position-top-left 5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) infinite;
}

.about-hero-section .images-hero .absolute-images img:nth-child(4) {
    left: 70%;
    top: 0;
    animation: position-top-right 5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) infinite;
}

.about-hero-section .images-hero .absolute-images img:nth-child(5) {
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    animation: position-bottom 5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) infinite;
}

@keyframes position-left {
    0% {
        /* position-left */
        left: 8%;
        top: 75%;
    }

    50% {
        /* position-bottom */
        top: 95%;
        left: 50%;
        transform: translateX(-50%);
    }

    100% {
        /* position-left */
        left: 8%;
        top: 75%;
    }
}

@keyframes position-right {
    0% {
        /* position-right */
        left: 70%;
        top: 75%;
    }

    50% {
        /* position-top-right */
        left: 70%;
        top: 0;
    }

    100% {
        /* position-right */
        left: 70%;
        top: 75%;
    }
}

@keyframes position-top-left {
    0% {
        /* position-top-left */
        left: 8%;
        top: 0;
    }

    50% {
        /*  position-right */
        left: 70%;
        top: 75%;
    }

    100% {
        /* position-top-left */
        left: 8%;
        top: 0;
    }
}

@keyframes position-top-right {
    0% {
        /* position-top-right */
        left: 70%;
        top: 0;
    }

    50% {
        /* position-top-left */
        left: 8%;
        top: 0;
    }

    100% {
        /* position-top-right */
        left: 70%;
        top: 0;
    }
}

@keyframes position-bottom {
    0% {
        /* position-bottom */
        top: 95%;
        left: 50%;
        transform: translateX(-50%);
    }

    50% {
        /* position-left */
        left: 8%;
        top: 75%;
    }

    100% {
        /* position-bottom */
        top: 95%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.our-goals {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    overflow: hidden;
}

.our-goals::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(90deg, rgba(88, 192, 206, 0.4) -2.57%, #58C0CE 97.43%);
    z-index: -1;
}

.left-svg,
.right-svg {
    position: relative;
    margin: 15px 0px;
}

.goal-item {
    position: relative;
    background: linear-gradient(90deg, rgba(88, 192, 206, 0.2) -2.57%, rgba(88, 192, 206, 0.7) 97.43%);
    box-shadow: 0 1px 4px #0C0C0D0D;
    border-radius: 12px;
    color: var(--white-color);

    max-width: 325px;
    margin: 0px auto;
}

.goal-item .goal-icon-item {
    background-color: var(--gray-color-6);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}



.goal-item .goal-icon-item .gray-circle {
    width: 100px;
    height: 100px;
    background-color: #213E8D12;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal-item .goal-icon-item .gray-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.goal-item .title {
    text-align: center;
    max-width: 180px;
    margin: 0px auto;
}

.goal-item .text {
    font-size: 21px;
    line-height: 36px;
    font-weight: 300;
}



@media (min-width: 1200px) {
    .goal-item {
        padding: 30px 16px 10px 20px;
    }

    .our-goals .row>.col-12:nth-child(2) .goal-item {
        max-width: 420px;
        top: 130px;
    }

    .our-goals .row>.col-12:nth-child(3) .goal-item {
        top: 250px;
    }

    .goal-item .goal-icon-item {
        position: absolute;
        left: -15%;
        top: -15%;
    }

    .our-goals .row>.col-12:nth-child(2) .goal-item .text {
        max-width: 310px;
    }

    .goal-item .text {
        max-width: 210px;
    }

}

@media (max-width: 1200px) {
    .goal-item {
        padding: 20px;
        height: 100%;
    }

    .goal-item .goal-icon-item {
        margin-bottom: 15px;
    }
}

.beneficiaries-section {
    position: relative;
    background-color: #58C0CEA6;

}

.beneficiaries-section::before,
.beneficiaries-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.beneficiaries-section::before {
    background-image: url(../images/Beneficiarie-img.webp);
    opacity: 60%;
    z-index: -1;
    mix-blend-mode: luminosity;
}

.beneficiaries-section::after {
    background-image: url(../images/Beneficiarie-color-img.webp);
    opacity: 40%;
    backdrop-filter: blur(4px);
    z-index: -1;
}

.benefic-item {
    text-align: center;
}

.benefic-item .image img {
    width: 280px;
    height: 280px;
    object-fit: contain;
}

.benefic-item .info {
    margin-top: 15px;
    color: var(--white-color);
}

.benefic-item .info .num {
    font-weight: 700;
    font-size: clamp(30px, 38px, 4vw);
}

.benefic-item .info .text {
    font-size: clamp(25px, 32px, 4vw);
    font-weight: 500;
}

/* End About Us:<Pages> */
/* Start Our Projects:<Pages> */
.our-project-hero {
    background-image: url('/assets/front/images/project-image-hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.our-project-hero .project-info {
    padding: 0px 40px;
    max-width: 450px;
    color: var(--white-color);
    text-align: start;
}

.our-project-hero .project-info .title {
    font-weight: 500;
    font-size: clamp(25px, 30px, 4vw);
    margin-bottom: 25px;
}

.our-project-hero .project-info .description {
    font-size: clamp(17px, 20px, 4vw);
    font-weight: 400;
    line-height: 32px;
}

.section-site {
    background: #f8f9fa;
    /* Light Gray Background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.section-site h1,
.section-site h2,
.section-site h3 {
    color: #333;
    margin-top: 20px;
    font-weight: bold;
}

.section-site p {
    color: #555;
    line-height: 1.8;
}

.section-site ul {
    padding-left: 20px;
}

.section-site ul li {
    margin-bottom: 10px;
}

/* End Our Projects:<Pages> */


/* Whatsup Button*/
@media (min-width:769px){
	.whatsappMobile{
		display:none!important;
	}
}
@media (max-width:768px){
	.whatsappComputer{
		display:none!important;
	}
	.whatsappMobile{
		display:block!important;
	}
}

/* Contact us form */
.contact-us-section .container {
    max-width: 550px;
}
.contact-us-section .form-control {
    max-width: 100%;
    height: 40px;
    font-size: 15px;
    padding: 12px 18px;
    border-radius: 8px;
}
.contact-us-section textarea.form-control {
    height: 140px;
}
.contact-us-section .row {
    justify-content: center;
}
.contact-us-section .col-md-6 {
    flex: 0 0 48%;
    max-width: 48%;
    padding-left: 5px;
    padding-right: 5px;
}
@media (max-width: 768px) {
    .contact-us-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}
.contact-us-section .d-flex {
    justify-content: center;
}
