/* start global varibles */
:root {
    --main-color: #aacd68;
    --second-color: #31ade2;
    --section-background: #f6f6f6;
}

/* end global varibles */

/* start of global rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* direction: rtl; */
}

@font-face {
    font-family: myfirstfont;
    src: url(../font/Ping_AR_LT_Regular.ttf);
}

p,
h1,
h2,
h3 {
    direction: ltr;
}

h3 {
    font-size: 32px;
    font-size: 28px;
}

a {
    text-decoration: none;
    color: black;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: myfirstfont, Arial, Helvetica, sans-serif;
    /* background-image: url(../assets/tile_background2.png);
      background-size: cover;
      background-repeat: repeat;
      background-attachment: fixed; */
    min-height: calc(100vh - 72px);
    position: relative;
    direction: ltr;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* small screen */
@media (min-width: 768px) {
    .container {
        width: 748px;
        /* width: calc(100vw - 160px); */
    }
}

/* medium screen */
@media (min-width: 992px) {
    .container {
        width: 972px;
        /* width: calc(100vw - 160px); */
    }
}

/* big screen */
@media (min-width: 1200px) {
    .container {
        width: 1180px;
        /* width: calc(100vw - 160px); */
    }
}

/* start component */

.special-text {
    font-size: 50px;
    font-weight: 700;
    color: black;
    position: relative;
    /* width: fit-content; */
    /* padding-left: 60px; */
}

@media (max-width: 992px) {
    .special-text {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .special-text {
        font-size: 26px;
    }
}

.special-text::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 52%,
        #aacd68 100%
    );
}

.page-header .container .page-header-title {
    font-size: 28px;
    font-weight: 700;
}

.activities .container .title .activity-section-title {
    font-size: 16px;
    font-weight: 700;
}

/*
  @media (max-width: 992px) {
    .special-text {
      font-size: 50px;
    }

    .special-text > div {
      font-size: 20px;
      margin-top: 24px;
    }
  }

  @media (max-width: 768px) {
    .special-text {
      font-size: 36px;
    }

    .special-text > div {
      font-size: 12px;
      margin-top: 20px;
    }
  } */

.more {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
    padding: 10px 16px 5px;
    align-self: center;
}
/* end component */

/* start header */
header {
    /* background-color: var(--section-background); */
    position: fixed;
    /* left: 50%; */
    top: 10px;
    /* transform: translateX(-50%); */
    z-index: 10;
    width: 100%;
}

header .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

header .container nav .menu-icon {
    color: var(--main-color);
    font-size: 25px;
    padding: 0px 10px;
}

@media (min-width: 992px) {
    header .container .menu-icon {
        display: none;
    }
}

header .container nav .logo img {
    /* height: 56px;  */
    width: 31px;
    /* padding: 10px 0px; */
    padding-top: 11px;
}

@media (max-width: 786px) {
    header .container nav .logo img {
        height: 45px;
        /* padding: 4px 0px; */
    }
}

header .container nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin-right: 60px; */
    justify-content: space-between;
    flex: 1;
    background-color: white;
    padding: 0px 32px;
    border-radius: 31px;
    gap: 50px;

    /* z-index: 1; */
    border: 1px solid var(--main-color);
    /* width: 70%; */
    width: 90vw;
}

header .container nav .links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    /* padding-right: 70px; */
    align-items: center;
}

@media (max-width: 992px) {
    header .container nav .links {
        display: none;
    }
}

header .container .links ul li {
    /* background-color: var(--section-background); */
    height: 38px;
    /* border-radius: 20px; */
    color: var(--main-color);
}

header .container nav .links .menu-line .x-icon {
    font-size: 30px;
}

header .container nav .links .menu-line img {
    width: 80px;
}

header .container nav .links .line {
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    margin: 15px 0px;
}

header .container nav .links .social {
    display: flex;
    align-items: center;
    height: 100%;
    background-color: var(--main-color);
    justify-content: center;
}

header .container nav .links .social i {
    padding: 20px;
    font-size: 30px;
    color: white;
    align-items: center;
}

header .container ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 24px;
    justify-content: space-between;
    flex: 0.9;
    padding-top: 10px;
}

header .container ul a {
    /* padding: 0px 17px; */
    text-decoration: none;
    color: black;
    /* margin: 0px 18px; */
    transition: 0.3s;
    word-break: keep-all;
    /* padding-bottom: 8px; */
    padding-top: 6px;
    font-size: 18px;
}

header .container ul li.active a {
    color: var(--main-color);
    font-weight: 700;

    /* margin: 0px 18px; */
}

header .container .links ul li.active {
    color: var(--main-color);
}

header .container .links ul a:hover {
    color: var(--main-color);
}

header .container .links ul li.active a:hover {
    color: var(--main-color);
}

header .container nav .lang {
    display: flex;
    font-weight: bold;
    height: 30px;
    /* gap: 10px; */
}

@media (max-width: 992px) {
    header .container nav .lang {
        display: none;
    }

    header .container .menu-icon:hover + .links {
        width: 40%;
    }
}

@media (min-width: 992px) {
    header .container nav .line,
    header .container nav .social,
    header .container nav .menu-line {
        display: none !important;
    }
}

header .container nav .lang .ar {
    border-radius: 0px 5px 5px 0px;
    background-color: var(--section-background);
    padding: 3px 5px;
    color: #f0f0f5;
    /* transition: 0.5s; */
    text-decoration: none;
    font-weight: 700;
    padding-top: 7px;
}

header .container nav .lang .en {
    border-radius: 5px 0px 0px 5px;
    background-color: var(--section-background);
    padding: 3px 5px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 700;
    padding-top: 7px;

    /* transition: 0.5s; */
}

header .container nav .lang .active {
    background-color: var(--main-color);
    color: white;
}

header .container nav .menuu {
    display: none;
}

header .container nav .menuu.show {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    position: fixed;
    background-color: var(--section-background);
    width: 35%;
    top: 0px;
    right: 0px;
    z-index: 5;
    height: 100vh;
}

@media (max-width: 550px) {
    header .container nav .menuu.show {
        width: 70%;
    }
}

header .container nav .menuu .first-line {
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
}

header .container nav .menuu .first-line i {
    font-size: 26px;
    color: var(--main-color);
}

header .container nav .menuu .first-line img {
    width: 150px;
}

header .container nav .menuu ul {
    flex-direction: column;
    flex-grow: 10;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 0px 20px;
}

/* header .container nav .menuu li {
      margin: 30px 0px;
  } */

header .container nav .menuu li div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background-color: var(--main-color); */
    border-radius: 30px;
    padding: 7px 10px;
    /* padding-right: 10px; */
    /* width: 150px; */
    gap: 11px;
}

header .container nav .menuu li div.active {
    background-color: var(--main-color);
    /* color: white; */
}

header .container nav .menuu li div.active a {
    color: white;
}

header .container nav .menuu li div.active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(7487%)
        hue-rotate(258deg) brightness(106%) contrast(117%);
}

header .container nav .menuu .line {
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    margin: 15px 0px;
}

header .container nav .menuu .social-line {
    display: flex;
    flex-grow: 0.5;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px;
    /* height: 120px; */
    /* background-color: var(--main-color); */
    border-top: 1px solid var(--main-color);
    color: white;
}

/* header .container nav .menuu .social-line i {
      font-size: 28px;
  } */

header .container nav .menuu .social-line img {
    width: 28px;
}

header .container nav .black {
    display: none;
}

header .container nav .black.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: rgb(0 0 0 / 65%);
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 3;
    height: 100vh;
}

/* end header */

/* start main */
.main {
    background-image: url("../images/main_background.png");
    background-size: cover;
    background-position: center;
    height: 650px;
    position: relative;
}
.main .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main .container h1 {
    color: var(--main-color);
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 0;
}
.main .container h2:nth-of-type(1) {
    color: var(--second-color);
    font-size: 30px;
    font-weight: 700;
    padding: 23px 0px 15px;
}
.main .container h2:nth-of-type(2) {
    color: var(--main-color);
    font-size: 30px;
    text-align: center;
    font-weight: 100;
    line-height: 38px;
}

@media (max-width: 992px) {
    .main .container h1 {
        font-size: 65px;
    }
    .main .container h2:nth-of-type(1) {
        font-size: 25px;
    }
    .main .container h2:nth-of-type(2) {
        font-size: 25px;
    }
}
@media (max-width: 768px) {
    .main .container h1 {
        font-size: 32px;
    }
    .main .container h2:nth-of-type(1) {
        font-size: 16px;
    }
    .main .container h2:nth-of-type(2) {
        font-size: 16px;
    }
}

.main .container .buttons {
    display: flex;
    gap: 20px;
    padding-top: 70px;
}

.main .container .buttons a:nth-of-type(1) {
    background-color: var(--main-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
    padding: 10px 16px 5px;
}
.main .container .buttons a:nth-of-type(2) {
    color: var(--second-color);
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
    padding: 9px 16px 5px;
    border: 1px solid var(--second-color);
}

.main .container .scroll {
    position: absolute;
    bottom: 15px;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main .container .scroll .body {
    height: 60px;
    width: 27px;
    background-color: #efefef;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.main .container .scroll .body .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
    transition: 0.7s;
}

.main .container .scroll:hover .circle {
    top: 36px;
    background-color: var(--second-color);
}

@keyframes show-and-disapear {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* end main */

/*  Start sider section  */

.sliders-section {
    background-color: var(--second-color);
    height: 300px;
}
.sliders-section .swiper {
    height: 100%;
}

.sliders-section .swiper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*

  /* start about section */
.about-section {
    /* height: 500px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0px;
}

.about-section .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

/* @media (max-width: 992px) {
    .about-section .container {
      flex-direction: column;
    }
  } */

.about-section .container .texts {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 992px) {
    .about-section .container .texts {
        flex-direction: column-reverse;
        gap: 20px;
    }
}
.about-section .container .texts .about {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    /* flex: 1; */
}

@media (max-width: 992px) {
    .about-section .container .texts .about {
        text-align: center;
    }
}

.about-section .container .texts > img {
    /* flex: 0.5; */
    width: 35%;
}

@media (max-width: 992px) {
    .about-section .container .texts > img {
        width: 50%;
    }
}

.about-section .more {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .about-section .more {
        align-self: center;
    }
}
/* end about section */

/* start projects section */
.projects-section {
    /* height: 600px; */
}

.projects-section .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.projects-section .container .boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .projects-section .container .boxes {
        flex-direction: column;
        /* gap: 30px; */
    }
}
.projects-section .container .boxes a {
    position: relative;
    width: calc(100vw / 4.5);
    overflow: hidden;
    border-radius: 20px 20px 5px 5px;
}

@media (max-width: 992px) {
    .projects-section .container .boxes a {
        /* width: 70%; */
        width: calc(100vw / 3);
    }
}
@media (max-width: 786px) {
    .projects-section .container .boxes a {
        width: 99%;
    }
}

.projects-section .container .boxes .box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 44.9%,
        #000000 100%
    );
    transition: 500ms;
}

.projects-section .container .boxes .box:hover::after {
    /* background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.1) 20%,
      #000000 100%
    ); */
    height: 200%;
}

.projects-section .container .boxes .box > p {
    position: absolute;
    text-align: center;
    padding: 0px 30px;
    bottom: 30px;
    left: 0;
    z-index: 2;
    color: white;
    font-weight: 700;
    transition: 500ms;
    line-height: 26px;
}

.projects-section .container .boxes .box:hover > p {
    bottom: 40%;
}
.projects-section .container .boxes .box > img {
    width: 100%;

    height: 350px;
    object-fit: fill;
}

.projects-section .container .more {
    align-self: center;
    margin: 40px 0px;
}
/* end projects section */

/* start products section */
.products-section {
    /* height: 600px; */
    padding: 20px 0px;
}

.products-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.products-section .container .boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

@media (max-width: 768px) {
    .products-section .container .boxes {
        flex-direction: column;
        /* gap: 30px; */
    }
}
.products-section .container .boxes .box {
    position: relative;
    width: calc(100vw / 4.5);
    /* height: 550px; */
    gap: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 24px;
    box-shadow: 0px 0px 20px 11px #0000000d;
    padding: 20px;
    border: 2px solid transparent;
    transition: 500ms;
}

@media (max-width: 992px) {
    .products-section .container .boxes .box {
        /* width: 70%; */
        width: calc(100vw / 1);
    }
    .products-section .container .boxes .box a {
        /* width: 70%; */
        width: 100%;
    }
}
@media (max-width: 786px) {
    .products-section .container .boxes .box {
        width: 90%;
    }
}

.products-section .container .boxes .box:hover {
    border: 2px solid var(--main-color);
}

.products-section .container .boxes .box h3,
.products-section .container .boxes .box h4 {
    font-size: 20px;
    width: 85%;
}

.products-section .container .boxes .box .text {
    padding: 15px 5px;
}
.products-section .container .boxes .box .price {
    padding: 10px 10px;

    font-weight: 700;
    border-radius: 20px;
}

.products-section .container .boxes .box img {
    border-radius: 20px;
    height: 340px;
    width: 100%;
    object-position: center;
    object-fit: cover;
    /* padding: 20px; */
    border-radius: 20px;
}

.products-section .container .boxes .box .extra {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: var(--second-color);
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    /* font-size: 12px; */
}

/* end products section */

/* start companies section */
.companies-section {
    height: 500px;
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 36px 0px;
}

.companies-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    /* width: 100%; */
}

.companies-section .slider {
    width: 100%;
    background-color: white;
    /* padding: 0px 10%; */
    margin: 30px 0px;
}
.companies-section .slider .container .swiper {
    width: 100%;
    height: 100%;
}

.companies-section .slider .container .swiper .swiper-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}
.companies-section .container .swiper-slide {
    /* border-radius: 10px; */
    overflow: hidden;

    /* box-shadow: 0px 4px 40px 0px #0000000d; */
}

.companies-section .container .swiper-slide .image {
    width: 100%;
    height: 80%;
    /* background-image: url(../../assets/_1bc7f286-3ea0-47e8-b1f4-c407c42ae474\ 1.png); */
    object-fit: contain;
    object-position: center;
    /* background-position: center; */
    /* background-size: cover; */
    /* border-radius: 10px; */
    height: 150px;
    object-fit: fill;
}

.companies-section .container .more {
    margin-top: 30px;
}

.companies-section .container .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
}
/* end companies section */

/* start partners section */
.partners-section {
    /* height: 500px; */
    padding: 40px 0px;
    background-color: var(--section-background);
}

.partners-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    /* padding: 0px 100px;
    background-color: white;
    margin: unset;
    width: 100%; */
}
.partners-section .slider {
    width: 100%;
    background-color: white;
    /* padding: 0px 10%; */
    margin: 30px 0px;
}
.partners-section .slider .container .swiper {
    width: 100%;
    height: 100%;
}

.partners-section .slider .container .swiper .swiper-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}
.partners-section .slider .container .swiper-slide {
    /* border-radius: 10px; */
    overflow: hidden;
    /* box-shadow: 0px 4px 40px 0px #0000000d; */
}

.partners-section .slider .container .swiper-slide .image {
    width: 100%;
    height: 80%;
    /* background-image: url(../../assets/_1bc7f286-3ea0-47e8-b1f4-c407c42ae474\ 1.png); */
    object-fit: contain;
    object-position: center;
    /* background-position: center; */
    /* background-size: cover; */
    /* border-radius: 10px; */
    height: 170px;
}

.partners-section .container .more {
    margin-top: 30px;
}

.partners-section .slider .container .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
}
/* end partners section */

/* start footer */
footer {
    /* background-image: url("../assets/footer_background.png"); */
    background: linear-gradient(180deg, #aacd68 0%, #556734 100%);

    /* background-size: contain; */
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/footer_pattern.png");
    opacity: 0.06;
}

footer > .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    position: relative;
    z-index: 1;
}

footer > .container > .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #ffffff 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 20px 0px;
}
footer .container .logo-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
footer .container .logo-part img {
    width: 470px;
}
@media (max-width: 992px) {
    footer .container .logo-part img {
        width: 50%;
    }
}

footer .container .logo-part p {
    color: white;
    text-align: center;
    line-height: 26px;
}

footer .container .all-details {
    display: flex;
    color: white;
    /* gap: 20px; */
    justify-content: space-evenly;
    width: 100%;
}

@media (max-width: 992px) {
    footer .container .all-details {
        flex-direction: column;
        gap: 10px;
    }
}
footer .container .all-details h4 {
    color: white;
    font-size: 19px;
}

footer .container .all-details .important-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    footer .container .all-details .important-links {
        display: none;
    }
}

/* footer .container .all-details .important-links h4 {
    color: white;
    font-size: 22px;
  } */

footer .container .all-details .important-links ul {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 40px 20px;
    padding-top: 20px;
}

footer .container .all-details .important-links ul li {
    color: white;
    list-style-type: "";
    list-style-position: inside;
}
footer .container .all-details .important-links ul li a {
    color: white;
    /* font-weight: 700; */
}

footer .container .all-details .important-links ul li a:hover {
    color: #31ade2;
}

footer .container .all-details .address-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

footer .container .all-details .address-email .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #ffffff 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 20px 10px;
}

footer .container .all-details .address-email a {
    color: white;
}

footer .container .all-details .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

footer .container .contact .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #ffffff 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 20px 10px;
}

footer .container .contact .faded-line:first-child {
    display: none;
}

@media (max-width: 992px) {
    footer .container .contact .faded-line:first-child {
        display: block;
        height: 1px;
        width: 100%;
        background-image: linear-gradient(
            90deg,
            rgba(128, 154, 78, 0) 0%,
            #ffffff 50%,
            rgba(128, 154, 78, 0) 100%
        );
        margin: 20px 10px;
    }
}

footer .container .contact .social-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .container .contact .social-media .socials {
    display: flex;
    gap: 10px;
}
footer .container .contact .social-media .socials img {
    width: 34px;
}

footer .container .contact .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer .container .contact .contact-details p {
    direction: ltr;
}

footer .copy-rights {
    background-color: rgba(255, 255, 255, 0.127);
    padding: 10px 0px;
    border-top: 1px solid white;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* @media (max-width: 768px) {
    footer .copy-rights {
      font-size: 10px;
    }
  } */
footer .copy-rights .container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

@media (max-width: 768px) {
    footer .copy-rights .container {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 10px 0px;
    }
}

/* @media (max-width: 768px) {
    footer .copy-rights .container p {
      max-width: 150px;
    }
  } */

footer .copy-rights .container .developed-by {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .copy-rights .container .developed-by img {
    width: 100px;
}

@media (max-width: 768px) {
    footer .copy-rights .container .developed-by img {
        width: 80px;
    }
}
/* end footer */

/* start floating icons */

.floating {
    position: fixed;
    left: -13px;
    top: 30%;
    z-index: 10;
}

@media (max-width: 768px) {
    .floating {
        display: none;
    }
}

.floating .social-media {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating .social-media a img {
    width: 40px;
    transition: 0.3s;
}

.floating .social-media a img:hover {
    /* width: 50px; */
    scale: 1.3;
}

/* end floating icons */

/* start about */

.about-page {
    padding: 100px 0px;
}

.about-page::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.about-page .container {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

@media (max-width: 768px) {
    .about-page .container {
        padding: 0px 20px;
        text-align: center;
    }
}
.about-page .container .about-page-title {
    font-size: 24px;
    /* text-align: start; */
}

.about-page .container .about-page-branch {
    font-size: 16px;
}

.about-page .container .image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0px 12px 20px 0px #0000001c;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin: 50px 0px;
    height: 400px;
}

.about-page .container .image img {
    padding: 40px 0px;
    /* width: 50%; */
    height: 100%;
}

@media (max-width: 768px) {
    .about-page .container .image img {
        width: 100%;
        height: unset;
        padding: 0px 15px;
    }
}

.about-page .container p {
    line-height: 30px;
}
/* end about */

/* start projects */
.projects-page {
    padding: 100px 0px;
}

.projects-page::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.projects-page .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .projects-page .container {
        padding: 0px 20px;
    }
}

.projects-page .container .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .projects-page .container .boxes {
        flex-direction: column;
    }
}
.projects-page .container .boxes .box {
    position: relative;
    /* width: calc(100vw / 4.5); */
    overflow: hidden;
    border-radius: 20px 20px 5px 5px;
}

/* @media (max-width: 992px) {
    .projects-page .container .boxes .box {
      width: calc(100vw / 3);
    }
  }
  @media (max-width: 786px) {
    .projects-page .container .boxes .box {
      height: 70%;
    }
  } */

.projects-page .container .boxes .box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 44.9%,
        #000000 100%
    );
    transition: 500ms;
}

.projects-page .container .boxes .box:hover::after {
    height: 200%;
}

.projects-page .container .boxes .box > p {
    position: absolute;
    text-align: center;
    padding: 0px 30px;
    bottom: 30px;
    left: 0;
    z-index: 2;
    color: white;
    font-weight: 700;
    transition: 500ms;
    line-height: 26px;
}

.projects-page .container .boxes .box:hover > p {
    bottom: 40%;
}
.projects-page .container .boxes .box > img {
    width: 100%;
    height: 350px;
    object-fit: fill;
}
/* end projects */

/* start products  */
.products-page {
    padding: 100px 0px;
}

.products-page::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.products-page .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .products-page .container {
        padding: 0px 20px;
    }
}

.products-page .container .selectors {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, 140px);
    gap: 15px;
    padding: 10px;
    border-radius: 15px;
    background-color: white;
    width: 100%;
    box-shadow: 0px 7px 20px 0px #0000001c;
}

.products-page .container .selectors .type {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}

.products-page .container .selectors .type:hover {
    cursor: pointer;
}
.products-page .container .selectors .type.active {
    padding: 10px;
    background-color: var(--second-color);
    color: white;
    border-radius: 30px;
}

.products-page .container .my-swipper {
    width: 100%;
}
.products-page .container .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px 30px;

    width: 100%;
}

@media (max-width: 768px) {
    .products-page .container .boxes {
        flex-direction: column;
    }
}
.products-page .container .boxes .box {
    position: relative;
    /* width: calc(100vw / 4.5); */
    gap: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 24px;
    box-shadow: 0px 0px 20px 11px #00000005;
    padding: 20px;
    border: 2px solid transparent;
    transition: 500ms;
    background-color: white;
}

.products-page .container .boxes .box:hover {
    border: 2px solid var(--main-color);
}

.products-page .container .boxes .box h2,
.products-page .container .boxes .box h3,
.products-page .container .boxes .box h4 {
    font-size: 20px;
    width: 85%;
}

.products-page .container .boxes .box .price {
    padding: 10px 10px;

    font-weight: 700;
    border-radius: 20px;
}

.products-page .container .boxes .box img {
    border-radius: 20px;
    height: 340px;
    width: 100%;
    object-position: center;
    object-fit: cover;
    /* padding: 20px; */
    border-radius: 20px;
}

.products-page .container .boxes .box .extra {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: var(--second-color);
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.products-page .search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
}

.products-page .search-container form {
    display: flex;
    width: 100%;
    max-width: 600px;
}

.products-page .search-container input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 10px 0px 0px 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.products-page .search-container input[type="text"]:focus {
    border-color: #80bdff;
    outline: none;
}

.products-page .search-container button {
    padding: 10px 15px;
    margin-left: 0px;
    border: none;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--second-color);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.products-page .search-container button:hover {
    background-color: var(--second-color);
}

@media (max-width: 600px) {
    .products-page .search-container {
        padding: 10px;
    }

    .products-page .search-container input[type="text"] {
        font-size: 14px;
    }

    .products-page .search-container button {
        font-size: 14px;
    }
}

/* end products  */

/* start companies */
.companies-page {
    padding: 100px 0px;
}

.companies-page::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.companies-page .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.companies-page .container .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 30px;
    width: 100%;
}

.companies-page .container .boxes img {
    width: 100%;
    height: 250px;
    object-fit: fill;
}

@media (max-width: 768px) {
    .companies-page .container .boxes img {
        padding: 0px 40px;
    }
}
/* end companies */

/* start company details */
.company_details {
    padding: 100px 0px;
}

.company_details::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.company_details .container {
}

.company_details .container .company-details-title,
.company_details .container .company-details-section-title {
    font-size: 24px;
    color: var(--second-color);
}
.company_details .container .big_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: white;
    box-shadow: 0px 0px 20px 11px #0000000d;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 20px;
    margin: 20px 0px;
}

.company_details .container .logo_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .company_details .container .logo_section {
        flex-direction: column;
    }
}

.company_details .container .logo_section img {
    width: 300px;
}

@media (max-width: 768px) {
    .company_details .container .logo_section img {
        width: 100%;
    }
}

.company_details .container .logo_section p {
    line-height: 24px;
}

.company_details .container .faded_line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 20px 0px;
}

.company_details .container .other_products {
    width: 100%;
}

.company_details .container .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px 30px;
    width: 100%;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .company_details .container .boxes {
        flex-direction: column;
    }
}
.company_details .container .boxes .box {
    position: relative;
    /* width: calc(100vw / 4.5); */
    gap: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 24px;
    box-shadow: 0px 0px 20px 11px #0000000d;
    padding: 20px;
    border: 2px solid transparent;
    transition: 500ms;
    background-color: white;
}

.company_details .container .boxes .box:hover {
    border: 2px solid var(--main-color);
}

.company_details .container .boxes .box h3,
.company_details .container .boxes .box h4 {
    font-size: 20px;
    width: 85%;
}

.company_details .container .boxes .box .price {
    color: var(--second-color);
    padding: 10px 10px;
    background-color: #31ade239;
    font-weight: 700;
    border-radius: 20px;
}

.company_details .container .boxes .box img {
    border-radius: 20px;
    /* height: 340px; */
    width: 100%;
    object-position: center;
    object-fit: cover;
    /* padding: 20px; */
    border-radius: 20px;
}

.company_details .container .boxes .box .extra {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: var(--second-color);
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
/* end company details */

/* start project details */
.project_details {
    padding: 100px 0px;
}

.project_details::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.project_details .container {
    background-color: white;
    padding: 50px 200px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 20px 11px #0000000d;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .project_details .container {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .project_details .container {
        padding: 40px 20px;
        margin: 0px 20px;
    }
}

.project_details .container .project-details-title {
    color: var(--second-color);
    font-size: 30px;
}

@media (max-width: 768px) {
    .project_details .container .project-details-title {
        font-size: 20px;
        text-align: center;
    }
}
.project_details .container img {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* @media (max-width: 992px) {
    .project_details .container img {
      height: 300px;
    }
  } */

@media (max-width: 768px) {
    .project_details .container img {
        width: 100%;
        height: unset;
        border-radius: 10px  10px 0px 0px;
    }
}

.project_details .container .date {
    font-size: 16px;
    color: var(--second-color);
}

.project_details .container .text {
    line-height: 26px;
    padding-top: 30px;
}
@media (max-width: 768px) {
    .project_details .container .text {
        font-size: 14px;
    }
}
/* end project details */

/* start product details */

.product-page {
    padding: 100px 0px;
}

.product-page::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.product-page .container {
    padding: 50px;
    background-color: white;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 20px 11px #0000000d;
}
@media (max-width: 768px) {
    .product-page .container {
        padding: 50px 15px;
        margin: 0px 15px;
    }
}
.product-page .container .product-page-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--second-color);
}

.product-page .container .product-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--second-color);
    padding-bottom: 15px;
}

.product-page .container .type {
    font-size: 16px;
    padding: 20px 0;
}

.product-page .container .mybox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

@media (max-width: 768px) {
    .product-page .container .mybox {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        padding-top: 20px;
    }
}

.product-page .container .mybox .details {
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    /* flex: 1; */
    width: 50vw;
    width: 30vw;
}

@media (max-width: 768px) {
    .product-page .container .mybox .details {
        width: 100%;
    }
}

.product-page .container .mybox .details .line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
}

.product-page .container .mybox .details .line .right {
    color: var(--main-color);
}

.product-page .container .mybox .details .line .left {
    color: black;
}

.product-page .container .mybox .details .line .socials {
    display: flex;
    gap: 10px;
}
.product-page .container .mybox .details .line .socials img {
    width: 34px;
}

.product-page .container .mybox .details .line > img {
    width: 150px;
}

.product-page .container .mybox .image {
    /* flex: 1; */
    width: 25vw;
    position: relative;
}

@media (max-width: 1200px) {
    .product-page .container .mybox .image {
        width: 30vw;
    }
}
@media (max-width: 992px) {
    .product-page .container .mybox .image {
        width: 35vw;
    }
}
@media (max-width: 768px) {
    .product-page .container .mybox .image {
        width: 100%;
    }
}
.product-page .container .mybox .swiper {
    /* width: 100%; */
    width: 400px;
    width: 50vw;
    width: 25vw;
    width: 100%;
    /* height: 300px; */
    margin-left: auto;
    margin-right: auto;
}

.product-page .container .mybox .swiper-slide {
    background-size: cover;
    background-position: center;
}

.product-page .container .mybox .mySwiper2 .swiper-slide {
    border: 5px solid var(--main-color);
    border-radius: 10px;
}

.product-page .container .mybox .mySwiper2 {
    /* height: 80%; */
    /* height: 400px; */
    /* width: 100%; */
    width: 50vw;
    width: 30vw;
    width: 100%;
}

.product-page .container .mybox .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .product-page .container .mybox .mySwiper {
        width: 220px;
    }
}

.product-page .container .mybox .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    border: 2px solid var(--main-color);
    border-radius: 6px;
    padding: 2px;
}

.product-page .container .mybox .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-page .container .mybox .swiper-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.product-page .container .mybox .image .otherbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
}
.product-page .container .mybox .image .button {
    position: absolute;
    /* bottom: 60px; */
    /* top: unset; */
    color: black;
}
.product-page .container .mybox .image .swiper-button-next {
    transform: translateX(50px);
}
.product-page .container .mybox .image .swiper-button-prev {
    transform: translateX(-50px);
}

@media (max-width: 768px) {
    .product-page .container .mybox .image .swiper-button-next {
        transform: translateX(0px);
    }
    .product-page .container .mybox .image .swiper-button-prev {
        transform: translateX(0px);
    }
}

.product-page .container .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 20px 0px;
}

.product-page .container .full-details {
    line-height: 30px;
}

.product-page .container .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px 30px;
    width: 100%;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .product-page .container .boxes {
        flex-direction: column;
    }
}
.product-page .container .boxes .box {
    position: relative;
    /* width: calc(100vw / 4.5); */
    gap: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 24px;
    box-shadow: 0px 0px 20px 11px #0000000d;
    padding: 20px;
    border: 2px solid transparent;
    transition: 500ms;
    background-color: white;
}

.product-page .container .boxes .box:hover {
    border: 2px solid var(--main-color);
}

.product-page .container .boxes .box h3,
.product-page .container .boxes .box h4 {
    font-size: 20px;
    width: 85%;
}

.product-page .container .boxes .box .price {
    color: var(--second-color);
    padding: 10px 10px;
    background-color: #31ade239;
    font-weight: 700;
    border-radius: 20px;
}

.product-page .container .boxes .box img {
    border-radius: 20px;
    height: 340px;
    width: 100%;
    object-position: center;
    object-fit: cover;
    /* padding: 20px; */
    border-radius: 20px;
}

.product-page .container .boxes .box .extra {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: var(--second-color);
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

/* start product details */

/* start contact */
.contact-page {
    padding: 100px 0px;
}

.contact-page::before {
    content: "";
    position: absolute;
    background-image: url(../assets/green_pattern.png);
    width: 100%;
    height: calc(100% + 100px);
    background-size: 623px;
    opacity: 0.08;
    top: -100px;
}

.contact-page .container {
    padding: 50px;
    background-color: white;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 11px #0000000d;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page .container > .contact-page-title {
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-page .container {
        padding: unset;
        margin: 0px 15px;
        box-shadow: unset;
        background-color: unset;
    }
}

.contact-page .form-section {
    position: relative;
    /* top: -60px; */
    display: flex;
    /* padding: 40px 50px; */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
@media (max-width: 992px) {
    .contact-page .form-section {
        flex-direction: column;
    }
}
.contact-page .form-section .map {
    text-align: center;
    flex: 1;
    width: 100%;
}

.contact-page .form-section h2 {
    padding: 15px;
    text-align: center;
}

.contact-page .form-section .map iframe {
    width: 100%;
    height: 445px;
    border-radius: 20px;
    /* box-shadow: 0px 4px 40px 0px #00000033; */
    box-shadow: 0px 4px 40px 0px #00000015;
}

@media (max-width: 768px) {
    .contact-page .form-section .map iframe {
        height: 320px;
    }
}

.contact-page .form-section .form {
    flex: 1;
    width: 100%;
}

.contact-page .form-section .form form {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 20px;
    /* border: 1px solid var(--main-color); */
    padding: 30px;
    text-align: start;
    min-width: 100px;
    height: 85%;
    justify-content: center;
    box-shadow: 0px 4px 40px 0px #00000015;
}

@media (max-width: 768px) {
    .contact-page .form-section .form form {
        border: 1px solid var(--main-color);
    }
}

.contact-page .form-section form label {
    margin-bottom: 10px;
    color: #819955;
    font-size: 18px;
}

.contact-page .form-section form input {
    margin-bottom: 10px;
    border-style: none;
    direction: ltr;
    border-radius: 5px;
    height: 30px;
    background-color: #aacd680f;
    border: 1px solid #aacd6866;
    direction: rtl;
    padding: 5px;
}

.contact-page .form-section form textarea {
    border-style: none;
    resize: none;
    border-radius: 5px;
    background-color: #aacd680f;
    border: 1px solid #aacd6866;
    direction: rtl;
    padding: 5px;
}

.contact-page .form-section form textarea:focus-visible {
    border-style: none;
}

.contact-page .form-section form input[type="submit"] {
    text-align: center;
    margin-top: 20px;
    background-color: var(--main-color);
    border-radius: 10px;
    height: 38px;
    font-size: 22px;
    color: white;
}

@media (max-width: 992px) {
    .contact-page .form-section .container {
        flex-direction: column;
        align-items: initial;
    }
}

.contact-page .container > .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 25px 0px;
}

.contact-page .container .section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* gap: 50px; */
}

@media (max-width: 768px) {
    .contact-page .container .section {
        flex-direction: column;
        background-color: white;
        border-radius: 20px;
        box-shadow: 0px 0px 20px 11px #0000000d;
        padding: 15px;
    }
}

.contact-page .container .section .contact-email {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.contact-page .container .section .contact-email h2,
.contact-page .container .section .contact-email h4 {
    font-size: 18px;
    font-weight: 700;
}
.contact-page .container .section .contact-email .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 40px 0px;
}

@media (max-width: 768px) {
    .contact-page .container .section .contact-email .faded-line {
        margin: 15px 0px;
    }
}

.contact-page .container .section .address-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.contact-page .container .section .address-social h2,
.contact-page .container .section .address-social h4 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 20px;
}
.contact-page .container .section .address-social .faded-line {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(128, 154, 78, 0) 0%,
        #aacd68 50%,
        rgba(128, 154, 78, 0) 100%
    );
    margin: 15px 0px;
}

.contact-page .container .section .address-social .temp {
    display: none;
}
@media (max-width: 768px) {
    .contact-page .container .section .address-social .temp {
        display: block;
    }
}

.contact-page .container .section .address-social p {
    line-height: 24px;
    direction: ltr;
}
/* end contact  */
/* start custom pagination */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0 auto;
}
.custom-pagination .page-item {
    display: flex;
    align-items: center;
}
.custom-pagination .page-item .page-link {
    background-color: #aacd68;
    color: #fff;
    border: none;
    margin: 0 3px;
    border-radius: 8px;
    font-weight: bold;
    min-width: 38px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.custom-pagination .page-item.active .page-link,
.custom-pagination .page-item .page-link:hover {
    background-color: #7fae3b;
    color: #fff;
}
.custom-pagination .page-item.disabled .page-link {
    background-color: #e0e0e0;
    color: #aaa;
}
  @media (max-width: 600px) {
                                            .custom-pagination {
                                                font-size: 15px;
                                                flex-wrap: wrap;
                                                gap: 2px;
                                                justify-content: center;
                                            }

                                            .custom-pagination .page-item {
                                                margin: 2px 0;
                                            }

                                            .custom-pagination .page-link {
                                                padding: 6px 10px;
                                                min-width: 32px;
                                                font-size: 15px;
                                            }

                                            /*  */
                                        }
/* end custom pagination */
