@import url("helper.css");
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #F47746;
  /* --subColor2: #77643d; */
}

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

.main-bg {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
  color: #20201E;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- loader page --------------- */
.load-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  padding-top: 30px;
  height: 100dvh;
  pointer-events: none;
  transform: scale(1);
  transition: all 0.5s 2s ease;
}
.load-page .top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #fff;
}
.load-page .left {
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100vw - 1305px) / 2);
  height: 100vh;
  background-color: #fff;
}
.load-page .right {
  position: fixed;
  top: 0;
  right: 0;
  width: calc((100vw - 1305px) / 2);
  height: 100vh;
  background-color: #fff;
}
.load-page .content {
  position: relative;
  background-color: #fff;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s 1.5s ease;
}
.load-page .content .loader {
  width: 100px;
  margin-bottom: 50px;
}
.load-page .content::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #20201E;
  border-left: 1px solid #20201E;
  transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.load-page .content::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #20201E;
  border-right: 1px solid #20201E;
  transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.load-page.loaded {
  transform: scale(1.5);
}
.load-page.loaded .content {
  transform: translateY(-100%);
}
.load-page.loaded .content::before {
  width: 40px;
  height: 40px;
}
.load-page.loaded .content::after {
  width: 40px;
  height: 40px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
  position: relative;
  padding: 20px 60px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  transition: all 0.3s ease;
  border: 1px solid;
}
.butn:hover {
  background-color: #fff;
  color: var(--main-color);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1333333333);
}
.butn:hover .arrow {
  filter: invert(69%) sepia(69%) saturate(3507%) hue-rotate(330deg) brightness(0%) contrast(96%);
}
.butn.butn-border {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.butn.butn-border:hover {
  background-color: var(--main-color);
  color: #fff;
}
.butn.butn-wh-border {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.butn.butn-wh-border:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/* --------------- top color --------------- */
.top-color {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  min-height: 100vh;
  pointer-events: none;
}

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 30px 0;
  z-index: 99;
}
.navbar .nav-link {
  color: #20201E;
  font-size: 18px;
  margin-inline-end: 20px;
}
.navbar .social-icons a {
  font-size: 16px;
  margin-inline-start: 15px;
}
.navbar .content {
  position: relative;
  padding: 0 50px;
}
.navbar .content::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid #20201E;
  border-right: 1px solid #20201E;
}
.navbar .content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid #20201E;
  border-left: 1px solid #20201E;
}

/* --------------- header --------------- */
header {
  position: relative;
}
header .content {
  position: relative;
  padding: 100px 0 150px;
}
header .content::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid #20201E;
  border-right: 1px solid #20201E;
}
header .content::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid #20201E;
  border-left: 1px solid #20201E;
}
header .content .head-imgs .img {
  position: relative;
  margin-top: -50px;
  border-width: 10px 10px 30px 10px;
  border-style: solid;
  border-color: #FFFFFF;
  box-shadow: inset 0px 0px 4px 12px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.08));
}
header .content .head-imgs .img img {
  filter: grayscale(1);
}
header .content .head-imgs .img.img1 {
  margin-top: 50px;
  transform: rotate(16deg);
}
header .content .head-imgs .img.img2 {
  transform: rotate(-6deg);
}
header .content .head-imgs .img .float-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.3s ease;
}
header .content .head-imgs .img .float-img:nth-of-type(2) {
  transition-delay: 0.3s;
  z-index: 2;
}
header .content .head-imgs .img .float-img:nth-of-type(3) {
  transition-delay: 0.6s;
  z-index: 3;
}
header .content .head-imgs .img .float-img:nth-of-type(4) {
  transition-delay: 0.9s;
  z-index: 4;
}
header .content .head-imgs .img .float-img:nth-of-type(5) {
  transition-delay: 1.2s;
  z-index: 5;
}
header .content .head-imgs .img .float-img:nth-of-type(6) {
  transition-delay: 1.5s;
  z-index: 6;
}
header .content .head-imgs .img.show-imgs .float-img {
  transform: scale(1);
}
header .content .head-imgs .logo-img {
  position: relative;
  display: block;
  margin: -50px 50px 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 130px;
  height: 130px;
  transform: rotate(-15deg);
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.08));
}
header .content .images-slider {
  position: relative;
  padding: 120px 0;
}
header .content .images-slider .swiper-button-next {
  left: 150px;
}
header .content .images-slider .swiper-button-prev {
  right: 150px;
}
header .content .images-slider .swiper-slide-active {
  position: relative;
  z-index: 20;
}
header .content .images-slider .swiper-slide-next .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  inset-inline-end: auto;
  inset-inline-start: -170px;
  opacity: 0.4;
}
header .content .images-slider .swiper-slide-prev .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  inset-inline-start: auto;
  inset-inline-end: -170px;
  opacity: 0.4;
}
header .content .images-slider .img {
  position: relative;
  height: 550px;
  border-radius: 25px;
  overflow: hidden;
  left: 0;
  right: 0;
  opacity: 1;
  transition: all 1s ease;
}
header .head-line {
  position: absolute;
  left: 0;
  top: -150px;
  width: 100%;
  max-height: 160%;
  z-index: -1;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 4s ease;
}
header .head-line.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

.circle-arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 10;
  padding: 5px;
}

/* --------------- about --------------- */
.about {
  position: relative;
  padding: 0 0 300px;
  overflow: hidden;
}
.about .img {
  position: relative;
  border-width: 10px 10px 30px 10px;
  border-style: solid;
  border-color: #FFFFFF;
  box-shadow: inset 0px 0px 4px 12px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.08));
  margin-top: 50px;
  transform: rotate(16deg);
}
.about .hand-icon {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 0;
  transform: rotate(-20deg);
  z-index: 1;
  margin-top: 20px;
}
.about .shap {
  position: absolute;
  width: 1400px;
  max-width: 100vw;
  left: calc((100vw - 1320px) / 2);
  transform: translateX(-120px);
  bottom: 0;
  max-height: 120%;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 4s ease;
}
.about .shap.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* --------------- services --------------- */
.services {
  position: relative;
}
.services .service-card {
  position: relative;
  margin-top: 70px;
}



.services .service-card .icon {
  position: relative;
  width: 130px;
  height: 130px;
  padding: 30px;
}
.services .service-card .icon .line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  max-width: unset;
}
.services .service-card .info h2 {
  position: relative;
}
.services .bg-color {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}

/* --------------- bouquet --------------- */
.bouquet {
  position: relative;
  padding-top: 120px;
}
.bouquet .title {
  position: relative;
  display: flex;
  justify-content: center;
}
.bouquet .title .camera {
  position: relative;
  width: 280px;
  margin-inline-end: -160px;
  margin-top: 20px;
}
.bouquet .cards {
  position: relative;
}
.bouquet .cards .item {
  position: relative;
  padding: 15px;
  margin-top: 30px;
  height: calc(100% - 30px);
}
.bouquet .cards .item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, var(--main-color), transparent);
  opacity: 0.1;
}
.bouquet .cards .item .item-body {
  position: relative;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 14px rgba(243, 200, 178, 0.3);
  border-radius: 10px;
  z-index: 10;
  padding: 30px;
  height: 100%;
      padding-bottom: 120px;
}
.bouquet .cards .item .item-body .icon {
  position: relative;
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  display: none;
}
.bouquet .cards .item .item-body .check-list {
  position: relative;
  padding-top: 20px;
  text-align: start;
}
.bouquet .cards .item .item-body .check-list li {
  display: flex;
  font-size: 15px;
  font-weight: bold;
  margin: 10px 0;
}
.bouquet .cards .item .item-body .check-list li i {
  color: var(--main-color);
  margin-inline-end: 15px;
  margin-top: 5px;
}

.bouquet .cards .item .item-body a.butn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px) !important ;
}

/* --------------- testimonials --------------- */
.testimonials {
  position: relative;
  z-index: 20;
}
.testimonials .content {
  position: relative;
  padding-top: 200px;
}
.testimonials .content .line {
  position: absolute;
  top: 25px;
  inset-inline-end: -70px;
  pointer-events: none;
}
.testimonials .cards .item {
  position: relative;
  margin-top: 30px;
  text-align: center;
}
.testimonials .cards .item .user-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
  left: -8px;
}
.testimonials .cards .item .user-wrapper .avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .cards .item .user-wrapper .qt {
  position: relative;
  width: 45px;
  height: 45px;
  right: -16px;
  z-index: 10;
}
.testimonials .cards .item .item-body {
  position: relative;
  background: linear-gradient(180deg, #FDF4E7 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 25px;
  padding: 35px;
  margin-top: -10px;
}
.testimonials .cards .item .item-body .text {
  font-size: 18px;
}
.testimonials .cards .item .stars {
  color: var(--main-color);
}
.testimonials .cards .item .title {
  font-size: 25px;
  margin: 5px 0;
}
.testimonials .cards .item .date {
  font-size: 14px;
  opacity: 0.7;
}
.testimonials .bg {
  position: absolute;
  right: 0;
  top: -20%;
  max-height: unset;
  z-index: -1;
  pointer-events: none;
}

/* --------------- partners --------------- */
.partners {
  position: relative;
  overflow: hidden;
}
.partners .title {
  position: relative;
}
.partners .title .shap {
  position: absolute;
  left: 32px;
  top: 76px;
}
.partners .partners-slider {
  position: relative;
  overflow: hidden;
}
.partners .cards {
  position: relative;
  margin-top: 155px;
  margin-inline-start: -22px;
  margin-bottom: 40px;
}
.partners .cards .brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .cards .brand img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  background-image: url(../images/brand-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 20px;
  filter: grayscale(1);
}
.partners .cards .line {
  position: absolute;
  right: -12px;
  bottom: 20px;
  width: calc(100% + 195px);
  max-width: unset;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 7s ease;
}
.partners .cards .line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  background-color: #1D1D1F;
  color: #fff;
  padding-top: 80px;
}
.footer .logo-side {
  position: relative;
  text-align: center;
}
.footer .logo-side .social-media {
  position: relative;
  padding-top: 30px;
}
.footer .logo-side .social-media a {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.0666666667);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
}
.footer .contact-list li {
  position: relative;
  margin: 15px 0;
  display: flex;
}
.footer .contact-list li i {
  flex-shrink: 0;
  margin-top: 5px;
}
.footer .subscribe-side {
  position: relative;
}
.footer .subscribe-side .form-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.footer .subscribe-side .form-group .form-control {
  position: relative;
  background-color: rgba(255, 255, 255, 0.0666666667);
  min-height: 65px;
  border-radius: 60px;
  border-color: transparent;
  box-shadow: none;
  color: #fff;
}
.footer .subscribe-side .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3333333333);
}
.footer .subscribe-side .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3333333333);
}
.footer .subscribe-side .form-group .butn {
  margin-inline-start: 15px;
  flex-shrink: 0;
}
.footer .text-content {
  position: relative;
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.2666666667);
}
.footer .foot-links {
  position: relative;
  padding: 30px 0;
  text-align: center;
}
.footer .foot-links a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0 30px;
  padding-bottom: 15px;
  opacity: 0.5;
}
.footer .foot-links a::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background-color: var(--main-color);
  bottom: 0;
  right: calc(50% - 10px);
}
.footer .foot-links a:hover {
  opacity: 1;
}
.footer .foot {
  position: relative;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------- about --------------- */
.about-pg-about {
  position: relative;
  padding: 100px 0;
}
.about-pg-about .images-slider {
  overflow: unset !important;
}
.about-pg-about .ab-shap {
  position: absolute;
  inset-inline-end: 11%;
  top: 100px;
  max-height: unset;
  width: 50%;
  pointer-events: none;
}

/* --------------- about-pg-features --------------- */
.about-pg-features {
  position: relative;
  padding-top: 80px;
}
.about-pg-features .ft-card {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.about-pg-features .ft-card .icon {
  width: 100px;
  height: 100px;
  margin-inline-end: 30px;
  flex-shrink: 0;
}
.about-pg-features .ft-card .text {
  width: 90%;
}

/* --------------- about-pg-services --------------- */
.about-pg-services {
  position: relative;
  padding: 120px 0;
  z-index: 20;
  overflow: hidden;
}
.about-pg-services::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50vw;
  height: 50vw;
  background-color: var(--main-color);
  border-radius: 50%;
  transform: translate(-30%, 30%);
  filter: blur(100px);
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}

/* --------------- customer-pg-about --------------- */
.customer-pg-about {
  position: relative;
  z-index: 20;
  padding-bottom: 120px;
}
.customer-pg-about .cus-line1 {
  position: absolute;
  top: -110px;
  left: 0;
  width: 75%;
  z-index: -1;
}
.customer-pg-about .cus-line2 {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: -1;
}
.customer-pg-about .customer-info {
  position: relative;
  padding: 120px 0;
}
.customer-pg-about .images-slider {
  position: relative;
  padding: 120px 0;
}
.customer-pg-about .images-slider .swiper-button-next {
  left: 150px;
}
.customer-pg-about .images-slider .swiper-button-prev {
  right: 150px;
}
.customer-pg-about .images-slider .swiper-slide-active {
  position: relative;
  z-index: 20;
}
.customer-pg-about .images-slider .swiper-slide-next .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  inset-iinline-end: auto;
  inset-iinline-start: -170px;
  opacity: 0.4;
}
.customer-pg-about .images-slider .swiper-slide-prev .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  inset-iinline-start: auto;
  inset-iinline-end: -170px;
  opacity: 0.4;
}
.customer-pg-about .images-slider .img {
  position: relative;
  height: 550px;
  border-radius: 25px;
  overflow: hidden;
  left: 0;
  right: 0;
  opacity: 1;
  transition: all 1s ease;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  color: #fff;
}

/* --------------- innerheader --------------- */
.innerheader {
  position: relative;
  padding: 80px 0;
  z-index: 20;
}
.innerheader .back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.innerheader .back-link .arrow {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(102, 124, 144, 0.2666666667);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 20px;
  flex-shrink: 0;
  font-size: 17px;
}
.innerheader .cus-line1 {
  position: absolute;
  top: -110px;
  left: 0;
  width: 75%;
  max-height: unset;
  z-index: -1;
}

/* --------------- bouquet about --------------- */
.bouquet-pg-about {
  position: relative;
  padding: 100px 0;
}
.bouquet-pg-about .bq-shap {
  position: absolute;
  left: 45%;
  top: 35%;
  max-height: unset;
  height: 75%;
  pointer-events: none;
}

.about-pg-about .images-slider,
.bouquet-pg-about .images-slider {
  position: relative;
  overflow: hidden;
}
.about-pg-about .images-slider .swiper-button-next,
.bouquet-pg-about .images-slider .swiper-button-next {
  left: 85px;
}
.about-pg-about .images-slider .swiper-button-prev,
.bouquet-pg-about .images-slider .swiper-button-prev {
  right: 85px;
}
.about-pg-about .images-slider .swiper-slide-active,
.bouquet-pg-about .images-slider .swiper-slide-active {
  position: relative;
  z-index: 20;
}
.about-pg-about .images-slider .swiper-slide-next .img,
.bouquet-pg-about .images-slider .swiper-slide-next .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  left: auto;
  right: -170px;
  opacity: 0.4;
}
.about-pg-about .images-slider .swiper-slide-prev .img,
.bouquet-pg-about .images-slider .swiper-slide-prev .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  right: auto;
  left: -170px;
  opacity: 0.4;
}
.about-pg-about .images-slider .img,
.bouquet-pg-about .images-slider .img {
  position: relative;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  left: 0;
  right: 0;
  opacity: 1;
  transition: all 1s ease;
}

/* --------------- portfolio-pg --------------- */
.portfolio-pg {
  position: relative;
}
.portfolio-pg .portfolio-card {
  position: relative;
  margin-bottom: 100px;
}
.portfolio-pg .portfolio-card .img {
  position: relative;
  height: 280px;
}
.portfolio-pg .portfolio-card .img .main-img {
  border-radius: 20px;
}
.portfolio-pg .portfolio-card .img .brand-logo {
  position: absolute;
  left: calc(50% - 70px);
  bottom: -40px;
  height: 140px;
  width: 140px;
}

/* --------------- gallery-pg --------------- */
.gallery-pg {
  position: relative;
  z-index: 20;
}
.gallery-pg .images-slider {
  position: relative;
  padding: 120px 0;
}
.gallery-pg .images-slider .swiper-button-next {
  left: 150px;
}
.gallery-pg .images-slider .swiper-button-prev {
  right: 150px;
}
.gallery-pg .images-slider .swiper-slide-active {
  position: relative;
  z-index: 20;
}
.gallery-pg .images-slider .swiper-slide-next .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  inset-inline-end: auto;
  inset-inline-start: -170px;
  opacity: 0.4;
}
.gallery-pg .images-slider .swiper-slide-prev .img {
  transform: scale(0.5);
  transform-origin: center;
  filter: grayscale(1);
  inset-inline-start: auto;
  inset-inline-end: -170px;
  opacity: 0.4;
}
.gallery-pg .images-slider .img {
  position: relative;
  height: 550px;
  border-radius: 25px;
  overflow: hidden;
  left: 0;
  right: 0;
  opacity: 1;
  transition: all 1s ease;
}
.gallery-pg .images-slider .img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 70px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-pg .images-slider .img .play-btn i {
  font-size: 30px;
  color: #fff;
}
.gallery-pg .shap {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  z-index: -1;
}

/* --------------- contact-pg --------------- */
.contact-pg {
  position: relative;
  padding-bottom: 80px;
}
.contact-pg .contact-info .item {
  position: relative;
  padding: 15px;
  margin-bottom: 30px;
  z-index: 20;
}
.contact-pg .contact-info .item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, var(--main-color), transparent);
  opacity: 0.1;
}
.contact-pg .contact-info .item .cont {
  position: relative;
  background-color: #fff;
  text-align: center;
  z-index: 10;
  padding: 30px;
  border-radius: 10px;
}
.contact-pg .contact-info .item .cont .icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.contact-pg .contact-info .item .cont h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 5px 0;
}
.contact-pg .form-box {
  position: relative;
  padding: 15px;
  margin-bottom: 30px;
  z-index: 20;
}
.contact-pg .form-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, var(--main-color), transparent);
  opacity: 0.1;
}
.contact-pg .form-box .form {
  position: relative;
  display: block;
  background-color: #fff;
  z-index: 10;
  padding: 30px;
  border-radius: 10px;
}
.contact-pg .form-box .form .form-group {
  position: relative;
  margin-top: 30px;
}
.contact-pg .form-box .form label {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.contact-pg .form-box .form .form-control {
  border: 0;
  min-height: 60px;
  background-color: rgba(209, 213, 219, 0.2);
}
.contact-pg .form-box .form #servBox .form-check {
  position: relative;
  padding-inline-start: 0;
}
.contact-pg .form-box .form #servBox .form-check .form-check-label {
  border: 4px solid #f5f5f5;
  color: #333;
  border-radius: 0.375rem;
  padding: 15px;
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.contact-pg .form-box .form #servBox .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.contact-pg .form-box .form #servBox .form-check .form-check-input:checked ~ .form-check-label {
  border-color: rgba(244, 119, 70, 0.431372549);
  color: var(--main-color);
}
.contact-pg .form-box .form #pkgBox .form-check {
  position: relative;
  padding-inline-start: 0;
  height: 100%;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-label {
  border: 4px solid #f5f5f5;
  color: #333;
  border-radius: 0.375rem;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  padding: 0;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-label .item {
  margin-top: 0;
  padding: 0;
  height: 100%;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-label .item .top-cont h2 {
  font-size: 22px;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-label .item .item-body .check-list li {
  font-size: 13px;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-label .item::before {
  opacity: 0;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-input:checked ~ .form-check-label {
  border-color: rgba(244, 119, 70, 0.431372549);
}
.contact-pg .form-box .form #pkgBox .form-check .form-check-input:checked ~ .form-check-label .item .top-cont h2 {
  color: var(--main-color);
}
.contact-pg .form-box .form .addiotionals_group {
  border: 3px solid #f5f5f5;
  border-radius: 0.375rem;
  padding: 30px;
}
.contact-pg .form-box .form .addiotionals_group .item {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-pg .form-box .form .addiotionals_group .item .count_box {
  display: flex;
  align-items: center;
}
.contact-pg .form-box .form .addiotionals_group .item .count_box small {
  color: #999;
}
.contact-pg .form-box .form .addiotionals_group .item .count_box .num_input {
  width: 60px;
  height: 35px !important;
  min-height: unset;
  margin-inline-start: 10px;
}
.contact-pg .form-box .form .addiotionals_group .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-pg .form-box .form .addiotionals_group .form-check {
  padding-inline-start: 2em;
  margin-bottom: 0;
}
.contact-pg .form-box .form .addiotionals_group .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-inline-start: -2em;
  box-shadow: none !important;
}
.contact-pg .form-box .form .addiotionals_group .form-check .form-check-label .tooltip_span {
  width: 15px;
  height: 15px;
  background-color: #777;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  font-size: 9px;
  display: inline-block;
  text-align: center;
  line-height: 15px;
  margin-inline-start: 10px;
}
.contact-pg .form-box .form .addiotionals_group .form-check label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.contact-pg .form-box .form .addiotionals_group .form-check .form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.contact-pg .form-box .form .sharing_radios .form-check-label {
  font-size: 17px;
  color: #555;
}
.contact-pg .form-box .form .sharing_radios .form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.contact-pg .form-box .form .time_swiper {
  overflow: hidden;
}
.contact-pg .form-box .form .time_swiper .form-check {
  padding: 0;
  margin: 0;
  position: relative;
  padding-inline-start: 0;
}
.contact-pg .form-box .form .time_swiper .form-check .form-check-label {
  border: 4px solid #f5f5f5;
  color: #333;
  border-radius: 0.375rem;
  padding: 15px;
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.contact-pg .form-box .form .time_swiper .form-check .form-check-input:checked ~ .form-check-label {
  border-color: rgba(244, 119, 70, 0.431372549);
  color: var(--main-color);
}
.contact-pg .form-box .form .time_swiper .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
    header .content {
        padding: 50px 0;
    }
  header .content .info h1 {
        font-size: 35px !important;
    }

    header .content .images-slider {
        padding: 50px 0;
    }
    
    header .content .images-slider .swiper-button-prev, 
    .gallery-pg .images-slider .swiper-button-prev, 
    .customer-pg-about .images-slider .swiper-button-prev {
     
        top: 50% !important;
         right: 0 !important;
        left: unset !important;
    }

    header .content .images-slider .swiper-button-next, 
    .gallery-pg .images-slider .swiper-button-next, 
    .customer-pg-about .images-slider .swiper-button-next {
      left: 0 !important;
        right: unset !important;
        top: 50% !important;
    }
    


  header .content .images-slider .img {
    height: 300px;
  }
  .testimonials .cards .item {
    margin-top: 50px;
  }
  .about {
    padding-bottom: 100px;
  }
  .about .text {
    font-size: 16px !important;
    font-weight: 400 !important;
  }
  .services .service-card .info {
    margin: 30px 0;
  }
  .services .service-card .info .text {
    font-size: 16px !important;
    font-weight: 400 !important;
  }
  .contact-pg .form-box .form {
    padding: 10px;
  }
  .partners .cards {
    flex-wrap: wrap;
    margin-top: 50px;
  }
  .partners .cards .brand {
    width: 50%;
    margin-bottom: 30px;
  }
  .partners .cards .line {
    display: none;
  }
  .partners .title .shap img {
          display: none;
  }
  .footer .foot-links a {
    margin: 15px;
  }
  .about-pg-about .ab-shap {
    top: 0;
    left: 0;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
  }
  .about-pg-about {
    overflow: hidden;
  }
  .about-pg-about .imgs {
    margin: 70px 40px 0;
  }
  .about-pg-about .imgs .img {
    height: 200px;
  }
  .about-pg-about .img:nth-of-type(2) {
    margin-top: -50px;
    left: 0;
  }
  .about-pg-about .img:nth-of-type(3) {
    transform: rotate(-10deg);
    left: 0;
    margin-top: -30px;
  }
  .about-pg-features {
    padding-top: 0;
  }
  .footer .contact-list {
    margin: 50px 0;
  }
  .footer .subscribe-side .form-group {
    display: block;
    margin-top: 50px;
  }
  .footer .subscribe-side .form-group .butn {
        margin: 10px auto !important;
        display: block;
  }
  .footer .foot .text {
    line-height: 3;
  }
  .bouquet-pg-about {
    overflow: hidden;
  }
  .bouquet-pg-about {
    overflow: hidden;
  }
  .bouquet-pg-about .imgs {
    margin: 70px 40px 0;
  }
  .bouquet-pg-about .imgs .img {
    height: 200px;
  }
  .bouquet-pg-about .img:nth-of-type(2) {
    left: 0;
  }
  .bouquet-pg-about .img:nth-of-type(3) {
    transform: rotate(-10deg);
    left: 0;
  }
  .about-pg-features .ft-card {
    display: block;
  }
  .about-pg-features .ft-card .icon {
    margin-bottom: 20px;
  }
  .customer-pg-about .images-slider,
  .gallery-pg .images-slider {
    overflow: hidden;
  }
  .swiper-button-prev, .swiper-button-next {
    top: calc(100% - 80px);
  }
  .portfolio-pg .portfolio-card .img {
    margin-top: 30px;
  }
  .navbar .content {
    padding: 0;
  }
  .navbar .content::after, .navbar .content::before {
    display: none;
  }
  .navbar .content .nav-side {
    justify-content: center;
    padding-top: 10px;
  }
  .navbar .content .navbar-brand {
    text-align: start;
    width: calc(100% - 90px);
  }
  .navbar .content .col-lg-5 {
    order: 10;
  }
  .navbar .content .navbar-collapse {
    padding-top: 30px;
    transition: all 0.3s ease;
  }
  .navbar .content .navbar-collapse .navbar-nav {
    display: block;
    text-align: center;
  }
  .navbar .content .navbar-collapse .navbar-nav .nav-item {
    width: -moz-max-content;
    width: max-content;
    display: inline-block;
  }
  header {
    overflow: hidden;
  }
  header .head-line {
    top: -100px;
  }
  header .head-imgs {
    margin: 15px 30px 50px;
  }
  .testimonials {
    overflow: hidden;
  }
  .about .img {
    margin: 50px 30px 50px;
  }
  .about .info {
    padding-top: 50px !important;
  }
  .bouquet-pg-about .bq-shap {
    top: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .butn {
    padding: 12px 40px;
    font-size: 16px;
  }
  .butn .fsz-25 {
    font-size: 20px !important;
  }
  .contact-pg .contact-info .item .cont .icon {
    height: 45px;
  }
  .contact-pg .contact-info .item .cont h6 {
    font-size: 18px;
  }
  .fsz-40 {
    font-size: 30px !important;
  }
  .contact-pg .form-box .form label {
    font-size: 18px;
  }
  .images-slider .swiper-button-prev {
    right: calc(50% - 50px) !important;
  }
  .images-slider .swiper-button-next {
    left: calc(50% - 50px) !important;
  }
  .customer-pg-about .images-slider .img,
  .gallery-pg .images-slider .img {
    height: 400px;
  }
  .services .service-card {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .innerheader {
    padding: 50px 0;
    text-align: center;
  }
  .contact-pg .form-box .form .addiotionals_group .item {
    flex-wrap: wrap;
  }
  .contact-pg .form-box .form .addiotionals_group .item .count_box {
    margin-top: 12px;
  }
  
  #scrollsmoother-container {
    overflow: hidden !important;
  }
  
  .contact-pg .form-box .form .addiotionals_group .form-check {
        width: 100%;
    }

}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */