.home-testimonial {
  background-color: #231834;
  height: 380px;
}
.home-testimonial-bottom {
  transition: 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 20px;
  margin-bottom: 0px;
  position: relative;
  height: 130px;
  top: 190px;
}
.home-testimonial h3 {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.home-testimonial h2 {
  color: white;
  font-size: 28px;
  font-weight: 700;
}
.testimonial-inner {
  position: relative;
  top: -174px;
}
.testimonial-pos {
  position: relative;
  top: 24px;
}
.testimonial-inner .tour-desc {
  border-radius: 5px;
  padding: 40px;
}
.color-grey-3 {
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  color: #6c83a2;
}
.testimonial-inner img.tm-people {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none;
}
.link-name {
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  color: #6c83a2;
}
.link-position {
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  color: #6c83a2;
}

.linear-color {
  background: -webkit-linear-gradient(top right, #373fff, #3acaf8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-large {
  font-size: 48px;
}
.arrow-bg {
  background-color: #ffacac;
}
.logic-icon-bg {
  background-color: #f4f5f7;
}
.indexing {
  z-index: 100 !important;
}
.indexing-min {
  z-index: -1;
}
.logo-color {
  color: #1d2130 !important;
}
.bg-new-light {
  background-color: #dbeaff;
}
.btn-new-dark {
  background-color: #1d2130;
}

@media only screen and (max-width: 1080px) {
    .position-mobile{
        position: static !important;
    }
    
}


.lines{
    position: relative;
    display: block;
    height: 10px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.lines::before{
    content: '';
    width: 45%;
    height: 2px;
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #888;
    display: block;
    border-radius: 2rem;
}
.lines::after{
    content: '';
    display: block;
    width: 45%;
    height: 2px;
    position: absolute;
    top: 10px;
    right: 0;
    background-color: #888;
    border-radius: 2rem;
}

.instagram-color{
    font-size: 20px;
    color: #888;
    cursor: pointer;
}


/* animation genertator  */

.rotate-vert-center {
	-webkit-animation: rotate-vert-center 0.7s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: rotate-vert-center 0.7s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

 @-webkit-keyframes rotate-vert-center {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes rotate-vert-center {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}


/* animation for making translate up and down */
.animate {
  animation: up-down 6s ease-in-out infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
