.about__company {
  background-color: #e5eef4;
  padding-top: 50px;
  padding-bottom: 50px;
}

.about__company .about__company__content {
  display: flex;
  gap: 50px;
}

.about__company__text {
  width: 50%;
}

.about__company__text__header {
  display: flex;
  margin-bottom: 50px;
}

.about__company__text__header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.about__company__text__header .img {
  width: 50px;
  height: 35px;
}

.about__company__text__header .img img {
  width: 100%;
  height: 100%;
}

.about__company__text p {
  font-size: 16px;
  line-height: 50px;
  font-weight: 700;
}

.about__company__btn {
  display: flex;
  width: 230px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  margin-top: 50px;
  gap: 10px;
  cursor: pointer;
  transition: 0.4s;
  border: 2px solid #101d57;
}

.about__company__btn:hover {
  background-color: #e5eef4;
  color: var(--main-color) !important;
}

.about__company__btn:hover a {
    color: var(--main-color) !important;
  }

.about__company__btn:hover .icons {
  color: var(--main-color);
}

.about__company__btn .text {
  font-size: 16px;
  font-weight: 700;
}

.about__company__btn .icons {
  color: #fff;
  font-size: 13px;
  transition: 0.4s;
  margin-top: 5px;
}

.about__company_img {
  width: 50%;
  height: 400px;
}

.about__company_img img {
  width: 100%;
  height: 100%;
}

/* Services section */

.services {
  margin-top: 50px;
  margin-bottom: 50px;
}

.services .services__slider {
  direction: ltr;
}

.services .services__item .img {
  width: 70px;
  height: 70px;
  background-color: #bae6ff;
  padding: 15px;
  border-radius: 50%;
}

.services .services__item .img img {
  width: 100%;
  height: 100%;
}

.services .services__item .services__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 40px 0;
}

.services .services__item .services__card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--main-color);
  margin: 20px 0;
}

.services .services__item .services__card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--main-color);
}

.owl-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9 !important;
}

.owl-dot.active {
  background-color: #5fbef8 !important;
}

/* PROJECTS */

.projects .projects__slider {
  direction: ltr;
}

.projects__slider .owl-dots {
  margin-top: 20px;
}

.projects .projects__slider .project__card .img {
  width: 100%;
  height: 400px;
}

.projects .projects__slider .project__card .img img {
  width: 100%;
  height: 100%;
}

.projects .projects__slider .project__card h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  margin: 15px 0;
  color: #000;
}

.projects .projects__slider .project__card p {
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #a9a2a2;
  margin-top: 20px;
}

/* PARTNERS */

.partners {
  margin: 50px 0;
}

.partners .partners__slider {
  direction: ltr;
}

.partners .partners__slider .img {
  width: 100%;
  height: 170px;
}

.partners .partners__slider .img img {
  width: 100%;
  height: 100%;
}

.partners__slider .owl-dots {
  margin-top: 20px;
}

/* Bolg section */

.blogs {
  margin: 50px 0;
}

.blogs .blogs__content {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 30px;
}

.blogs__slider .owl-dots{
    margin-top: 20px;
}
 .blog__card {
  width: calc(100% / 4 - 30px);
  position: relative;
  border-radius: 10px;
  height: 380px;
  background-color: #dddada;
  box-shadow: 0 0 5px #00000045;
}

 .blog__card .img {
  width: 100%;
  height: 220px;
}
 .blog__card .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

 .blog__card .blog__tex {
  background-color: #fff;
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  padding: 20px 10px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

 .blog__card .blog__tex h3 {
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  color: #000;
  text-align: center;
}
 .blog__card .blog__tex p {
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  color: #a9a2a2;
  margin-top: 10px;
  line-height: 21px;
  text-align: center;
}

.blog__card .blog__text__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #a9a2a2;
}

.blog__card .blog__text__date .img {
  width: 24px;
  height: 24px;
}
.blog__card .blog__text__date .img img {
  width: 100%;
  height: 100%;
}

.blog__text__date .date__text{
    direction: rtl;
}

.blogs__slider {
  direction: ltr;
}

.blogs__slider .blog__card {
  width: 100%;
}

/* CONTACT US SECTION */
.contact-us {
  margin: 50px 0;
}

.contact-us .contact-us-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.contact-us .contact-us-content .contact-us-info,
.contact-us .contact-us-content .contact-us-map {
  width: 50%;
  height: 300px;
  position: relative;
}

.contact-us .contact-us-content .contact-us-info h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.contact-us .contact-us-content .contact-us-info h3 .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

.contact-us .contact-us-content .contact-us-info h3 p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.contact-us .contact-us-content .contact-us-info h3 .icon img {
  width: 100%;
  height: 100%;
}

.contact-us p.description {
  width: 370px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}

.contact-us-info .mail,
.contact-us-info .call {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.contact-us-info a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.contact-us-info .direction-btn {
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid var(--main-color);
  width: 130px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.contact-us .contact-us-content .contact-us-map .map {
  height: 370px;
  border: 1px dashed var(--main-color);
  border-radius: 5px;
}

.contact-us .contact-us-content .contact-us-map .map iframe {
  width: 100%;
  height: 100%;
  margin-right: 20px;
  margin-top: -20px;
  border-radius: 5px;
}

.contact-us .about__company__text__header {
  margin-bottom: 20px;
}

/* responsive menu links */

.menu_responsive ul {
  margin-top: 50px;
}

.menu_responsive ul li {
  font-size: 18px;
  margin: 10px;
}

.menu_responsive ul li a:hover {
  color: #fff !important;
}

.menu_responsive ul .dropdown a {
  padding-right: 0px;
  margin-right: 0;
}

.menu_responsive .element .dropbtn {
  background-color: transparent;
}

.menu_responsive .dropbtn {
  margin-right: 10px;
}

.landing__text {
  color: #fff;
}

.landing__text .landing__header {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.landing__text .landing__links {
  font-size: 22px;
  font-weight: 700;
}

.landing__text .landing__links a {
  color: #a9a2a2;
}

.presedent__word {
  background-color: #fff;
}

.presedent__word .about__company__text {
  width: 60%;
}

.presedent__word .about__company_img {
  width: 460px;
  height: 260px;
}

.presedent__word .about__company__content {
  align-items: center;
}

.team__work {
  padding-top: 50px;
  padding-bottom: 50px;
}

.team__work .team__work__content {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
  flex-wrap: wrap;
}

.team__work__content .team__card {
  width: calc(100% / 4 - 40px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
}

.team__work__content .team__card .img {
  height: 260px;
  width: 100%;
}

.team__work__content .team__card .img img {
  width: 100%;
  height: 100%;
}

.team__work__content .team__card .text {
  padding: 20px;
}

.team__work__content .team__card .text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.team__work__content .team__card .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
}

.our__vession {
  background-color: #e5eef4;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.our__vesion__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.our__vesion__title .img {
  width: 30px;
  height: 30px;
}

.our__vesion__title .img img {
  width: 100%;
  height: 100%;
}

.our__vesion__title h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--main-color);
}

.our__vesion__header {
  border: 1px dashed #000;
  width: 90%;
  padding: 20px;
  padding-left: 120px;
  margin-bottom: 50px;
}

.our__vession p {
  font-size: 22px;
  font-weight: 700;
  line-height: 50px;
}

.our__vesion__message {
  display: flex;
  align-items: center;
}

.our__vesion__message .message__img {
  width: 350px;
  height: 320px;
}

.our__vesion__message .message__img img {
  width: 100%;
  height: 100%;
}

.message_section {
  border: 1px dashed #000;
  padding: 20px;
  flex: 1;
}

.our__vesion__values {
  display: flex;
  gap: 100px;
  align-items: start;
  margin-top: 50px;
}

.our__vesion__values .image__value {
  width: 390px;
  height: 450px;
  margin-top: 100px;
}

.our__vesion__values .image__value img {
  width: 100%;
  height: 100%;
}

.our__value__section {
  border: 1px dashed #000;
  height: auto;
  padding: 20px;
}

.our__value__section ul {
  list-style: decimal;
  padding-right: 20px;
}

.our__value__section ul li {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
}

.custom__landing {
  height: 650px !important;
}

.custom__landing .main-container {
  height: 100%;
  padding-top: 100px;
}

.custom__landing .mask1 {
  padding: 3px;
}

.about__services {
  margin-top: 50px;
  margin-bottom: 50px;
}

.about__services .about__services__text h3 {
  color: var(--main-color);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about__services .about__services__text p {
  font-size: 22px;
  font-weight: 500;
  line-height: 44px;
  color: #a9a2a2;
}

.about__services__text .btn__text {
  display: flex;
  background-color: var(--main-color);
  cursor: pointer;
  display: flex;
  gap: 20px;
  width: 230px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 30px;
  color: #fff;
}

.about__services__text .btn__text p {
  margin: 0;
  color: #fff;
}

.services__img__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.services__img__container .img {
  width: calc(100% / 3 - 20px);
  height: 260px;
}

.services__img__container .img img {
  width: 100%;
  height: 100%;
}

.about__service__slider .owl-carousel {
  direction: ltr;
  position: relative;
}

.about__service__slider .owl-carousel .owl-dots {
  display: none !important;
}

.about__service__slider .owl-carousel .owl-nav {
  display: flex !important;
  gap: 20px;
  position: absolute;
  top: -80px;
  left: 10px;
}

.about__service__slider .owl-carousel .owl-nav .owl-next,
.about__service__slider .owl-carousel .owl-nav .owl-prev {
  background-color: var(--main-color) !important;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 5px;
}

.about__service__slider .owl-carousel .item {
  padding: 10px;
}

.about__service__slider .owl-carousel .item__slider__service {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  color: var(--main-color);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
  padding: 10px;
}

.about__service__slider .owl-carousel .item__slider__service h3 {
  font-size: 16px;
  font-weight: 500;
}

.about__service__slider .owl-carousel .item__slider__service h6 {
  font-size: 14px;
  font-weight: 500;
}

.about__service__slider .owl-carousel .item__slider__service .img {
  width: 70px;
  height: 70px;
  background-color: #bae6ff;
  border-radius: 50%;
  padding: 15px;
}

.about__service__slider .owl-carousel .item__slider__service .img img {
  width: 100%;
  height: 100%;
}

.about__service__slider__header h3 {
  margin: 50px 0;
  color: var(--main-color);
  font-size: 22px;
  font-weight: 700;
}

.form__order {
  margin-top: 50px;
  margin-bottom: 50px;
}

.form__order form {
  width: 100%;
  border: 1px solid #a9a2a2;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.form__order form h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form__order .input-container {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}

.form__order .input {
  width: 100%;
  position: relative;
}

.form__order .input .img {
  width: 25px;
  height: 25px;
  position: absolute;
  left: 10px;
  top: 20px;
}

.form__order .input .img img {
  width: 100%;
  height: 100%;
}

.form__order .input input {
  width: 100%;
  padding: 10px;
  height: 65px;
  border: 1px solid #a9a2a2;
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-weight: 700;
  color: #a9a2a2;
}

.form__order textarea {
  width: 100%;
  padding: 10px;
  height: 120px;
  border: 1px solid #a9a2a2;
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #a9a2a2;
}

.refresh_btn {
  display: flex;
  align-items: center;
  width: 120px;
  cursor: pointer;
  gap: 20px;
  margin-bottom: 20px;
}

.refresh_btn p {
  margin: 0;
}

.refresh_btn .img {
  width: 25px;
  height: 25px;
}

.refresh_btn .img img {
  width: 100%;
  height: 100%;
}

.form__order input[type="submit"] {
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
  margin: auto;
  border-radius: 10px;
  width: 330px;
  height: 60px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--main-color);
  transition: 0.3;
}

.form__order input[type="submit"]:hover{
    background-color: #fff;
    color: var(--main-color);
}

.bg-chiper {
  background-position: center;
  background-size: cover;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-chiper input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  height: auto !important;
  width: 190px !important;
  font-size: 70px !important;
  font-weight: 600 !important;
  transform: rotate(4deg) translateX(-35px) translateY(-15px);
  background: transparent;
}

.projects__page {
  margin-top: 50px;
  margin-bottom: 50px;
}

.projects__slider__container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  flex-wrap: wrap;
}

.projects__slider__container .item {
  width: calc(100% / 3 - 15px);
}

.projects__slider__container .item .img {
  width: 100%;
  height: 390px;
}

.projects__slider__container .item .img img {
  width: 100%;
  height: 100%;
}

.projects__slider__container .item .project__card h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  margin: 15px 0;
  color: #000;
}

.projects__slider__container .item .project__card p {
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #a9a2a2;
  margin-top: 20px;
}

.about__project {
  margin-top: 50px;
  margin-bottom: 50px;
}

.about__project .about__project__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about__project .about__project__content .img {
  width: 530px;
  height: 600px;
}

.about__project .about__project__content .img img {
  width: 100%;
  height: 100%;
}
.about__project .about__project__content .about__project__text {
  flex: 1;
}

.about__project .about__project__content .about__project__text h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about__project .about__project__content .about__project__text p{
  font-size: 22px;
  line-height: 70px;
  font-weight: 500;
  color: #A9A2A2;
}


.about__project__section{
  margin-top: 50px;
  margin-bottom: 50px;
}

.project_details_slider .img{
  width: 100%;
  height: 400px;
}

.project_details_slider .img img{
  width: 100%;
  height: 100%;
}

.project_details_slider h3{
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  margin: 15px 0;
  text-align: right;
  color: #000;
}


.project_details_slider p{
  font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #a9a2a2;
    margin-top: 20px;
}


.about_blog_section{
  margin-top: 50px;
  margin-bottom: 50px;
}

.about_blog_section .about_blog_content{
  display: flex;
  gap: 30px;
}

.about_blog_section .about_blog_content .img{
  width: 550px;
  height: 450px;
}

.about_blog_section .about_blog_content .img img{
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.about_blog_section .about_blog_content .blog__text{
   flex: 1;
}


.about_blog_section .about_blog_content .blog__text h3{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about_blog_section .about_blog_content .blog__text p{
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  color: #A9A2A2;
}


.about_blog_section .about_blog_content .blog__text ul {
  list-style: decimal;
  padding-right: 20px;
}

.about_blog_section .about_blog_content .blog__text ul li{
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  color: #A9A2A2;
}

.about_blog_section .about_blog_content .blog__text .date{
  display: flex;
  align-items: center;
  gap: 10px;
}


.about_blog_section .about_blog_content .blog__text .date img{
  width: 30px;
  height: 30px;
}

.about_blog_section .about_blog_content .blog__text .date p{
  margin: 0;
}

.item .blog__card{
  width: 100%;
  display: block;
}

.partner__container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partner__container .item{
  width: calc(100% / 6 - 30px);
}

.main__accordion{
  margin-top: 50px;
  margin-bottom: 50px;
}

.accordion-button::after{
  position: absolute;
  left: 20px;
  background: var(--main-color);
  color: #fff !important;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  background-image: none !important;
  content: "\f107" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.accordion-button:not(.collapsed)::after{
  position: absolute;
  left: 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-image: none !important;
  content: "\f107";
}

.accordion-item{
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 5px;
}

.accordion-button:not(.collapsed){
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

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

.contracts__section{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contracts__section .change__user__img{
  width: 130px;
  height: 130px;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}

.contracts__section .change__user__img .img-user{
  width: 100%;
  height: 100%;
}

.contracts__section .change__user__img .img-user img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.contracts__section .pen-img{
  position: absolute;
  bottom: 0;
  width: 35px;
  height: 35px;
}

.contracts__section .pen-img img{
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.contracts__section .change__user__img label{
  display: none;
}

.contracts__section .change__user__img input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.contracts__section form{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contracts__section .input{
  position: relative;
  margin-bottom: 20px;
}

.contracts__section .input input{
  width: 360px;
  height: 50px;
  background-color: #E5EEF4;
  font-size: 16px;
  color: #797575;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
}

.contracts__section .input .img{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.contracts__section input[type="submit"]{
  width: 220px;
  height: 55px;
  color: #fff;
  cursor: pointer;
  margin-top: 30px;
  background-color: var(--main-color);
  font-weight: 700;
}

.header .owl-carousel{
  direction: ltr;
  display: block;
}

.header .owl-carousel .landing{
  direction: rtl;
}

.header .owl-carousel .item .custom__landing{
  direction: rtl;
}

.header .owl-carousel .owl-dots{
  display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    left: 50%;
    bottom: 50px;
}

.contact__us__form{
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact__us__form .line{
  font-size: 16px;
  color: #A9A2A2 ;
  font-weight: 700;
  position: relative;
  text-align: center;
  width: 100%;
}

.contact__us__form .line::before, .contact__us__form .line::after{
  position: absolute;
  content: "";
  height: 1px;
  width: 35%;
  left: 50px;
  bottom: 10px;
  border-top: 1px solid #A9A2A2;
}

.contact__us__form .line::after{
  right: 50px;
}

.contact__us__form form {
  background-color: #E5EEF4;
  width: 700px;
  margin: 50px auto;
  padding: 50px;
  border-radius: 10px;
}


.contact__us__form form h3{
  font-size: 28px;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 50px;
}

.contact__us__form form .input-container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.contact__us__form form  .input{
   width: 100%;
   position: relative;
}

.contact__us__form form .input-container .input input{
  width: 100%;
  height: 65px;
  border: none;
  outline: non;
  border-radius: 10px;
  padding: 10px;
}

.contact__us__form form .input .img{
   position: absolute;
   width: 30px;
   height: 30px;
   left: 10px;
   top: 20px;
}

.contact__us__form form .input .img img{
  width: 100%;
  height: 100%;
}

.contact__us__form form  textarea{
  width: 100%;
  height: 120px;
  border: none;
  outline: non;
  border-radius: 10px;
  padding: 10px;
  resize: none  ;
}

.contact__us__form form input[type="submit"]{
  background-color: var(--main-color);
  color: #fff;
  border: none;
  outline: none;
  width: 180px;
  height: 55px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 50px;
  font-weight: 700;
}

.pdf__view{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdf__view .text{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pdf__view .text p{
  color: var(--main-color);
  font-size: 23px;
  font-weight: 600;
  margin: 0;
}

.pdf__view .text .img{
  width: 50px;
  height: 70px;
}

.pdf__view .text .img img{
  width: 100%;
  height: 100%;
}

.pdf__view .icon{
  cursor: pointer;
  color: var(--main-color);
  font-size: 25px;
  border: 1px solid var(--main-color);
  padding: 5px 10px;
  border-radius: 5px;
}

.accordion-button {
  font-size: 22px !important;
  font-weight: 700;
  color: #000 !important;
}

.owl-carousell{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


.owl-carousell .item{
    width: calc(100% / 3 - 30px);
}


.owl-carousell .item .services__item{
    width: 100%;
}

.about__company__btn.caroiuo{
    margin-left: auto;
    margin-right: auto;
}


#map{
    position: relative;
}
.contact-us-map::before{
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 1px dashed var(--main-color);
    border-radius: 6px;
}

.our__value__section ol li h3, .our__value__section ol li h3{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}


.our__value__section ol{
    padding-left: 0;
}


.blog__text ol li {
    font-size: 22px;
    color: #A9A2A2;
    margin-right: 20px;
    margin-bottom: 10px;
}
