* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
user-drag: none; 
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
 
}

a:hover,
a:focus {
  text-decoration: none;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #1a1a1a;
}

p {
  margin: 0;
  color: #5b6674;
}

h4,
h5,
h6 {
  line-height: 1.9;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #3992a7;
}

a:hover {
  color: #2c7788;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  color: #5b6674;
  /* height: 5000px; */
}

.font-semi-bold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.loader-page {
  background: #f8f8f8;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loader-page span {
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
  background-color: #0e8d44;
}

.loader-page span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*********************************************************/

.rounded-bill {
  border-radius: 25px !important;
}
.cta {
  padding: 15px 16px;
  background-color: #EA5849;
  color: #fff;
  border: 0;
  font-size: 14px;
  font-weight: 700;
}

.cta:hover {
  background-color: #090F30;
  color: #fff;
}

.main-home-content {
  margin-top: 52px;
}
.main-title {
  font-size: 30px;
  color: #090F30;
  font-style: normal;
  font-weight: 700;
}
.text-line {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: -0.03em;
  color: #7878a0;
}
.section-home {
  background-image: url(../images/Home-Bg.svg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-top: 55px;
  padding-bottom: 30px;
}
.section-partners {
  margin-top: 160px;
}

.partners-flex img {
  margin: 10px 10px;
  width: 100px!important;
}
.for-who-section {
  margin-top: 200px;
}

.cta.started {
  background-color: #090F30;
  padding: 11px 24px;
  font-size: 18px;
  font-weight: 700;
}

.cta.started:hover{
  background-color: #EA5849;
}

@media (min-width: 991px) {
  .for-who-section p {
    width: 90%;
  }
}
/*********************wht-section**************/
.why-section {
  margin-top: 120px;
}
.why-daleel {
  padding: 100px 70px;
  background: #dde0ffb3;
  border-radius: 18px;
}
.single-box {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 11.8182px 18px rgba(0, 0, 0, 0.04);
  border-radius: 16.6846px;
  transition: ease-in-out 0.3s;
}
.single-box:hover{
  transform: translateY(-5px);
}
.box-icon {
  width: 67px;
  height: 67px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(202, 202, 202, 0.19);
}
.single-box h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 16.0082px;
  color: #1d252d;
  line-height: 20.9px  ;
}
.box-text {
  height: 65px;
  display: grid;
  align-items: center;
  margin-bottom: 26px;
}

/******************apis-section***************/
.apis-section{
  margin-top: 120px;
}
.bg-main{
  background-color: #EA5849 !important;
}

.bg-main:hover{
  background-color: #090F30 !important;

}
.text-left-all{
  text-align: left !important;
}
.api-code-container{
  width: 100%;
  height: 320px;
  border-radius: 9.542px;
  background: #090F30;
  box-shadow: 0px 0px 21.204830169677734px 5px rgba(68, 81, 96, 0.16);
  padding: 40px 30px;
  position: relative;
}
.api-code-container ul li{
  color: #D1CD74;
  font-size: 13px;
  font-weight: 500;
}

.api-header .ellipes{
  width: 14.31px !important;
height: 14.31px !important;
padding:7px;
border-radius: 14.31px;
background: #ED6A5E;
}
.ellipes.yellow{
  background: #F4BF4F;
}
.ellipes.green{
  background: #61C554;
}
.api-code-container .api-header{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 16px;
  width: 100%;
  height: auto;
  justify-content: left;
} 
.api-name{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 16px;
  width: 100%;
  height: auto;

}
.api-name p {
  color: #A3A5A8;
font-size: 12.266px;
 font-weight: 700;
}
.api-code-container .api-footer{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  width: 100%;
}

.apis-img{
   position: relative;
}

.left-card{
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 20px;
  z-index: -1;
}
.right-card{
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 20px;
  z-index: -1;
}


/***************new=place*****************/

.place-new-section{
  margin-top: 120px;
}
/* @media(min-width:1200px){
  .col-lg-custom{
    padding-inline-start: 80px;
    -webkit-padding-start: 80px;
  }
} */

@media(min-width:1100px){
  .col-lg-custom{
    padding-inline-start: 60px;
    -webkit-padding-start:60px;
  }
}
/******************place***************/
.place-section{
  margin-top: 120px;
}

.single-place{
  width: 108px;
  height: 108px;
  background: #FFFFFF;
  border: 1.39029px solid rgba(0, 0, 0, 0.12);
  border-radius: 23.1964px;
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0px 12px;
  transition: ease-in-out 0.3s;
}
.single-place:hover{
   transform: translateY(-3px);
}
.single-place h6{

  font-weight: 700;
font-size: 12.7273px;
   text-transform: capitalize;
  color: #090F30;
}
.cont-place h6{
  margin-top: 10px;
}

.cards-section{
  margin-top: 120px;

}
.card-daleel .row{
  position: relative;
  z-index: 999;
}
.card-daleel{
  background: #090F30;
  border-radius: 18px;
  padding: 100px 50px;
  position: relative;
  overflow: hidden;
}

.animation-cars{
  position: absolute;
  top: -156px;
  right: -300px;

}
.animation-cars lottie-player{
  height: 892px;
  filter: opacity(0.3);
    
}
@media(max-width:991px){
  .animation-cars lottie-player{
     filter: opacity(0.3);
  }
}



@media(max-width:767px){


  .animation-cars{
    position: absolute;
    top: unset;
    bottom: -260px;
    right: -300px;
  
  }
  .animation-cars lottie-player{
     filter: opacity(0.3);
  }
}
.card-text h2{
  font-weight: 600;
font-size: 32.9967px;
color: #fff;
}
.card-text p {
  font-weight: 400;
font-size: 10px;
color: #fff;
letter-spacing: -0.03em;

}
.card-line{
  width: 87.25px;
 height: 100%;
 
border: 5.01436px solid #EA5849;
}

.single-card{
  position: relative;
}
.single-card::after{
  left: 0;
  top: 10px;
  position: absolute;
  width: 6px;
  content: '';
  background-color: #EA5849;
  height: 86px;
  border-radius: 20px;
}

.mt-100{
  margin-top: 100px;
}

/************form-section***********/
.form-section{
  margin-top: 120px;
}

/**********footer**********/
footer{
  background-image: url(../images/Footer.svg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 50px;
}
.social-media ul li a svg path{
  transition: ease-in-out 0.3s;
}
.social-media ul li a svg:hover path{
  fill: #EA5849;
}


@media(max-width:991px){
  .main-title{
    font-size: 24px;
  }
  .text-line{
    font-size: 16px;
  }
  .section-partners{
    margin-top: 80px;
  }
 
.for-who-section {
  margin-top: 100px;
}

.why-section {
  margin-top: 80px;
}

.why-daleel {
  padding: 60px 40px;
}

.apis-section {
  margin-top: 100px;
}
.apis-img img{
  margin: 16px 0;
  position: relative;
}

.place-section {
  margin-top: 100px;
}

.cards-section {
  margin-top: 100px;
} 

.card-daleel {
  padding: 60px 40px;
}
.mt-100{
  margin-top: 40px;
}

.form-section {
  margin-top: 100px;
  margin-bottom: 80px;
}
.cta.started {
  background-color: #090F30;
  padding: 16px 22px;
  font-size: 16px;
}
}





@media(max-width:767px){
  .main-title{
    font-size: 24px;
  }
  .text-line{
    font-size: 16px;
  }
  .section-partners{
    margin-top: 40px;
  }
  .partners-flex img {
    margin: 20px 10px;
    width: 30%;
}
.for-who-section {
  margin-top: 80px;
}

.why-section {
  margin-top: 60px;
}

.why-daleel {
  padding: 30px 20px;
}

.apis-section {
  margin-top: 80px;
}
.apis-img img{
  margin: 16px 0;
}

.place-section {
  margin-top: 80px;
}

.cards-section {
  margin-top: 80px;
} 

.card-daleel {
  padding: 40px 20px;
}
.mt-100{
  margin-top: 40px;
}

.form-section {
  margin-top: 80px;
  margin-bottom: 80px;
}
.cta.started {
  background-color: #090F30;
  padding: 16px 22px;
  font-size: 16px;
}
.api-code-container{
padding: 40px 16px;
height: 380px;
}
.single-box{
  display: flex;
  align-items: center;
}
.box-text {
  margin: 0px 8px;
   
}
}


@media(max-width:375px){
  .partners-flex img {
    margin: 20px 30px;
    width: 30%;
}
}

@media(max-width:450px){
  .box-text {
    margin: 0px 8px;
    width: 70%;
}
}
/*************/

/* DEMO-SPECIFIC STYLES */
.typewriter h1 {
  color: #000000;
  font-size: 16px;
  font-family: monospace;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  /* border-right: .15em solid orange; The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
   letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(30, end),
    blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange }
}





.list-widgets_applications {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;

}
.widget_item-application{
  transition: all 0.2s ease-in-out;

}
.widget_item-application .widget_item-image img {
  width: 100%;
  height: 334.25px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 19.365px;
   transition: all 0.2s ease-in-out;
}

.widget_item-application .widget_item-image {
  position: relative;
}
.list-widgets_applications .widget_item-image:nth-of-type(2) img {
  height: 250px;
}
 

.list-widgets_applications .widget_item-application:nth-of-type(1){
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
}
.list-widgets_applications .widget_item-application:nth-of-type(2){
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
}
.list-widgets_applications .widget_item-application:nth-of-type(3){
  grid-row: 1 / span 1;
  grid-column: 3 / span 1;
}
.list-widgets_applications .widget_item-application:nth-of-type(2) .widget_item-image,
.list-widgets_applications .widget_item-application:nth-of-type(2) img{
  height:223.96px;
}
.list-widgets_applications .widget_item-application:nth-of-type(4){
  grid-row: 2 / span 1;
  grid-column: 1 / span 1;
  height: 250px;
}
.list-widgets_applications .widget_item-application:nth-of-type(5){
  grid-row: 2 / span 1;
  grid-column: 2 / span 1;
  margin-top: -110px;
}
.list-widgets_applications .widget_item-application:nth-of-type(4) img{
  height: 223.96px !important;
}
.list-widgets_applications .widget_item-application:nth-of-type(6){
  grid-row: 2 / span 1;
  grid-column: 3 / span 2;
  height: 250px !important;
}

.list-widgets_applications .widget_item-application:nth-of-type(6) img{
 
  height: 223.96px !important;
}

.fly-span{
  position: absolute;
  border-radius: 104px;
border: 2px solid #FFF;
background: #EA5849;
width: 104px;
height: 104px;
box-shadow: 0px 10.773874282836914px 21.547748565673828px 0px rgba(0, 0, 0, 0.10);
z-index: 999;
    left: -50px;
    top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
transition: ease-in-out 0.3s;
    
 font-size: 13.138px;
 font-weight: 700;
 
}
.list-widgets_applications .widget_item-application:nth-of-type(2) .fly-span{
  left: -50px;
  top: unset;
  bottom: -50px;
}
.list-widgets_applications .widget_item-application:nth-of-type(3) .fly-span{
  left: -50px;
  top: 8px;
}

.list-widgets_applications .widget_item-application:nth-of-type(4) .fly-span{
  left: -20px;
  top: unset;
  bottom: -20px;
}

.list-widgets_applications .widget_item-application:nth-of-type(5) .fly-span{
  right: -20px;
  left: unset;
  top: unset;
  bottom: -20px;
}

.list-widgets_applications .widget_item-application:nth-of-type(6) .fly-span{
  right: 30px;
  left: unset;
  bottom: unset;
  top: -80px;
}

@media(max-width:767px){

  .fly-span{
    left: 0!important;
    right: 0!important;
    top: 0!important;
    bottom: 0!important;
     margin: auto;
     width: 80px;
     height: 80px;
     font-size: 10px;
  }
  .logo img{
    max-height: 40px;
  }
  .section-home{
    padding-top: 30px;
  }

}


@media(max-width:767px){

  .list-widgets_applications {
    position: relative;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .widget_item-application .widget_item-image img {
    width: 100%;
    height: 225px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 19.365px;
     /* transition: all 0.2s ease-in-out; */
  }
  
  .widget_item-application .widget_item-image {
    position: relative;
  }
 
   .widget_item-application{
    height: 225px;
    margin-bottom: -25px;

   }
  
  .list-widgets_applications .widget_item-application:nth-of-type(1){
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
  }
  .list-widgets_applications .widget_item-application:nth-of-type(2){
    grid-row: 1 / span 1;
    grid-column: 2 / span 1;
  }
  .list-widgets_applications .widget_item-application:nth-of-type(3){
    grid-row: 2 / span 1;
    grid-column: 1 / span 1;
  }
 
  .list-widgets_applications .widget_item-application:nth-of-type(4){
    grid-row: 2 / span 1;
    grid-column: 2 / span 1;
    height: 250px;
  }
  .list-widgets_applications .widget_item-application:nth-of-type(5){
    grid-row: 3 / span 1;
    grid-column: 1 / span 1;
    margin-top: 0px;
   }
 
  .list-widgets_applications .widget_item-application:nth-of-type(6){
    grid-row: 3 / span 1;
    grid-column: 2 / span 1;
   }

}


.widget_item-application:hover .fly-span{
  transform: translateY(-3px);
 }

 .language-btn a{
  color: #7878A0;
 transition: ease-in-out 0.3s;
font-size: 14px;
 font-style: normal;
font-weight: 700;
line-height: 15.771px;
letter-spacing: -0.28px;
 }
 .language-btn a:hover{
  color:#5e5e83 ;
 }
  .mr-en-2{
  margin-right: 5px;
 }


 @media(max-width:500px){
  .single-place{
    width: 26%;
    border-radius: 16px;
  }
 }


 /*********************/

.gift-cards{
  margin-top: 120px;
}
.single-gift-item{
  width: 16%;
  margin: 10px;
  flex-shrink: 0;
  
}




.top-row {
  right: -200px;
  position: relative;
  animation: rotate 0.4s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  width: 100%;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes rotate {
  to {
    transform: translateX(-1000px);
  }
}




.bottom-row {
  left: -200px;
  position: relative;
  animation: rotates 0.4s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  width: 100%;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes rotates {
  to {
    transform: translateX(1000px);
  }
}

 

@media(max-width:991px){
  .single-gift-item{
    width: 250px;
    margin: 10px;
    flex-shrink: 0;
  }
  .top-row{
    right: -500px;
  }
}
@media(max-width:600px){
  .single-gift-item{
    width: 180px;
    margin: 10px;
    flex-shrink: 0;
  }
  .top-row {
    left: 600px;
    right: unset;
}
}
.over-hid{
  overflow: hidden;
}
.ltr{
  direction: ltr;
}
.owl-theme .item{
  border-radius: 20px;
  overflow: hidden;
}
.slider-gifts{
  margin-top: 25PX;
}


@media(max-width:767px){
  .slider-gifts{
    margin-top: 60PX;
  }
}

/*********slider-new-section*********/
.slider-new-section{
  margin-top: 120px;
}
@media(min-width:1200px){
  .w-90{
    width: 90%;
  }
}

.slider-vertical-1{
  /* height: 500px; */
  overflow: hidden;
}
.slider-vertical-1{
  width: 100%;
  height: 460px;
  background-image: url(../images/slide.svg);
  margin-bottom:40px;
  background-position: 0px 0px;
  background-repeat: repeat-y;
  -webkit-animation: myanim 30s infinite linear;
     -moz-animation: myanim 30s infinite linear;
       -o-animation: myanim 30s infinite linear;
          animation: myanim 30s infinite linear;
           margin-bottom: 20px;
           border-radius: 6px;
           background-size: contain;
 }

    .slider-vertical-2{
  width: 100%;
  height: 460px;
  background-image: url(../images/slide.svg);
  margin-bottom:40px;
  background-position: 0px 0px;
  background-repeat: repeat-y;
  -webkit-animation: myanim-1 30s infinite linear;
     -moz-animation: myanim-1 30s infinite linear;
       -o-animation: myanim-1 30s infinite linear;
          animation: myanim-1 30s infinite linear;
           margin-bottom: 20px;
           border-radius: 6px;
           background-size: contain;
           margin-top: 0px;
 }  

.sigle-slide-v{
  width: 30%;
  margin: 0px 10px;
}

/* .slider-vertical-1 .single-item:nth-of-type(2){
  background-image: url(../images/slider/stc\ sawa01\ 2-1.svg);
} */






@-webkit-keyframes myanim {
  0%   { background-position: 0px; }
  100% { background-position: 0px 1000px; } /* set this to the width of the image */
}
@-moz-keyframes myanim {
  0%   { background-position: 0px; }
  100% { background-position: 0px 1000px; } /* set this to the width of the image */
}
@-o-keyframes myanim {
  0%   { background-position: 0px; }
  100% { background-position: 1000px; } /* set this to the width of the image */
}
@keyframes myanim {
  0%   { background-position: 0px; }
  100% { background-position: 0px 1000px; } /* set this to the width of the image */
}




@-webkit-keyframes myanim-1 {
  0%   { background-position: 0px; }
  100% { background-position: 0px -1000px; } /* set this to the width of the image */
}
@-moz-keyframes myanim-1 {
  0%   { background-position: 0px; }
  100% { background-position: 0px -1000px; } /* set this to the width of the image */
}
@-o-keyframes myanim-1 {
  0%   { background-position: 0px; }
  100% { background-position: -1000px; } /* set this to the width of the image */
}
@keyframes myanim-1 {
  0%   { background-position: 0px; }
  100% { background-position: 0px -1000px; } /* set this to the width of the image */
}


@media(max-width:767px){
  .slider-vertical-1{
   
    height: 340px;
  }
  .slider-vertical-2{
    
    height: 340px;
  }
}

.owl-stage-outer{
  border-radius: 12px !important;
}

.border-12 img{
  border-radius: 12px;
}



/****************/
.project{
  margin-bottom: 26px;
}
 
.hover-out{
	transition: .1s ease-in;
}
.project__card{
  background-image: url(../images/gifts/p_f_12_1674457516.jpg);
  width: 100%;
  height: 110px;
  background-size: cover;
  border-radius: 12px;
}


/************************Faq Page *********************/
.faq-container h1 {
  font-size: 24px;
  font-weight: 600;
}
.accordion-container .card {
  margin-bottom: 24px;
  box-shadow: 0px 4px 18px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.1s ease-in-out;
  background-color: #fff;
  border: 0;
  border-radius: 12px;
  width: 100%;
  max-width: 100% !important;
}
.accordion-container .card .card-header {
  background-color: unset;
  border-bottom: 0;
  padding: 0;
}
.accordion-container .card .card-header .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 16px;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 600;
}
.accordion-container .card .card-header .btn p {
  color: #2c2c2c;
}
.accordion-container .card .card-body {
  text-align: start;
  color: #2c2c2c;
  font-weight: 600;
  line-height: 30px;
  padding-top: 0px;
}

@media (max-width: 767px) {
  .accordion-container .card .card-header .btn {
    text-align: start;
    font-size: 14px;
  }
  .accordion-container .card .card-header .btn i {
    margin-inline-start: 20px;
  }
}
