/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #fff
}

*::-webkit-scrollbar-thumb {
  background: #666;
}

*::-webkit-scrollbar-thumb:hover {
  background: #666;
}

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

* {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;

}

:before,
:after {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.row-header {
  display: flex;
  flex-wrap: wrap;
}

.v-center {
  align-items: center;
}

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

a {
  text-decoration: none;
}

/* header */
.header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.header .item-left {
  flex: 0 0 25%;
}

.header .logo a {
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

/* .logo {
  width: 150px;
  height: 60px;
} */

.header .item-center {
  flex: 0 0 66%;
}

.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}

.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}

.header .menu>ul>li>a {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
  min-width: 180px;
  max-width: 250px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1225px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 16px;
  color: #a66f30;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 20px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
  color: #a66f30;
}

/* banner section */
.banner-section {
  background-image: url('../img/banner.wepb');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

.mobile-menu-head a {
  padding-left: 10px;
  color: #000;
  font-weight: bold;
}

/*responsive*/
@media(max-width: 991px) {

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  }

  .v-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}


/* part contact us  */
#consultation-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  margin: 60px auto;
  width: 80%;
  border-radius: 10px;
}

.container-contact {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  padding: 120px 0;
  background-size: cover;
  border-radius: 10px;

}

.container-contac h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

#consultation-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#consultation-form input {
  padding: 10px;
  margin: 5px;
  width: calc(50% - 10px);
  font-size: 1rem;
  width: 400px;
  margin: 0 40px;
  border: none;
  background: transparent;
  border-bottom: 1px solid gray;
}

#consultation-form input:focus {
  outline: none;
}


.consent-text {
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
  color: #666;
  font-size: 1.2rem;
}

.row-input1 {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .row-input1 {
    flex-direction: column;
  }

  #consultation-form input {
    margin: 15px;
  }
}

@media screen and (max-width: 450px) {
  #consultation-section {
    width: 95%;
  }

  #consultation-form input {
    width: 280px;
  }

  .container-contact {
    padding: 90px 0;
    width: 95%;
  }
}

@media screen and (max-width: 340px) {
  #consultation-form input {
    width: auto;
  }
}

/* main-banner */

.main-banner {
  width: 100%;
  height: 120vh;
  position: relative;
  overflow: hidden;
}

.main-banner ul {
  list-style: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #ea4636; */
  z-index: 99;
}

.main-banner ul li {
  width: calc(100% / 3);
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.main-banner ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  transition: .5s all;
}

.main-banner ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: .5px solid #ffffff46;
  transition: .5s all;
  font-weight: 700;

}

.main-banner ul li:hover::after {
  background: rgba(0, 0, 0, .1);
}

.main-banner ul li:hover::before {
  height: 100px;
}

.main-banner ul li:hover a {
  color: #e8b683;
}

.main-banner ul li a {
  text-decoration: none;
  color: #fff;
  font-family: sans-serif;
  font-size: 18px;
  transition: .3s all;
  font-weight: 600;
}

.main-banner .bg_image {
  width: 100%;
  height: 100%;
  transition: .3s all;
  /* background-color: #ea4636; */
  /* by default */
  background-image: url(../img/body-cover.webp);
  background-size: cover;
  background-position: center center;

}

@media screen and (max-width: 1024px) {
  .main-banner {
    height: 90vh;
  }
}

@media screen and (max-width: 768px) {
  .main-banner {
    height: 60vh;
  }

  .main-banner ul li a {
    font-size: 15px;
  }
}

/* end main-banner */

/* style page index and services */
/* breadcrumb */
.breadcrumb-section {
  width: 97%;
  margin: 0 auto;
}

.breadcrumb-section .breadcrumb {
  margin: 0px;
  margin-top: 15px;
}

.breadcrumb-section .breadcrumb .breadcrumb-item {
  font-size: 17px !important;
  font-weight: 500;
  color: #000 !important;
}

.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #E3B077 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #000 !important;
}

/* start header section */

.btn-appoint {
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.btn-appoint:hover {
  background-color: #222222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.hero-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 40%;
}

.hero-content h1 {
  font-size: 40px;
  color: #fff;
  margin: 5px 0;
}

.hero-content p {
  font-size: 18px;
  color: #fff;
  margin: 10px 0;
}

.hero-content .btn {
  font-size: 16px;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s;
}

.hero-content a:hover {
  background-color: #fff;
  color: #000;
}

.background-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@media (min-aspect-ratio: 16/9) {
  .background-clip {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .background-clip {
    /* width: auto; */
    height: 100%;
  }
}

@media screen and (max-width:768px) {
  .hero-container {
    height: 40vh;
  }
}

/* end header section */

/* staet help and contact section */
.boxs {
  margin: 60px 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* position: absolute; */
  /* left: 0;
  top: 95%;
  z-index: 33; */
  /* position: fixed;
  top: 700px;
  z-index: 9999; */
}

.boxs .section-help {
  width: 57%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.section-contact .about-contact {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: flex-start;
  margin: 40px auto;
}

.section-help .contant-help h1,
.section-contact .contant-help h1 {
  font-size: 25px;
  padding-top: 5px;
  font-weight: 600;
}

.section-help .contant-help p,
.section-contact .contant-help p {
  color: #7B798C;
}

.section-contact .contant-help p {
  color: #a3a2b2;
}

.section-contact .contant-help a {
  font-size: 20px;
  color: #fff;
  display: flex;
}

.section-contact .contant-help a i {
  padding: 0 10px;
  color: #f4c692;
  font-size: 30px;
}

.section-help .contant-help p,
.section-help .contant-help a {
  padding: 7px 0;
}

.section-contact .contant-help p,
.section-contact .contant-help a {
  padding: 7px 0;
}

.section-help .contant-help a {
  color: #E3B077;
  line-height: 1.5;
}

.section-help .contant-help a i {
  padding: 0 5px;
}

.section-help .content-features i {
  color: #E3B077;
  padding: 5px;
}

.section-help .content-features p {
  color: #7B798C;
}

.section-help {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-help .contant-help {
  width: 55%;
}

.boxs .section-contact {
  width: 38%;
  background-color: #18162B;
  color: #fff;
  padding: 40px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

/* end contact and help section */

/* part about  */
.about {
  margin: 90px 100px;
}

.about .about-contant {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.text-content {
  width: 40%;
}

.about h4 {
  color: #E3B077;
  padding: 10px 0;
  font-size: 17px;
  font-weight: bold;
}

.text-content .text h1 {
  font-size: 30px;
  font-weight: bold;
  padding: 10px 0;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.text-content .text ul {
  padding: 10px 0;
}

.text-content .text ul li {
  padding: 10px 0;
  color: #7B798C;
}

.text-content .about-data {
  margin: 20px 0;
}

.about-data .data-one {
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
}

.about-data .data-icon {
  width: 70%;
}

.about-data .data-icon p {
  color: #7B798C;
  padding-top: 7px;
}

.about-data .data-icon h3 {
  font-size: 20px;
  font-weight: bold;
}


.about-data .data-one .icon i {
  font-size: 25px;
}

.about-data .data-one .icon {
  padding: 30px;
  margin: 0 15px;
  color: #E3B077;
  text-align: center;
  border-radius: 7px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .6s;
  width: 40px;
  height: 40px;
}

.about-data .data-one .icon:hover {
  background-color: #E3B077;
  color: #fff;
}

.about-data .data-one .active {
  background-color: #E3B077;
  color: #fff;
}

.about-data .data-one .active:hover {
  background-color: #fff;
  color: #E3B077;
}

.data-one .images-contant {
  width: 50%;
  margin: 15px 0;
}

.images-contant .part1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 15px 0;
}

.about-mobile-image {
  display: none;
}

.picture1,
.picture2 {
  width: 285px;
  height: 400px;
}

.picture3 {
  width: 600px;
  height: 300px;
}

.picture1,
.picture2,
.picture3 {
  border-radius: 7px;
  object-fit: cover;
}

.read-more {
  margin: 10px 20px;
  display: flex;
  justify-content: flex-start;
}

.read-more-mobile {
  display: none;
}

.btn-more {
  background-color: #E3B077;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  transition: all .5s;
}

.btn-more:hover {
  background-color: #000;
  color: #fff;
}

/* end about section */

/* elementor-section */
.elementor-section {
  margin: 90px 100px;

}

.elementor {
  background-color: #FDF0E0;
  padding: 50px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.elmentor-data {
  flex: 1 1 calc(25% - 20px);
  margin: 20px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.elmentor-text {
  text-align: center;
}

.elmentor-text i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #e3b077;
}

.plus {
  color: #e3b077;
}

.elmentor-text h1 {
  font-size: 30px;
  margin: 5px 0;

}

.elmentor-text p {
  font-size: 14px;
  margin: 5px 0;
  color: #575a5f;
}

/* end elementor section */

/* section-services */
.section-services {
  margin: 90px;
}

.service-text-center {
  text-align: center;
  padding: 15px 0;
}

.service-text-center h3 {
  color: #E3B077;
  padding: 7px 0;
  font-size: 20px;
}

.service-text-center h1 {
  font-size: 35px;
  padding: 7px 0;

}

.service-text-center p {
  font-size: 15px;
  padding: 7px 25px;
  color: #575a5f;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
}

.why-choose-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.why-choose-us .container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
  margin: 15px 0;
}

.why-choose-us .container .image {
  flex: 1 1 35%;
  min-width: 250px;
}

.why-choose-us .container .image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 5px;
  object-fit: cover;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
}

.why-choose-us .container .content {
  flex: 1 1 65%;
  padding: 0 15px;
}

.why-choose-us .container .content h2 {
  font-size: 1.75rem;
}

.why-choose-us .container .content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.why-choose-us .container .features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-choose-us .container .feature {
  display: flex;
  align-items: flex-start;
}

.feature .icon i {
  color: #e3b177af !important;
}

.feature .text a {
  color: #000;
  font-weight: 600;
}

.feature .text a h3 {
  color: #E3B077;
  font-weight: 600;
  transition: all 0.5s ease;
}

.feature .text a h3:hover {
  color: #222;
}

.why-choose-us .container .icon {
  flex: 0 0 40px;
  margin-right: 10px;
}

.why-choose-us .container .icon i {
  font-size: 1.75rem;
  color: #E3B077;
}

.why-choose-us .container .text h3 {
  font-size: 1.1rem;
  margin: 0;
}

.why-choose-us .container .text p {
  font-size: 0.9rem;
  margin: 5px 0 0;
}

/* end services */

/* footer */
footer {
  background: #18162B;
  color: #fff;
  border-radius: 50px 50px 0px 0px;
}

.footer {
  padding: 2rem 8rem 0rem 8rem;

}

.top {
  display: flex;
  align-items: center;
  text-align: start !important;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top i {
  color: #fff;
  font-size: 1.6rem;
  margin-left: 1rem;
}

.top i:hover {
  color: #f6c791;
}

.bottom {
  padding-top: 2rem;
  text-align: start;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bottom div {
  display: flex;
  flex-direction: column;
}

.bottom h4 {
  font-size: 1.2rem;
  padding: 1rem .2rem;
}

.bottom a {
  text-decoration: none;
  color: #fff;
  padding-bottom: .5rem;
  font-size: 1rem;
}

.copy-right {
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}

.copy-right a {
  text-decoration: none;
  color: #E3B077;
}

/* end footer */
/* Responsive gor small screens */
@media (max-width: 1100px) {
  .boxs {
    margin: 40px;
    flex-wrap: wrap;

  }

  .boxs .section-help {
    width: 90%;
    margin: 30px auto;
  }

  .boxs .section-contact {
    width: 95%;
    margin: 30px auto;

  }

  .section-help .contant-help h1,
  .section-contact .contant-help h1 {
    font-size: 22px;
    padding-top: 10px;
  }

  .hero-content {
    width: 70%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* part about  */
  .about .about-contant {
    justify-content: center;
    align-items: center;
  }

  .about {
    margin: 80px;
    /* margin: 40px 20px; */
  }

  .text-content {
    width: 100%;
  }

  .about h4 {
    color: #E3B077;
    padding: 10px 0;
    font-size: 17px;
    font-weight: bold;
  }

  .text-content .text h1 {
    font-size: 30px;
    font-weight: bold;
    padding: 10px 0;
    line-height: 1.2;
    letter-spacing: 1.5px;
  }

  .text-content .text ul {
    padding: 10px 0;
  }

  .text-content .text ul li {
    padding: 10px 0;
    color: #7B798C;
  }

  .text-content .about-data {
    margin: 20px 0;
  }

  .about-data .data-one {
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
  }

  .about-data .data-icon {
    width: 100%;
  }

  .about-data .data-icon h3 {
    font-size: 18px;
  }

  .about-contant .images-contant {
    width: 90%;
    margin: 15px auto;
  }

  .picture1,
  .picture2 {
    width: 240px;
    height: 350px;
  }

  .picture3 {
    width: 500px;
    height: 200px;
  }

  .images-contant .part1 {
    margin: 20px auto;
  }

  .images-contant .part2 {
    display: flex;
    justify-content: center;
  }

  .read-more {
    justify-content: center;
    display: none;
  }

  .read-more-mobile {
    display: block;
  }

  .elmentor-data {
    flex: 1 1 calc(50% - 20px);
    /* 3 items per row */
  }

  /* services */
  .section-services {
    margin: 40px;
  }

  .why-choose-us {
    padding: 10px;
  }

  .why-choose-us .container {
    flex-direction: row;
    width: 90%;
  }

  .why-choose-us .container .image,
  .why-choose-us .container .content {
    flex: 1 1 100%;
  }

  .why-choose-us .container .content h2 {
    font-size: 1.5rem;
  }

  .why-choose-us .container .content p {
    font-size: 0.85rem;
  }

  .why-choose-us .container .icon i {
    font-size: 1.5rem;
  }

  .why-choose-us .container .text h3 {
    font-size: 1rem;
  }

  .why-choose-us .container .text p {
    font-size: 0.85rem;
  }

}

@media screen and (max-width:850px) {
  footer {
    border-radius: 10px 10px 0 0;
  }

  .footer {
    padding: 1rem;

  }

  .footer i {
    margin: 1rem 1rem 0 0;
  }

  .bottom div {
    width: 50%;
  }

}

@media (max-width: 770px) {
  .section-contact .about-contact {
    margin: 5px auto;
  }

  .boxs .section-contact {
    padding: 15px 20px;
  }

  .boxs {
    margin: 20px;
    flex-wrap: wrap;
  }

  .about {
    margin: 40px;
  }

  .picture1,
  .picture2 {
    width: 240px;
  }

  .picture3 {
    width: 450px;
    height: 200px;
  }

  .elmentor-text h1 {
    font-size: 25px;
  }

  /* services */
  .why-choose-us .container {
    flex-direction: column;
  }

  .why-choose-us .container .image,
  .why-choose-us .container .content {
    flex: 1 1 100%;
  }

  .why-choose-us .container .content {
    padding: 10px 0px;
  }

  .why-choose-us .container .content h2 {
    padding: 0;
    margin-bottom: 10px;
  }

  .images-contant .part2 {
    display: none;
  }

  .about-mobile-image {
    display: block;
    margin: 10px 0;
  }
}

@media (max-width: 570px) {
  .boxs {
    margin: 30px 20px;
    flex-wrap: wrap;

  }

  .boxs .section-help {
    width: 100%;
    padding: 10px 20px;
    margin: 15px auto;
  }

  .boxs .section-contact {
    width: 100%;
    margin: 15px auto;

  }

  .section-help .contant-help h1,
  .section-contact .contant-help h1 {
    font-size: 22px;
    padding-top: 10px;
  }

  .section-help .contant-help {
    width: 96%;
    margin: 15px 0;
  }

  .section-help .content-features {
    width: 96%;
    margin: 5px 0;
  }

  .section-contact .contant-help a {
    font-size: 18px;
    display: flex;
    align-items: center;
  }

  .section-contact .contant-help a i {
    font-size: 25px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* part about  */
  .about {
    margin: 40px 20px;
  }

  /* about */
  .text-content {
    width: 100%;
  }

  .picture1 {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }

  .picture2 {
    width: 100%;
    height: 400px;
  }

  .picture3 {
    width: 360px;
    height: 180px;
  }

  .about-contant .images-contant {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* elementor */
  .elementor-section {
    margin: 40px 20px;
  }

  .elementor {
    padding: 40px 10px;
  }

  .elmentor-data {
    flex: 1 1 calc(50% - 20px);
  }

  /* services */
  .section-services {
    margin: 40px 10px;
  }

  .why-choose-us .container .text h3 {
    font-size: 0.9rem;
  }

  .why-choose-us .container .text p {
    font-size: 0.8rem;
  }

  .why-choose-us .container .content h2 {
    font-size: 1.25rem;
    margin: 15px 0;
  }

  .why-choose-us .container {
    flex-direction: row;
    width: 100%;
    margin: 10px 0;
  }

  /* footer */
  .top {
    display: flex;
    align-items: baseline;

  }
}

@media screen and (max-width: 400px) {
  .picture3 {
    width: 300px;
  }
}

/* page read more */

.hero-container-readmore {
  position: relative;
  width: 100%;
  height: 90vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.hero-content-readmore {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 9999;
}


.hero-container-readmore::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}



/* blog section */
.blog-section {
  width: 100%;
  display: grid;
  place-items: center;
}

.row-blog {
  width: 80%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 3rem 0;

}

.row-blog .img-wrapper {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .3s ease;
}

.row-blog .content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  width: 100%;
}

.row-blog .content-wrapper span.text-wrapper {
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.row-blog .content-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px;

}

.row-blog .content-wrapper p {
  font-size: 16px;
  line-height: 28px;
  padding: 10px 0;

}

.blog-header {
  text-align: center;
  margin: 20px 0;
}

.blog-section {
  padding: 20px;
}

.blog-section img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .blog-section {
    padding: 0 !important;
  }


  .row-blog {
    grid-template-columns: 1fr;
  }

  .row-blog .content-wrapper {
    padding: 0;
  }

  .row-blog .content-wrapper p {
    font-size: 14px;
    line-height: 25px;
    padding: 5px 0;

  }

  .hero-container-readmore {
    position: relative;
    width: 100%;
    height: 50vh;
  }

  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  /* 
  .small-column {
    display: flex;
    flex-direction: column-reverse !important;
  } */
}

/* mobile */
@media (max-width:550px) {
  .hero-container-readmore {
    height: 35vh;
  }

  .row-blog {
    padding: 1.5rem 0;
  }

  .hero-content-readmore h1 {
    font-size: 20px;
  }

  .hero-content {
    width: 96%;
  }
}

.swiper-button-next,
.swiper-button-prev {
  font-size: 10px !important;
  color: #e3b077 !important;
  width: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

/* page skin */

.row-section {
  padding: 70px 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.row-container {
  padding: 5px 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.text .card-title h5 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 10px 0;
}

.card-text {
  padding: 5px 0;
  font-size: 14px;
  color: #666;
}

.img img {
  height: 550px;
  border-radius: 7px;
  /* object-fit: cover; */
}

.row-section .card {
  border: none;
}

.row-section .card .text h5 {
  font-size: 20px;
  font-weight: bold;
}

.row-section .card img {
  width: 100%;
}

.contact-clinic-parent {
  background-color: #18162B;
  color: #fff;
  padding: 20px 10px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.content-clinics {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
  padding: 0 20px;
}

@media screen and (max-width: 1024px) {
  .row-container {
    padding: 5px 15px;
  }

  .img img {
    height: auto;
  }

  .content-clinics {
    margin: 10px auto;
    padding: 0 5px;
  }

}

@media screen and (max-width: 500px) {
  .row-container {
    padding: 5px;
  }

  .contact-clinic-parent {
    padding: 10px;
    margin: 5px 15px;
  }
}


/* page our services */

.section-services {
  margin: 50px 0;
  width: 100%;
}

.section-services h1,
.section-services h2 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  margin: 20px;
}

.section-services h2 {
  font-size: 35px;
  margin: 5px;
}

.services-box {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  justify-items: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-box .main-img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.services-box .main-img img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.services-box .about-content {
  padding: 6% 0;
  opacity: 0;
  animation: fadeInText 1s ease-out forwards 0.5s;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.services-content h3 {
  color: #000;
  line-height: 40px;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-content hr {
  width: 30%;
  border: none;
  height: 3px;
  background-color: #d1bd0c;
  margin-bottom: 25px;
}

.services-content p {
  max-width: 600px;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
}

.section-services .last-part {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.last-part a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.5s ease;
  background-color: #E3B077;
  box-shadow: 0 2px 8px hsla(220, 74%, 15%, 0.1);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 7px;
  cursor: pointer;
}

.last-part a:hover {
  background-color: #000;
  color: #fff;
}

/* Contact-us */
.Contact-us {
  background-image: url(../img/contactus.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
  width: 80%;
}

.btn_contact {
  background: #e8b683;
  box-shadow: 0 12px 20px rgba(232, 182, 131, .2);
  padding: 10px 20px;
  width: 280px;
  height: 60px;
  text-align: center;
  margin: 20px 0;
  border: none;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  transition: .5s all;
  border: none;
  font-weight: 400;
  margin-top: 20px;
}

.btn_contact:hover {
  background-color: #000;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .services-box {
    margin: 35px 0;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out forwards;
  }

  .services-box .main-img img {
    max-width: 100%;
  }

  .services-content {
    padding: 4% 0;
  }

  .services-content h3 {
    font-size: 28px;
  }

  .services-content p {
    font-size: 16px;
    margin: 20px 0;
  }

  .services-content hr {
    width: 50%;
    margin-bottom: 10px;
  }

  .reverse-colum {
    display: flex;
    flex-direction: column-reverse !important;
  }

  .section-services h2 {
    font-size: 25px;
  }

  .Contact-us {
    height: 40vh;
    width: 90%;
  }

  .consent-text {
    width: 100%;
    font-size: 1rem;
  }
}


.back-to-top {
  position: fixed;
  bottom: 125px;
  right: 15px;
  /* background-color: #E3B077; */
  color: #E3B077;
  /* padding: 15px; */
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  border-radius: 50%;
}

.back-to-top .icon-whatsapp {
  font-size: 50px;
}


/* landing page  */

.section-services .container {
  max-width: 1150px;
  margin-top: 20px;
}

.custom-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* Image Wrapper */
.card-img-wrapper {
  height: 450px;
  overflow: hidden;
  background: #e6e6e6;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: inherit;
}

.card-content {
  padding: 30px 30px 20px 40px;
}

.card-content h5 {
  margin-bottom: 15px;
  font-size: 25px;
  color: #f1963b;
}

.card-content p {
  margin-bottom: 25px;
  font-size: 16px;
}

/* Button Styling */
.custom-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #dd8833;
  color: #fff;
  border: 1px solid #e8b683;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #fff;
  border: 1px solid #e8b683;
  color: #e8b683;
}

.custom-btn .arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.custom-btn:hover .arrow {
  transform: translateX(5px);
}

/* Add Animation on Card Hover */
.custom-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Keyframes for fadeInUp */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-img-wrapper {
    height: 280px;
  }

  .card-content {
    padding: 25px 25px 15px 20px;
  }
}