

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
font-family: "Open Sans", sans-serif;
color: #444444;
}

a {
color: #E61F76;
text-decoration: none;
}

a:hover {
color: #E61F76;
text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
font-family: "Raleway", sans-serif;
}
:root{
--main-lg: linear-gradient(50deg,#E61F76 0%, #F28D88 100%);
--main-color:#e61f76;
}
.smoth-pre{
font-size: 13px;
opacity: .9;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.center{
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.ring{
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: ring 2s linear infinite;
}
@keyframes ring {
  0%{
    transform: rotate(0deg);
    box-shadow: 1px 5px 2px #e65c00;
  }
  50%{
    transform: rotate(180deg);
    box-shadow: 1px 5px 2px #18b201;
  }
  100%{
    transform: rotate(360deg);
    box-shadow: 1px 5px 2px #0456c8;
  }
}
.ring:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255,255,255,.3);
}
.center span{
  color: #737373;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 200px;
  animation: text 3s ease-in-out infinite;
}
@keyframes text {
  50%{
    color: black;
  }
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 996;
background: var(--main-lg);
width: 40px;
height: 40px;
border-radius: 50px;
transition: all 0.4s;
}

.back-to-top i {
font-size: 28px;
color: #fff;
line-height: 0;
}

.back-to-top:hover {
background: var(--main-lg);
color: #fff;
}

.back-to-top.active {
visibility: visible;
opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
height: 70px;
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
background: rgba(42, 44, 57, 0.9) !important;
}

#header.header-transparent {
background: transparent;
}

#header.header-scrolled {
background: rgba(42, 44, 57, 0.9) !important;
}

#header .logo h1 {
font-size: 28px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 700;
letter-spacing: 1px;
}
#hero p{width: 70%; margin: 0 auto; margin-bottom: 20px;}

#header .logo h1 a, #header .logo h1 a:hover {
color: #fff;
text-decoration: none;
}
#header .logo-lin{
background: -webkit-linear-gradient(50deg,#E61F76 0%, #F28D88 100%);
-webkit-background-clip: text;
-webkit-text-fill-color:transparent
}
#header .logo img {
padding: 0;
margin: 0;
max-height: 40px;
}
.type-effect span{
border-bottom: 3px solid #E61F76;
}
.type-effect {
padding: 25px 0;
font-weight: bold;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
padding: 0;
}

.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}

.navbar li {
position: relative;
}

.navbar a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 15px 7px 15px;
margin-left: 5px;
font-size: 14px;
color: #fff;
white-space: nowrap;
transition: 0.3s;
border-radius: 50px;
}

.navbar a i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
background: var(--main-lg);
}

.navbar .dropdown ul {
display: block;
position: absolute;
left: 5px;
top: calc(100% + 30px);
margin: 5px  0 0 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
border-radius: 15px;
}

.navbar .dropdown ul li {
min-width: 200px;
}

.navbar .dropdown ul a {
padding: 10px 20px;
color: #2a2c39;
margin: 0 5px;
font-size: 14px;
}

.navbar .dropdown ul a i {
font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
color: #fff;
}

.navbar .dropdown:hover > ul {
opacity: 1;
top: 100%;
visibility: visible;
}

.navbar .dropdown .dropdown ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}

@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
left: -90%;
}
.navbar .dropdown .dropdown:hover > ul {
left: -100%;
}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
color: #fff;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}

@media (max-width: 991px) {
.mobile-nav-toggle {
display: block;
}
.navbar ul {
display: none;
}
}

.navbar-mobile {
position: fixed;
overflow: hidden;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(20, 21, 28, 0.9);
transition: 0.3s;
z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
position: absolute;
top: 15px;
right: 15px;
}

.navbar-mobile ul {
display: block;
position: absolute;
top: 55px;
right: 15px;
bottom: 15px;
left: 15px;
padding: 10px 0;
border-radius: 10px;
background-color: #fff;
overflow-y: auto;
transition: 0.3s;
}

.navbar-mobile a {
padding: 10px 20px;
margin: 5px;
font-size: 15px;
color: #2a2c39;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
color: #fff;
}

.navbar-mobile .getstarted {
margin: 15px;
}

.navbar-mobile .dropdown ul {
position: static;
display: none;
margin: 10px 20px;
padding: 10px 0;
z-index: 99;
opacity: 1;
visibility: visible;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
min-width: 200px;
}

.navbar-mobile .dropdown ul a {
padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
display: block;
}
.navbar .lock{font-size: 23px;}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
overflow: hidden;
position: relative;
background: linear-gradient(0deg, #272D3B 0%, #272D3B 100%);
padding: 0;
/* z-index: 3; */
}
.hero_top_content{position: relative;line-height: 20px;}
.hero_top_content img {
max-width: 192px;
margin: 60px 7px 0px 48px;
}
.hero_top_content{
padding-top: 100px;
}
.hero_top_content .download{
background: var(--main-lg);
color: white;
padding: 10px 20px;
border-radius: 20px;
cursor: pointer;
}
.hero_top_content::before{
content: '';
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background-color: white;
z-index: -1;
opacity: .1;
left: calc(50% - 200px);
top: calc(60% - 200px);
}

@media (max-width:525px){
.hero_top_content img {
max-width: 110px;
margin: 60px 7px 0px -7px;
}
.hero_top_content::before{
width: 300px;
height: 300px;
left: calc(50% - 150px);
top: calc(80% - 150px);
}
}
.hero-waves {
display: block;
width: 100%;
height: 160px;
position: relative;
}

.wave1 use {
-webkit-animation: move-forever1 10s linear infinite;
animation: move-forever1 10s linear infinite;
-webkit-animation-delay: -2s;
animation-delay: -2s;
}

.wave2 use {
-webkit-animation: move-forever2 8s linear infinite;
animation: move-forever2 8s linear infinite;
-webkit-animation-delay: -2s;
animation-delay: -2s;
}

.wave3 use {
-webkit-animation: move-forever3 6s linear infinite;
animation: move-forever3 6s linear infinite;
-webkit-animation-delay: -2s;
animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
0% {
transform: translate(85px, 0%);
}
100% {
transform: translate(-90px, 0%);
}
}

@keyframes move-forever1 {
0% {
transform: translate(85px, 0%);
}
100% {
transform: translate(-90px, 0%);
}
}

@-webkit-keyframes move-forever2 {
0% {
transform: translate(-90px, 0%);
}
100% {
transform: translate(85px, 0%);
}
}

@keyframes move-forever2 {
0% {
transform: translate(-90px, 0%);
}
100% {
transform: translate(85px, 0%);
}
}

@-webkit-keyframes move-forever3 {
0% {
transform: translate(-90px, 0%);
}
100% {
transform: translate(85px, 0%);
}
}

@keyframes move-forever3 {
0% {
transform: translate(-90px, 0%);
}
100% {
transform: translate(85px, 0%);
}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
padding: 60px 0;
overflow: hidden;
}

.section-content {
padding-bottom: 40px;
text-align: center;
}

.section-content h2 {
font-weight: 500;
padding: 0;
line-height: 2px;
margin: 0 0 35px 0;
letter-spacing: 2px;
text-transform: uppercase;
font-family: "Poppins", sans-serif;
position: relative;
}

.section-content h2::before {
content: '';
position: absolute;
display: block;
width: 120px;
height: 3px;
background: #ddd;
bottom: -27px;
left: calc(50% - 60px);
}

.section-content h2::after {
content: '';
position: absolute;
display: block;
width: 16px;
height: 16px;
background: #ffffff;
bottom: -34px;
left: calc(50% - 8px);
border-radius: 50%;
border: 3px solid #E61F76;
/* outline: 4px solid white; */
font-size: 1rem;
}
.section-content p {
margin: 0 auto;
text-transform: uppercase;
font-family: "Poppins", sans-serif;
color: #2a2c39;
width: 100%;
padding-top: 20px !important;
}

/*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
.box .second_box{
transition: .2s ease-in-out;
padding: 10px 15px;
}
.box .second_box i{transition: .2s ease-in;}
.box .second_box:hover{
border-bottom: 4px solid var(--main-color);
border-radius: 10px;
box-shadow: 0 0 3px 0px #0000004a;
}
.box .second_box:hover i{
color: var(--main-color);
}

.section-bg-1{position: relative;color: white;}
.section-bg-1::before {
content: "";
background:  rgba(0, 0, 0, 0.945);
position: absolute;
bottom: 60px;
top: 60px;
left: 0;
right: 0;
transform: skewY(-4deg);
z-index: -8;
}
.section-bg-1 {
position: relative;
color: white;
padding: 141px 0;
overflow: hidden;
outline: none;
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.about{
position: relative;
height: 100vh; 
background:linear-gradient(50deg,#0fcbf1f7 0%,#5de4acf7 100%),url(../img/portfolio/portfolio-2.jpg);
-webkit-clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 50% 100%, 0 75%);
clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 50% 100%, 0 75%);
color: white;
/* padding: 120px 0 !important; */
margin-bottom: 40px;
}

@media (max-width:768px){
.about {

height: 135vh;

}
}
.about_left img{
width: 110px;
}
.about_right{text-align: center;}
.about_right img{
border-radius: 50%;
border:4px solid;
box-shadow: 1px 1px 1px grey;
}
@media only screen and (max-width: 768px){
  .about_right img{
    width: 80%;
    margin-top: 40px;
    }
}
.arrows {
width: 60px;
height: 72px;
position: absolute;
left: 50%;
margin-left: -30px;
bottom: 20px;
}

.arrows path {
stroke: #ffffff;
fill: transparent;
stroke-width: 3px;	
animation: arrow 2s infinite;
-webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
animation-delay:-1s;
-webkit-animation-delay:-1s; /* Safari 和 Chrome */
}

.arrows path.a2 {
animation-delay:-0.5s;
-webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}

.arrows path.a3 {	
animation-delay:0s;
-webkit-animation-delay:0s; /* Safari 和 Chrome */
}



/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 6px;
}
.skills .progress-bar {
  width: 1px;
  height: 6px;
  transition: 0.9s;
  background: var(--main-lg);
  border-radius: 20px;
}




/*--------------------------------------------------------------
# how
--------------------------------------------------------------*/
.how i{
color: #E61F76;
}

.awesome-icon {
border: 2px solid #E61F76;
border-radius: 50%;
padding: 0px 5px 4px 6px;
}
.awesome-box:hover .awesome-icon{
background-color: #E61F76;
color: white;
}
.awesome{
position: relative;
/* height: 60vh;  */
padding: 120px 0;
}
.awesome-box{
position: relative;
}
.awesome-box::after{
content: '';
position: absolute;
width: 80px;
height: 3px;
background: var(--main-lg);
bottom: 6px;
transition: 1s ease-out;
}
.awesome-box:hover:after{
width: 300px;
}
.awesome::before {
content: "";
background:linear-gradient(50deg,#ebf0f1f2 0%,#d5f1e5f0 100%),url(../img/portfolio/portfolio-8.jpg);
background-size: cover;
position: absolute;
bottom: 60px;
top: 60px;
left: 0;
right: 0;
transform: skewY(-5deg);
z-index: -8;
}


/*--------------------------------------------------------------
# video
--------------------------------------------------------------*/
.video{margin-bottom: -250px;}
.video-box{
position: relative;
text-align: center;
overflow: hidden;
border-radius: 20px !important;
max-width: 70%;
margin: 0 auto;
box-shadow: 23px 33px 45px -42px black;

}

.video-box-img{
width: 100%;
height: 350px;

}
.video-box-img img{
width: 100%;
height: auto;
border-radius: 20px;

}
.video-box-color{
position: absolute;
background:linear-gradient(50deg,#e61f75eb 0%,#f28d88e1 100%),url(../img/portfolio/portfolio-8.jpg);
top: 0;
left: 0;
right: 0;
bottom: 0;
}  
.video-box .play-btn {
width: 94px;
height: 94px;
margin: 0 auto;
background: radial-gradient(#E61F76 50%, #F28D88 52%);
border-radius: 50%;
display: block;
overflow: hidden;
position: relative;
}

.video-box .play-btn::after {
content: '';
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-40%) translateY(-50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 15px solid #fff;
z-index: 100;
transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video-box .play-btn::before {
content: '';
position: absolute;
width: 120px;
height: 120px;
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation: pulsate-btn 3s;
animation: pulsate-btn 3s;
-webkit-animation-direction: forwards;
animation-direction: forwards;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-timing-function: steps;
animation-timing-function: steps;
opacity: 1;
border-radius: 50%;
border: 5px solid #e61f76;
top: -15%;
left: -15%;
background: rgba(198, 16, 0, 0);
}

.video-box .play-btn:hover::after {
border-left: 15px solid #E61F76;
transform: scale(20);
}

.video-box .play-btn:hover::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-40%) translateY(-50%);
width: 0;
height: 0;
border: none;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 15px solid #fff;
z-index: 200;
-webkit-animation: none;
animation: none;
border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
0% {
transform: scale(0.6, 0.6);
opacity: 1;
}
100% {
transform: scale(1, 1);
opacity: 0;
}
}

@keyframes pulsate-btn {
0% {
transform: scale(0.6, 0.6);
opacity: 1;
}
100% {
transform: scale(1, 1);
opacity: 0;
}
}



/*--------------------------------------------------------------
# counter_up
--------------------------------------------------------------*/

.counter_up{
/* background:linear-gradient(50deg,#e61f75eb 0%,#f28d88e1 100%),url(../img/portfolio/portfolio-8.jpg);
background-size: cover;
background-position: center center; */
position: relative;
overflow: inherit;
padding-top: 250px;
color: white;
text-align: center;
}
.counter_up::before{
content: '';
position: absolute;
background:linear-gradient(50deg,#e61f75eb 0%,#f28d88e1 100%),url(../img/portfolio/portfolio-8.jpg);
background-size: cover;
background-position: center center;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
transform: skewY(-6deg);
}
.counter_up span{
font-size: 33px;
font-weight: bold;
}

.portfolio-carousel{
position: relative;
text-align: center;
}
.portfolio-carousel .item img {
width: 210px;
height: 452px;
margin: 0 auto;
}

.team{
position: relative;
overflow: inherit;
}
.team::before{
content: '';
position: absolute;
background:linear-gradient(50deg,#e61f75eb 0%,#f28d88e1 100%),url(../img/portfolio/portfolio-8.jpg);
background-size: cover;
background-position: center center;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: -1;
transform: skewY(-6deg);
}
.team-box{
position: relative;
}
.team-box-content{
position: absolute;
left: 0;
top: 0;
background-color: #e61f75e5;
color: white;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 24px 24px;
transition: 1s;
opacity: 0;
box-shadow: 0 0 3px 3px black;
}
.team-box:hover .team-box-content {
opacity: 1;
left: 20px;
top: 20px;
}
.team-icon a{
margin: 0 8px;
color: white;
}












/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}
.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #37b3ed;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}




.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #ffffff;
  background: var(--main-color);
  border-radius: 21px;

}
















/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
box-sizing: content-box;
padding: 30px 30px 0 30px;
margin: 60px 15px;
text-align: center;
min-height: 283px;
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
position: relative;
}
.test-img {
position: absolute;
top: -58px;
left: calc(50% - 45px);
}
.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50%;
border: 4px solid #fff;
margin: 0 auto;
}

@media (max-width:768px){
.testimonials .swiper-pagination {
margin-top: -98px !important;
}
}
.testimonials .testimonial-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
color: #fedac0;
font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}

.testimonials .testimonial-item p {
font-style: italic;
margin: 162px 82px;
}


.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #F28D88;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: #E61F76;
}



/*--------------------------------------------------------------
# priching
--------------------------------------------------------------*/

.pricing_table{
border: 1px solid rgb(236, 231, 231);
text-align: center;
}
.pricing_head{
padding: 40px 0;
font-weight: bold;
position: relative;
overflow: hidden;
}
.pricing_line {
position: absolute;
background: #E61F76;
padding: 6px 60px;
color: white;
right: -36px;
top: 16px;
transform: rotate(34deg);
}
.pricing_title{
background: var(--main-lg);
color: white;
padding: 20px 0;
}
.pricing_table ol{
list-style: none;
}
.pricing_table ol{
padding: 50px 0;
line-height: 44px;
border-bottom: 1px solid #e61f76;
}
.pricing_table ol li i{color: green;font-size: 25px;}
.pricing_foot{
padding: 0 0 20px;
line-height: 33px;
}
.pricing_foot a{
border: 1px solid #E61F76;
border-radius: 25px;
padding: 10px 28px;
transition: .8s;
}
.pricing_foot a:hover{
background: #E61F76;
color: white;
}
.pricing_head_middle{background: rgba(221, 221, 221, 0.13);}
.pricing_foot_middle a{
background: var(--main-lg);
transition: .6s;
color: white;
border: 0;
}
.pricing_foot_middle a:hover{
background: none;
color: #E61F76;
border: 1px solid #E61F76;
}



/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
padding: 0;
list-style: none;
}

.faq .faq-list li {
margin-bottom: 20px;
padding: 16px 9px 32px;
margin: 20px 0;
box-shadow: 0 0 4px -2px rgb(0, 0, 0);
border-left: 5px solid #e61f76;
}

.faq .faq-list a {
display: block;
position: relative;
font-family: #e03a3c;
font-size: 18px;
line-height: 24px;
font-weight: 400;
padding-right: 25px;
cursor: pointer;
}

.faq .faq-list i {
font-size: 24px;
position: absolute;
right: 0;
top: 0;
border: 2px solid #e61f76;
border-radius: 50%;
padding: 0px 4px 4px 5px;
}

.faq .faq-list p {
margin-bottom: 0;
padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
display: none;
}

.faq .faq-list a.collapsed {
color: #343a40;
}

.faq .faq-list a.collapsed:hover {
color: #e03a3c;
}

.faq .faq-list a.collapsed .icon-show {
display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
display: none;
}
.faq-main{
position: relative;
width: 1px;
height: 540px;
background-color: rgba(0, 0, 0, 0.37);
margin-left: 40%;
}
.faq-round{
position: absolute;
}
.faq-round-1{
top: 0;
width: 20px;
height: 20px;
background: white;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 50%;
left: calc(0% - 10px);
}
.faq-round-2{
top: 32%;
width: 20px;
height: 20px;
background: white;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 50%;
left: calc(0% - 10px);
}
.faq-round-3{
top: 62%;
width: 20px;
height: 20px;
background: white;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 50%;
left: calc(0% - 10px);
}
.faq-round-4{
bottom: 0;
width: 20px;
height: 20px;
background: white;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 50%;
left: calc(0% - 10px);
}



/*--------------------------------------------------------------
# download appai taddy
--------------------------------------------------------------*/


.download-appai{
-moz-text-align-last: left;
text-align-last: left;
color: white;
background: var(--main-lg);
/* overflow: hidden; */
position: relative;
}
.taddy-position{
position: absolute;
right: -17%;
bottom: 0;
overflow: hidden;
text-align: center;
width: 100%;
height: 90%;

}
.taddy-img-2 {
position: absolute;
z-index: 30;
left: calc(50% + 54px);
bottom: 0;
top: 30px;
}
.taddy-img-1 {
position: absolute;
z-index: 20;
left: calc(50% - 108px);
bottom: 0;
top: 90px;
}
.taddy-img-1 img,.taddy-img-2 img{
width: 200px;
height: auto;
box-shadow: 2px 0 6px -1px black !important;
border-radius: 30px;
}
.download-taddy img{
width: 25%;
}
@media (max-width:768px){
.download-appai {height: 60vh;}
.taddy-position{right: 11%;}
.taddy-position {bottom: -192px;}
.taddy-img-1 img,.taddy-img-2 img{width: 120px;height: auto;}
.taddy-img-1 {left: calc(50% - 54px);}
}


/*--------------------------------------------------------------
# letest blog post
--------------------------------------------------------------*/


.letest-box .l-c-top{font-size: 11px;opacity: .5;}
.letest-box p{font-style: italic;}
.letest-box a{font-size: 14px;}
.letest-box:hover h5{color: #E61F76;}



/*--------------------------------------------------------------
# subscribe
--------------------------------------------------------------*/
.subscribe{
width: 100%;
clear: both;
height: 100%;
}
.sub-bg{
color: white;
background-color: #2B313F;
}
.subscribe form {
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
position: relative;
text-align: left;
}

input[type="email"]:hover:active:focus {
  outline: none;
  border: 0;
}

.subscribe form input[type="email"] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
.subscribe form input[type="submit"] {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 60px;
background: var(--main-lg);
color: #fff;
transition: 0.3s;
border-radius: 50px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.sub-bg {
color: white;
background-color: #2B313F;
padding: 55px 100px;
}
.subscribe,.map-location{padding: 0;}
.map-location iframe{
width: 100%;
height: 450px !important;
border: 0;
}
.footer{
margin: 0;
width: 100%;
background:#2B313F;
color: white;
box-sizing: border-box;
padding: 0;
}

.row.g-0.footer-h {
  position: relative;
  z-index: 100;
}

.footer_left {
background: white;
height: 100%;
padding: 30px 26px;
}
.footer_right {
background: #4C5461;
height: 100%;
padding: 65px 26px;
height: 100%;
}

.footer input{
/* display: block; */
background: transparent;
border: 0;
width: 100%;
border-bottom: 1px solid #E61F76;
transition: .4s ease-in-out;
margin-top: 15px;
margin-bottom: 15px;
outline: none;
}
.footer textarea{
width: 100%;
}
input[type="text"]:hover:active:focus {
outline: none;
border: 0 ;
border-bottom: 1px solid #E61F76;
}
input[type="email"]:hover:active:focus {
outline: none;
border: 0 ;
border-bottom: 1px solid #E61F76;
}
input[type="password"]:hover:active:focus {
outline: none;
border: 0 ;
border-bottom: 1px solid #E61F76;
}
#t-x-a{border: 0;outline: none;border-bottom: 1px solid #E61F76;}
#t-x-a:hover:active:focus {
border: 0;
outline: none;
border-bottom: 1px solid #E61F76;
}
input[type="submit"] {
width: 24%;
border: 0;
background: black;
color: white;
padding: 10px;
border-radius: 25px;
background: #E61F76;

}
input[type="password"]:hover:active:focus{
border: 0;
outline: none;
}
.map-location {
padding: 0;
margin-bottom: -260px;
}
.footer .footer_right ul li{font-size: 12px;line-height: 25px;}
.footer_left h3{color: black;}
.footer_down{
margin-top: 60px;
text-align: center;
font-size: 14px;
opacity: .7;
}
.footer_down a{
margin: 9px;
color: white;
}
.footer_down span:nth-child(2){color: red;font-weight: bold;}




/*--------------------------------------------------------------
# hero-small
--------------------------------------------------------------*/

.hero-small{
position: relative;
width: auto;
height: 30vh;
background: linear-gradient(50deg,rgba(0, 0, 0, 0.719) 0%,rgba(0, 0, 0, 0.699) 100%),url(../img/portfolio/portfolio-details-1.jpg);
background-size: cover;
background-position: center;
}
.hero-small .breadcrumb{
position: absolute;
bottom: 40px;
}
.blog-box{
width: 100%;
height: auto;
}
.blog-box .blog-box-content .breadcrumb{
font-style: italic;
font-size: 11px;
}
.page-item.active .page-link {
background-color: #E61F76 !important;
border-color: #0000003c !important;
}
.page-link:focus {
box-shadow: none !important;
}
.page-position{position: relative;}
.pagination {
position: absolute;
left: calc(50% - 87px);
}
.search-icon{
width: 30px;
height: auto;
}
.search-input {
position: relative;
padding: 9px 31px;
width: 100%;
border: 1px solid #ddd;
transition: .5s;
}
.search-icon {
width: 30px;
height: auto;
position: absolute;
right: 21px;
margin: 9px 0;
opacity: .9;
cursor: pointer;
}

.blog-right-content.faq .faq-list li {
padding: 0px 28px 16px;
margin: 7px 0;
box-shadow: none !important;
border:0 !important;
}
.blog-right-content.faq .faq-list li a{font-size: 13px;}
.popular-item a {
margin: 13px;
font-size: 13px;
opacity: .6;
}
.popula-post img {
width: 123px;
}

.blog-right-content.faq .faq-list i {
font-size: 15px;
position: absolute;
right: 0;
top: 0;
border: 0;
border-radius: 0;
padding: 0;
}

.popula-post {
border-bottom: 1px solid #dddddd40;
padding: 20px 0;
}

.instagram img {
width: 90%;
height: auto;
}
.icon-nav {
background-color: #ddd;
padding: 7px 34px;
margin-bottom: 20px;
}
.icon-nav i{margin: 0 10px; color: white; opacity: .8;}
.comment img{
width: 80px;
height: auto;
border-radius: 50%;
}
.comment-form input,textarea{
width: 100%;
}

.body{
background: linear-gradient(50deg,rgba(0, 0, 0, 0.74) 0%,rgba(0, 0, 0, 0.74) 100%),url(../img/bg.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
flex-direction: column;
}

.not-bg .sub-bg {
color: white;
background-color: transparent;
padding: 30px 0;
}

.countdown {
margin-bottom: 80px;
}

.countdown div {
text-align: center;
margin: 10px;
width: 100px;
padding: 8px 0;
background: rgba(255, 255, 255, 0.12);
border-bottom: 15px solid #ff0707;
color: white;
}

.countdown div h3 {
font-weight: 700;
font-size: 44px;
margin-bottom: 15px;
}

.countdown div h4 {
font-size: 16px;
font-weight: 600;
}

@media (max-width: 575px) {
.countdown div {
width: 70px;
padding: 10px 0;
margin: 10px 8px;
}
.countdown div h3 {
font-size: 28px;
margin-bottom: 10px;
}
.countdown div h4 {
font-size: 14px;
font-weight: 500;
}
}







.icon-copy ul {text-align: center;}
.icon-copy ul li{
display: inline-block;
margin: 0 7px;
font-size: 16px;
}
.icon-copy i {
border-radius: 50%;
padding: 6px 7px;
transition: .2s ease-in-out;
}
.icon-copy ul li:hover i{
color: white;
background: var(--main-lg);
padding:8px 11px

}
.icon-copy p{font-style: italic;font-size: 14px;}
.icon-copy p span{color: red;}

.count-h{padding-top: 90px;}