/*
  Theme Name:  - Multipurpose HTML Template
  Author: Abdur Razzak
  Description: Multipurpose HTML Template
  Version: 1.0
*/

/* CSS Index 
----------------------------------------------------------------------
1. HEADER AREA CSS

----------------------------------------------------------------------*/
/*google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&amp;display=swap');
/* Theme default css */
 body {
  	font-family: 'Jost', sans-serif;
	font-weight: normal;
	font-style: normal;
}
.img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
}
.f-left {
	float: left
}
.f-right {
	float: right
}
.fix {
	overflow: hidden
}
a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a:focus,
.btn:focus,
.button:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
a:hover,
a  {
	text-decoration: none;
	outline: 0;
}
a,
button {
	/* color: #191728; */
	outline: medium none;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #101010;
	margin-top: 0px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 40px;
	font-weight: 500;
}
h2 {
	font-size: 40px;
}
h3 {
	font-size: 25px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none
}
p {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5;
	color: #444;
	margin-bottom: 15px;
}
hr {
	border-bottom: 1px solid #eceff8;
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}
label {
	color: #7e7e7e;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
}
*::-moz-selection {
	background: #d6b161;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}

/*==============-------------------------- 1. SECTON TITLE AREA CSS --------------------------================*/
.section-title {
    max-width: 540px;
    margin: auto;
    margin-bottom: 50px;
}
.section-title span {
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #FF5A53;
    font-weight: 500;
}
/*==============-------------------------- 1. Button AREA CSS --------------------------================*/

.button{
	font-size: 15px;
	font-weight: 500;
	background: #ff414b;
	display: inline-block;
	line-height: 1;
	transition: all .5s;
	text-align: center;
	color: #fff;
    border-radius: 10px;
}
.video-button{
	font-size: 26px;
	font-weight: 500;
	width: 75px;
	height: 75px;
	background: #ff414b;
	line-height: 75px;
	transition: all .5s;
	text-align: center;
	color: #fff;
    border-radius: 50%;
    margin-left: 35px;
    position: relative;
}
.video-button:hover{
	color: #ff414b;
	background: #fff;
}
.video-button:before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 2px solid;
    border-color: #fff;
    border-radius: 50%;
    animation: animate 3.5s linear infinite;
    animation-delay: 0.7s;
    opacity: 0;
}
.video-button:after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 1px solid;
    border-color: #fff;
    border-radius: 50%;
    animation: animate 3.5s linear infinite;
    animation-delay: 0s;
    opacity: 0;
}
@keyframes animate{
	0%{
		transform: scale(1);
	}
	20%{
		opacity: 1;
	}
	100%{
		transform: scale(2);
	}

}
.button:hover{
	color: #ff414b;
    background: #fff;
}
.button-style-2 {
    padding: 25px 45px;
    font-weight: 900;
}
.button-style-3 {
    padding: 20px 45px;
    font-weight: 900;
    border-radius: 0px;
}
.button-style-3:hover{
	background: #101010;
	color: #fff;
}
/*==============-------------------------- 1. HEADER AREA CSS --------------------------================*/
.header-topbar {
    padding: 13px 0;
    background-color: #101010;
}
.header-topbar .topbar-content li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    color: #fff;
    font-size: 14px;
    padding-right: 15px;
}
.header-topbar .topbar-content li:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    right: 0;
    top: 0;
    background: #fff;
}
.header-topbar .topbar-content li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.header-topbar .topbar-content li:last-child:before {
    display: none;
}
.header-topbar .topbar-content li a {
    color: #fff;
    text-decoration: none;
    transition: all.5s;
}
.topbar-content i {
	margin-right: 5px;
}
.header-topbar .topbar-content li a:hover{
	color: #ff414b;
}
.header-area .sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
/*==============-------------------------- 1. MENU AREA CSS --------------------------================*/
.header-menu-area {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.main-menu ul li {
    display: inline-block;
    margin-right: 40px;
    position: relative;
}
.main-menu ul li:last-child{
	margin-right: 0;
}
.main-menu ul li a {
    display: inline-block;
    text-transform: capitalize;
    color: #101010;
    font-weight: 700;
    font-size: 15px;
    padding: 35px 0;
    transition: all .5s;
}
.main-menu ul li a i {
    font-size: 11px;
    margin-left: 3px;
}
.main-menu ul li:hover> a{
	color: #ff414b;
}
.main-menu ul li ul.sub-menu {
	position: absolute;
	width: 250px;
	background: #fff;
	top: 100%;
	left: -30px;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: 99;
}
.main-menu ul  li:hover> ul.sub-menu {
    opacity: 1;
    visibility: visible;
    left: 0;
}
.main-menu ul  li ul.sub-menu li {
    display: block;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid #f9f9f9;
    transition: all .5s;
}
.main-menu ul  li ul.sub-menu li:last-child{
	border-bottom: none;
}
.main-menu ul li ul.sub-menu li a {
    color: #101010;
    padding: 13px 25px;
    font-size: 14px;
    transition: all .5s;
}
.main-menu ul li ul.sub-menu li:first-child a{
	padding-top: 15px;
}
.main-menu ul  li ul.sub-menu li:hover> a{
	color: #ff414b;
	margin-left: 10px;
}
.main-menu ul li ul.sub-menu li ul.sub-menu{
	left: 100%;
	top: 0;
}
/*==============-------------------------- 1. HEADER SERACH BUTTON AREA CSS --------------------------================*/
.header-search-button {
    padding-left: 100px;
}
.header-search-button a i {
    color: #101010;
}
.header-search-button a:hover i {
    color: #ff414b;
}

.header-search-input{
    position: absolute;
    top: 94px;
    z-index: 999999;
    right: -10px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.header-search-input input{
	width: 250px;
    height: 40px;
    background: #fff;
    border: 2px solid #ff4150;
    position: relative;
    padding: 10px;
    padding-right: 65px;
}
.header-search-input button i {
    position: absolute;
    right: 12px;
    top: 3px;
    width: 50px;
    height: 34px;
    color: #fff!important;
    background: #ff4150!important;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}
.header-search-button a:hover .header-search-input{
	opacity: 1;
	visibility: visible;
}
/*==============-------------------------- 1. SLIDER AREA CSS --------------------------================*/
.single-slider{
	height: 700px;
	width: 100%;
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1;
}
.single-slider-2{
	height: 800px;
}
.single-slider:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #191728;
	opacity: 0.5;
	z-index: -1;
}
.slider-content.slider-content-2 {
    max-width: 750px;
    margin: auto;
}
.slider-content h1 {
    font-size: 65px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
    font-family:  antialiased;
}
.slider-content p {
	font-size: 20px;
	max-width: 605px;
	color: #fff;
	margin-bottom: 40px;
	text-align: left;
}
.slider-content-2 p{
	margin: auto;
	margin-bottom: 40px;
}
.slider-active .slick-arrow {
	position: absolute;
	top: 50%;
	left: 40px;
	width: 60px;
	height: 60px;
	background: #FFF;
	text-align: center;
	line-height: 60px;
	cursor: pointer;
  	z-index: 99;
  	transition: all.5s;
}
.slider-active .fas.fa-chevron-right.slick-arrow {
	left: auto;
	right: 40px;
}
.slider-active .slick-arrow:hover{
	background: #ff414b;
	color: #fff;
}
.slider-active .slick-dots{
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.slider-active-2.slider-active .slick-dots{
  bottom: 150px;;
}
.slider-active .slick-dots li{
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin: 5px;
  position: relative;
}
.slider-active .slick-dots li button {
  display: none;
}
.slider-active .slick-dots li.slick-active{
  background: #fff;
}
.slider-active .slick-dots li.slick-active:before{
	position: absolute;
	content: "";
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border: 1px solid #fff;
	border-radius: 50%;
}
/*==============------------------------- 1. Feature AREA CSS ------------------------================*/
.features-area.features-area-2 {
    margin-top: -75px;
}
.features-box {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    padding: 25px;
    position: relative;
    transition: all.5s;
    background: #fff;
    z-index: 1;
}

.Cloud-p{
    text-align: justify;
}
.cloud-p{
    line-height: 23px;
text-align: justify;
margin-left: -65px;
margin-right: 31px;
}

.Saas-p{
    text-align: justify;
    margin-left: -65px;
margin-right: 31px;
}

.Data-p{
    text-align: justify;
    margin-left: -65px;
margin-right: 31px;
}

.features-box:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    transition: all.5s;
    z-index: -1;
}
.features-box:hover:before{
	width: 100%;
	background: #ff414b;
}
.feature-icon i {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 34px;
    background: #ff414b;
    color: #fff;
    text-align: center;
    margin-right: 20px;
    transition: all.5s;
}
.features-box:hover .feature-icon i {
	background: #fff;
	color: #101010;
}
.feature-content{
    height: 250px;
}
.feature-content h3{
	margin-bottom: 15px;
}
.features-box:hover .feature-content h3 a,
.features-box:hover .feature-content p{
    color: #fff;
}
/*==============------------------------- 1. ABOUT US AREA CSS ------------------------================*/
.about-us-img2 {
    position: absolute;
    top: -100px;
    left: -90px;
    display: inline-block;
    animation: rotate 5s linear infinite;
    z-index: -1;
}
.about-us-img1 img {
    border-radius: 10px;
}
.about-us-img-3 {
    animation: UptoDown 5s linear infinite;
    position: absolute;
    bottom: 0;
    left: -45px;
}

.about-p{
    text-align: justify;
}
.mission-p{
    text-align: justify;
}
.vision-p{
    text-align: justify;
}
.whyus-p{
    text-align: justify;
}
.toppr-p{
    text-align: justify;
}
.strong-p{
    text-align: justify;
}
@keyframes UptoDown{
	0%{
		transform: translateY(0%);
	}
	50%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0%);
	}
}
@keyframes rotate{
	0%{
		transform: rotate(0deg);
	}
	
	100%{
		transform: rotate(360deg);
	}
}
.about-list-box {
    padding: 5px 20px 5px 0;
}
.about-list-box-3 {
    position: relative;
    z-index: 1;
    padding: 10px 5px;
    margin-bottom: 5px;
}
.about-list-box-3:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: #ff414b;
    top: 0;
    left: 0;
    transition: all.5s;
    z-index: -1;
    border-radius: 10px;
}
.about-list-box-3:hover:before,
.about-list-box-3.active:before{
	width: 100%;
}
.about-list-icon i {
    font-size: 45px;
    margin-right: 20px;
    align-items: center;
    width: 75px;
    height: 75px;
    color: #fff;
    line-height: 75px;
    background: #ff414b;
    text-align: center;
    justify-content: center;
    transition: all.5s;
}
.about-list-box-3 .about-list-icon i {
	border-radius: 10px;
	transition: all.5s;
}
.about-list-box-3:hover .about-list-icon i,
.about-list-box-3.active .about-list-icon i{
	color: #101010;
	background: #fff;
}
.about-list-content h3 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 15px;
}
.about-list-box-2 {
    margin-right: 150px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all.5s;
}
.about-list-box-2.active{
	background: #ff414b;
}
.about-list-box-2:hover{
	background: #ff414b;
}
.about-list-box-2 .about-list-icon i {
    font-size: 35px;
    margin-right: 20px;
    align-items: center;
    width: 60px;
    height: 60px;
    color: #101010;
    line-height: 60px;
    background: #fff;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
}
.about-list-box-2.active .about-list-content h3,
.about-list-box-2.active .about-list-content p,
.about-list-box-3.active .about-list-content h3,
.about-list-box-3.active .about-list-content p,
.about-list-box-3:hover .about-list-content h3,
.about-list-box-3:hover .about-list-content p,
.about-list-box-2:hover .about-list-content h3,
.about-list-box-2:hover .about-list-content p{
	color: #fff;
}
/*==============------------------------- 1. VIDEO AREA CSS ------------------------================*/
.video-area{
    padding: 80px 80px;
    position: relative;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.video-area.fix:before {
    position: absolute;
    content: "";
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #101010;
    opacity: 0.9;
    z-index: -1;
}
.video-left-icon i {
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 40px;
    line-height: 80px;
    background: #ff414b;
    border-radius: 50%;
    text-align: center;
    align-items: center;
}
.left-icon-content p {
	font-size: 18px;
	margin-bottom: 0;
	color: #fff;
	padding: 0 25px;
	margin-top: 10px;
}
.video-right-content span {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}
.video-right-content h3 {
    color: #fff;
    line-height: 1;
}
.section-title.video-title-style-2{
	max-width: 650px;
}
.section-title.video-title-style-2 h2 span{
	color: #ff414b;
	font-size: 40px;
	text-transform: none;
}
/*==============------------------------- 1. SERVICES AREA CSS ------------------------================*/

.service-single-box {
    padding: 25px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}
.webdh-p{
    line-height: 26.5px;
    text-align: justify;
}
.analytics-p{
    line-height: 27px;
    text-align: justify;
}

.Consulting{
    text-align: justify;
}

.Monitoring{
    text-align: justify;
}

.Development{
    text-align: justify;
}

.Marketing{
    text-align: justify;
}

.service-single-icon {
    font-size: 35px;
    width: 75px;
    height: 74px;
    display: inline-block;
    line-height: 75px;
    background: #ff414b;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
}
.services-single-content h3 {
    margin-bottom: 15px;
}
.service-single-box span{
	display: block;
	position: absolute;
	background: #ff414b;
}
.service-single-box span:nth-child(1){
	left: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s;
}
.service-single-box:hover span:nth-child(1){
	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform 0.5s;
}
.service-single-box span:nth-child(2){
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s;
}
.service-single-box:hover span:nth-child(2){
	transform: scaleX(1);
	transform-origin: left;
	transition: transform 0.5s;
}
.service-single-box span:nth-child(3){
	right: 0;
	bottom: 0;
	width: 3px;
	height: 100%;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s;
	transition-delay: 0.3s;
}
.service-single-box:hover span:nth-child(3){
	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform 0.5s;
	transition-delay: 0.3s;
}
.service-single-box span:nth-child(4){
	left: 0;
	top: 0;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s;
	transition-delay: 0.4s;
}
.service-single-box:hover span:nth-child(4){
	transform: scaleX(1);
	transform-origin: left;
	transition: transform 0.5s;
	transition-delay: 0.4s;
}
.security.p{
    font-size: 19px;
    text-align: justify;
}
.securityheading{
    font-size: 33px;
}
/*==============------------------------- 1. TEAM MEMBER AREA CSS ------------------------================*/
.single-team-member {
    position: relative;
}
.team-member-img img {
    border-radius: 10px;
    height: 350px;
}
.team-member-content-box {
    position: absolute;
    bottom: 40px;
    background: #fff;
    width: 85%;
    left: 5px;
}
.team-member-content span {
    font-size: 20px;
}
.team-member-content-icon {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ff414b;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    color: #fff;
    transition: all.5s;
    cursor: pointer;
}
.single-team-member:hover .team-member-content-icon{
	background: #fff;
	color: #ff414b;
}
.team-member-content {
    position: relative;
   	padding: 25px;
   	z-index: 1;
}
.team-member-content:before {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ff414b;
    position: absolute;
    content: "";
    z-index: -1;
    transition: all.5s;
}
.single-team-member:hover .team-member-content:before{
	width: 100%;
}
.single-team-member:hover h3 a,
.single-team-member:hover span{
	color: #fff;
	transition: all.5s;
}
.team-social-icon {
    position: absolute;
    top: -255px;
    left: 0;
}
.team-social-icon ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ff414b;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    margin-bottom: 5px;
    transform: scale(0);
    transition: all.5s;
}
.team-social-icon{
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.team-member-content-icon:hover .team-social-icon,
 .team-member-content-icon:hover .team-social-icon ul li a{
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.team-social-icon ul li a:hover{
	background: #ff414b;
	color: #fff;
}
/*==============------------------------- 1. WHY CHOOSE US AREA CSS ------------------------================*/
.why-choose-area {
	padding: 80px 0;
	background: #ebf8ff;
	overflow: hidden;
}
.toppr-p{
    line-height: 21px;
    text-align: justify;
}
.huge-p{
    line-height: 27px;
    text-align: justify;
}
.strong-p{
    text-align: justify;
}
.Quick-p{
    text-align: justify;
}

.why-p{
    text-align: justify;
}
.why-choose-img{
	z-index: 1;
}
.why-choose-img:before {
    position: absolute;
    content: "";
    background: #101010;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    border-radius: 10px;
}
.why-choose-img img {
    border-radius: 10px;
    width: 100%;
}

.why-choose-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
 /* .why-choose-shape1 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: #ff414b26;
    top: 15px;
    right: -75px;
    border-radius: 50%;
    animation: leftToright 4s linear infinite;
}  */
@keyframes leftToright{
	0% {
    transform: rotate(0deg) translate(-5px) rotate(0deg);
  }
  100%{
    transform: rotate(360deg) translate(-5px) rotate(-360deg);
  }
}
.why-choose-shape2 {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: inline-block;
    animation: rotate 10s linear infinite;
}
.why-choose-items-content {
    padding: 15px;
    background: #fff;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}
.why-choose-items-content:before{
	position: absolute;
	content: "";
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	background: #ff414b;
	transition: all.5s;
	z-index: -1;
}
.why-choose-items-content:hover:before{
	width: 100%;
}
.why-choose-items-content h3 {
    margin-bottom: 10px;
}

.yourbusiness-img{
    max-width: 100%;
    height: auto;
}

.why-choose-items-content:hover.why-choose-items-content h3,
.why-choose-items-content:hover.why-choose-items-content p{
	color: #fff;
	transition: all.5s;
}
.progress {
    height: 20px;
    padding-top: 5px;
    background: #f6f6f6;
    border-radius: 0 10px 10px 0;
    overflow: visible;
}
.progress-bar {
	height: 5px;
    border-radius: 0 5px 5px 0;
    background-color: #ff414b;
    position: relative;
    overflow: visible;
    animation: progress 1s ease 0s 1 normal;    
    opacity: 1;
}
@keyframes progress{
	0%{
		width: 0%;
	}
}
.progress-bar .percent {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #ff414b;
    border-radius: 5px;
    top: -45px;
    right: -10px;
}

.progress .progress-bar .percent::after {
    position: absolute;
    content: '';
    top: 30px;
    left: 10px;
    border-top: 5px solid #ff414b;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}
.single-progress {
    margin-bottom: 30px;
}
.single-progress h3 {
    font-size: 19px;
    font-weight: 500;
}
.card{
  border:0;
  margin-bottom: 5px;
}
.card .card-header{
  padding:0;
  border-bottom: 0;
  background: none;
}
.card-header .collapsed{
    margin-bottom: 20px;
}
.card-header h5 a.btn {
    border-radius: 11px 11px 0 0;
    display: block;
    font-size: 18px;
    color: #191728;
    padding: 25px 35px;
    text-align: left;
    -webkit-box-shadow: 0px 2px 8px -4px rgb(0 0 0 / 21%) !important;
    box-shadow: 0px 2px 8px -4px rgb(0 0 0 / 21%) !important;
    border: 1px solid #f2f7ff;
    border-radius: 50px;
    text-decoration: none;
}
.card-header h5 a.btn::before{
  position: absolute;
  content:"-";
  right:20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: #ff6000;
  color:#fff;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.card-header h5 a.btn.collapsed::before{
  content: "+";
}
.card .card-body{
  padding: 20px 0px 0px 50px;
}
.card-body ol{
    padding: 0;
}
.card .card-body ol li {
    margin-bottom: 10px;
    padding-left: 10px;
    color: #606377;
    font-size: 16px;
    line-height: 30px;
}
.card .card-body ol li i{
    margin-right: 10px;
}
/*==============------------------------- 1. TESTIMONIAL AREA CSS ------------------------================*/
.testimonial-area {
    padding: 80px 0px 130px;
    background: #181b31;
}
.testimonial-active {
    z-index: 1;
    position: relative;
}
.testimonial-active:before {
    position: absolute;
    content: "";
    background: #ff414b;
    width: 120px;
    height: 110px;
    top: -2px;
    left: -2px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    z-index: -1;
}
.test-shape1 {
    position: absolute;
    bottom: 70px;
    left: 10px;
    animation: upTodown 8s linear infinite;
}
@keyframes upTodown{
	0%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(-50px);
	}
	100%{
		transform: translateY(0px);
	}
}
.test-shape2 {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 150px;
    height: 150px;
    background: #04092c;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}
.single-testimonial {
    padding: 10px;
    position: relative;
}
.single-testimonial-box {
    background: #fff;
    padding: 25px;
}
.testimonial-img {
    width: 80px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.testimonial-img img {
    width: 100%;
}

.testimonial-header-contant h3 {
    margin-top: 6px;
}

/*==============------------------------- 1. Blog AREA CSS ------------------------================*/
.single-blog {
    padding: 10px;
}
.single-blog-item {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    position: relative;
}
.blog-content-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 90%;
}
.blog-content {
    padding: 25px;
    position: relative;
    background: #fff;
    z-index: 1;
}
.single-blog-style-2 .blog-content-box {
    position: inherit;
    width: 100%;
    left: 0;
    bottom: 0;
}
.blog-content:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #ff414b;
	z-index: -1;
	transition: all.5s;
}
.single-blog-style-2 .blog-content-box .blog-content:before{
	width: 100%;
	height: 0%;
}
.single-blog:hover.single-blog-style-2 .blog-content-box .blog-content:before{
	height: 100%;
}
.single-blog:hover .blog-content:before{
	width: 100%;
}
.blog-meta {
    justify-content: space-between;
    display: flex;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all.5s;
}
.blog-content h3 a{
    font-size: 25px;
    margin-bottom: 10px;
    transition: all.5s;
}
.blog-content a {
    font-size: 18px;
    transition: all.5s;
}
.single-blog:hover .blog-meta, 
.single-blog:hover .blog-content h3, 
.single-blog:hover .blog-content a{
	color: #fff;
}
.latest-blog-active .slick-arrow {
    position: absolute;
    right: 75px;
    top: -60px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid #101010;
    color: #101010;
    cursor: pointer;
    transition: all.5s;
}
.latest-blog-active .slick-arrow.fa-chevron-right{
	left: auto;
	right: 15px;
}
.latest-blog-active .slick-arrow:hover{
	background: #ff414b;
	color: #fff;
	border: 1px solid #ff414b;
}
/*==============------------------------- 1. BLGO DETAILS AREA CSS ------------------------================*/
.single-widget {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
}
h3.widget-title {
    font-size: 30px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

h3.widget-title:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: -1px;
    background: #ff414b;
}
.search-form input {
    width: 100%;
    height: 51px;
    padding: 10px 50px 10px 10px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    border: 1px solid #ff414b;
}

.search-form button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 50px;
    height: 43px;
    border: none;
    background: #ff414b;
    color: #fff;
}
.widget-blog-img {
    width: 80px;
    height: 60px;
    float: left;
    margin-right: 20px;
}
.widget-blog-img img{
	border-radius: 8px;
}
.widgets-blog-img-content {
    margin-bottom: 40px;
}
.blog-details-meta {
    font-size: 16px;
    margin-bottom: 4px;
    transition: all.5s;
}
.widgets-blog-img-content h3{
    overflow: hidden;
    font-size: 18px;
    line-height: 1;
}
.widgets-blog-img-content h3:hover a{
	color: #ff414b;
}
.categories-list li {
    margin-bottom: 10px;
    display: block;
}

.categories-list li a {
    padding: 5px;
    display: block;
    font-size: 18px;
    transition: all.5s;
}
.categories-list li a i{
	font-size: 14px;
	margin-right: 5px;
}
.categories-list li a span{
	margin-left: 10px;
}
.categories-list li a:hover{
	margin-left: 10px;
	color: #ff414b;
}
.tag-clouds ul li {
    display: inline-block;
    margin: 9px;
}

.tag-clouds ul li a {
    font-size: 18px;
    padding: 5px 10px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    background: #fff;
    transition: all .5s;
}
.tag-clouds ul li:hover a {
    background: #ff414b;
    color: #fff;
}
.single-blog-details-desc{
	padding: 25px;
}
.single-blog-details-desc .single-blog-details-content span{
    font-size: 15px;
    margin-bottom: 20px;
    display: inline-block;
}
.single-blog-details-desc .single-blog-details-content span a{
    font-size: 17px;
    color: #ff6000;
   -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.single-blog-details-desc .single-blog-details-content span a:hover{
    color: #007bff;
}
.single-blog-details-desc .single-blog-details-content h3{
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.single-blog-details-desc .single-blog-details-content p {
    font-size: 16px;
    color: #7e8090;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
.single-blog-details-desc .single-blog-details-content .blog-content-quote {
    position: relative;
    background: #F8F8F9;
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
}
.single-blog-details-desc .single-blog-details-content .blog-content-quote i {
    font-size: 30px;
    color: #ff414b;
}
.single-blog-details-desc .single-blog-details-content .blog-content-quote p{
    margin-bottom: 10px;
}
.single-blog-details-desc .single-blog-details-content .blog-content-shares ul li {
    display: inline-block;
    margin-right: 2px;
}
.single-blog-details-desc .single-blog-details-content .blog-content-shares ul li a {
    font-size: 20px;
    display: block;
    height: 40px;
    width: 40px;
    background: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    color: #101010;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-content-tags ul li {
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 5px 10px;
}
.blog-content-tags ul li:hover a{
	color: #ff414b;
}
.single-blog-details-desc .single-blog-details-content .blog-content-shares ul li:hover a{
	color: #ff414b;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.single-blog-details-content .blog-details-comments .comment-box {
    position: relative;
    padding-left: 120px;
    padding-top: 35px;
}
.blog-details-comments .comment-box .comment-img {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100px;
    height: 100px;
    background: #ddd;
}
.single-blog-details-content .blog-details-comments .comment-box a.reply-btn {
    color: #101010;
    border: 1px solid #101010;
    padding: 5px 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all.5s;
}
.single-blog-details-content .blog-details-comments .comment-box a.reply-btn:hover {
    color: #fff;
   	background: #ff414b;
   	border: 1px solid #ff414b;
}
.single-blog-details-content .blog-details-comments .comment-reply-box {
    margin-left: 100px;
}

.single-blog-details-content .blog-details-leave-comments form.comment-form input,
.single-blog-details-content .blog-details-leave-comments form.comment-form textarea {
    width: 100%;
    height: 60px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    color: #101010;
}
.single-blog-details-content .blog-details-leave-comments form.comment-form textarea{
    height: 150px;
}
.single-blog-details-content .blog-details-leave-comments form.comment-form input:focus,
.single-blog-details-content .blog-details-leave-comments form.comment-form textarea:focus{
    border-color: #ff414b;
}
.single-blog-details-content .blog-details-leave-comments p.comment-form-cookies {
    width: 100%;
    position: relative;
    padding-left: 25px;
    float: left;
}
.single-blog-details-content .blog-details-leave-comments form.comment-form .comment-form-cookies input {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 7px;
    left: 0;
    display: inline-block;
}
.reply-comment-button button {
    border: none;
}
/*==============------------------------- 1. PORTFOLIO AREA CSS ------------------------================*/
.portfoli-items-box{
	position: relative;
	z-index: 1;
}
.portfoli-items-box:before {
    position: absolute;
    content: "";
    background: #ff414b;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    opacity: 0.8;
    transition: all.5s;
    border-radius: 18px;
}
.portfoli-items-box:hover:before{
	width: 100%;
}
.portfolio-img img {
    border-radius: 18px;
}
.portfolio-content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.portfolio-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-left: 20px;
	padding-bottom: 50px;
	overflow: hidden;
}
.portfolio-content-button {
    position: absolute;
    right: 35px;
    bottom: 45px;
    width: 50px;
    height: 50px;
    background: #fff;
    text-align: center;
    color: #101010;
    line-height: 50px;
    font-size: 18px;
    border-radius: 50%;
    transform: scale(0);
    transition: all.5s;
}
.portfolio-content-button:hover.portfolio-content-button a{
	color: #101010;
}
.portfoli-items-box:hover .portfolio-content-button{
	transform: scale(1);
}
.portfolio-meta span {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    transition: .5s;
}
.portfolio-content h3 a{
    color: #fff;
    font-size: 26px;
    transition: all.5s;
}
.portfolio-content h3 a, 
.portfolio-content .portfolio-meta span {
    transform: translateY(200px);
}
.portfoli-items-box:hover .portfolio-content h3 a,
.portfoli-items-box:hover .portfolio-content .portfolio-meta span{
    transform: translateY(0px);
}
.testimonial-active .slick-dots {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.testimonial-active .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff414b;
    display: inline-block;
    margin: 5px;
    position: relative;
}
.testimonial-active .slick-dots li button {
  display: none;
}
.testimonial-active .slick-dots li.slick-active {
    background: #ff414b;
}
.testimonial-active .slick-dots li.slick-active:before{
	position: absolute;
	content: "";
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border: 1px solid #ff414b;
	border-radius: 50%;
}
/*==============------------------------- 1. FOOTER AREA CSS ------------------------================*/
.footer-widgets-area {
    background: #1a1e27;
    padding: 80px 0 50px;
}
.footer-widget .footer-content p {
    color: #fff;
    line-height: 25px;
    text-align: justify;
    margin-bottom: 35px;
}

.footer-widget .footer-social ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-widget .footer-social ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    color: #101010;
    transition: all .5s;
}
.footer-widget .footer-social ul li:hover a {
    color: #fff;
    background: #ff414b;
    transform: scale(1);
}
.footer-widget .footer-title {
    font-size: 28px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-widget ul.footer-link ul li a {
    color: #fff;
}
.footer-widget ul.footer-link li {
    margin-bottom: 5px;
}
.footer-widget ul.footer-link li a {
    color: #fff;
    display: block;
    padding: 5px 10px;
    transition: all.5s;
    font-size: 18px;
}
.footer-widget ul.footer-link li:hover a {
    color: #ff414b;
    margin-left: 10px;
}
.footer-widget ul.footer-contact-info li{
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-widget ul.footer-contact-info li i{
    color: #ff414b;
    margin-right: 5px;
}
.footer-widget ul.footer-contact-info li a{
	color: #fff;
}
.footer-widget ul.footer-contact-info li a i{
	color: #ff414b;
	margin-right: 5px;
}
.footer-widget ul.footer-contact-info li a:hover{
	color: #ff414b;
}
.copy-right-text {
    height: 70px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #15182D;
}
.copy-right-text p{
	font-size: 18px;
	color: #fff;
	margin: 0;
}
.copy-right-text p a {
    color: #ff414b;
}
/*==============------------------------- 1. HOME PAGE 2 AREA CSS ------------------------================*/

/*==============------------------------- 1. BLOG PAGE AREA CSS ------------------------================*/
.breadcrumb-area{
	height: 400px;
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1;
}
.breadcrumb-area:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #101010;
	opacity: 0.8;
	z-index: -1;
}
.breadcrumb-content .breadcrumb-menu li {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    padding-left: 10px;
    color: #ff414b;
    transition: all.5s;
    font-size: 18px;
}
.breadcrumb-content .breadcrumb-menu li:hover a{
	color: #ff414b;
}
.breadcrumb-content .breadcrumb-menu li a{
	color: #fff;
}
.breadcrumb-title h2 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 23px;
    text-transform: uppercase;
}
li.active:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 20px;
    top: 1px;
    left: -3px;
    background: #fff;
    transform: skewX(-15deg);
}
/*==============------------------------- 1. Pagination AREA CSS ------------------------================*/
.pagination-area .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #101010;
    background: #fff;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    margin-right: 10px;
    cursor: pointer;
    transition: all .5s;
    font-size: 18px;
    font-weight: 600;
}
.pagination-area .page-numbers:hover,
.page-numbers.current{
	background: #ff414b;
	color: #fff;
}
/*==============------------------------- 1. FAQS AREA CSS ------------------------================*/
.accordion-item {
    margin-bottom: 22px;
    border: none;
    background: #fff;
}
.accordion-header {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}
.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    background: #fff;
    color: #ff414b;
}
.accordion-flush .accordion-item .accordion-button.collapsed{
    color: #101010;
	background: #fff;
    box-shadow: none;
}
 .accordion-button:focus {
	border-color: none;
    box-shadow:none;
    background: none;
}
.accordion-button:not(.collapsed)::after {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
/*==============------------------------- 1. TERMS & CONDITION AREA CSS ------------------------================*/
.term-cond-content{
	max-width: 1000px;
	margin: auto;
}
.term-cond-content h3 {
    margin-bottom: 15px;
}

.term-cond-content p {
    margin-bottom: 40px;
}
/*==============------------------------- 1. PRICING AREA CSS ------------------------================*/
.single-pricing-table {
    padding: 30px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    transition: all.5s;
}
.single-pricing-table:hover,
.pricing-active {
    background: #ff414b;
    transform: translateY(-10px);
}
.pricing-header {
    margin-bottom: 15px;
}
.pricing-header h3 {
    margin-bottom: 7px;
    line-height: 1;
}
.price {
    margin-bottom: 20px;
    border-bottom: 1px solid #ff414b;
    padding-bottom: 20px;
}
.single-pricing-table:hover .price,
.pricing-active .price{
    border-bottom: 1px solid #fff;
}
.price h2 span {
    font-size: 16px;
    color: #7e8090;
    font-weight: 400;
}
.price {
	margin-bottom: 20px;
}
.pricing-header span {
    color: #7e8090;
}
.pricing-list ul li {
    color: #7e8090;
    margin-bottom: 20px;
}
.pricing-button {
    text-align: center;
    border-top: 1px solid #ff414b;
    padding-top: 20px;
}
.single-pricing-table:hover .pricing-button,
.pricing-active .pricing-button{
    border-top: 1px solid #fff;
}
.pricing-button a {
    font-size: 18px;
    padding: 10px 20px;
    border: 1px solid #ff414b;
    color: #101010;
    text-transform: capitalize;
    font-weight: 500;
    transition: all.5s;
}
.pricing-button a i {
    font-size: 14px;
    margin-left: 5px;
}
.single-pricing-table:hover .pricing-button a,
.pricing-active .pricing-button a{
    background: #fff;
    color: #ff414b;
}
.single-pricing-table:hover .pricing-header h3,
.single-pricing-table:hover .pricing-header span,
.single-pricing-table:hover .price h2,
.single-pricing-table:hover .price h2 span,
.single-pricing-table:hover .pricing-list ul li,
.pricing-active .pricing-header h3,
.pricing-active .pricing-header span,
.pricing-active .price h2,
.pricing-active .price h2 span,
.pricing-active .pricing-list ul li{
	color: #fff;
}
/*==============------------------------- 1. 404 AREA CSS ------------------------================*/
.content-404 {
    max-width: 500px;
    margin: auto;
    text-align: center;
}
.content-404 h2 {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 15px;
}
.content-404 h3 {
    margin-bottom: 10px;
    font-size: 30px;
}
.content-404 p {
    font-size: 18px;
    margin-bottom: 35px;
}
.content-404 a {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #ff414b;
    color: #101010;
    transition: all.5s;
}
.content-404 a:hover {
    background: #ff414b;
    color: #fff;
}
/*==============------------------------- 1. CONTACT AREA CSS ------------------------================*/
.contact-icon-box {
    padding: 25px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    height: 150px;
}
.contact-icon-box:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #ff414b;
	transition: all.5s;
	z-index: -1;
}
.contact-icon-box:hover:before{
	width: 100%;
}
.contact-icon i {
    font-size: 40px;
    width: 75px;
    height: 75px;
    background: #ff414b;
    line-height: 75px;
    text-align: center;
    margin-right: 20px;
    color: #fff;
    border-radius: 50%;
    transition: all.5s;
}
.contact-icon-box:hover .contact-icon i{
	background: #fff;
	color: #101010;
}
.contact-icon-text h3 {
    margin-bottom: 10px;
    transition: all.5s;
}
.contact-icon-text p {
    margin-bottom: 5px;
    transition: all.5s;
}
.contact-icon-box:hover .contact-icon-text p ,
.contact-icon-box:hover .contact-icon-text p a,
.contact-icon-box:hover .contact-icon-text h3{
	color: #fff;
}
#contact-map {
    height: 520px;
}
.contact-form {
    background: #f9fafc;
    padding: 50px;
    position: relative;
    left:29px ;
}
.i-farme{
    height: 700px;
}
.contact-form input {
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
    padding: 15px;
    font-size: 18px;
    color: #101010;
    border: none;
    background: #fff;
}
.contact-button button{
	border: none;
}
.contact-form textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
    font-size: 18px;
    color: #101010;
    border: none;
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus{
	border: 1px solid #ff414b;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
	color: #101010;
	font-size: 18px;
}
.success{
    background-color: #9fd2a1;
    padding: 5px 10px;
    text-align: center;
    color: #326b07;
    border-radius: 3px;
    font-synthesis: 14px;
    margin-top: 10px;
}
/*==============------------------------- 1. Scrollup AREA CSS ------------------------================*/
a#scrollUp {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    background: #ff414b;
    border-radius: 50%;
}
/* 25.PRE-LOADER AREA CSS */
#loading{
    background-color: #ff5041;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999999999;
    margin-top: 0px;
    top: 0px;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
}
#object{
    width: 80px;
    height: 80px;
    background-color: #FFF;
    -webkit-animation: animate 1s infinite ease-in-out;
    animation: animate 1s infinite ease-in-out;
    margin-right: auto;
    margin-left: auto;
    margin-top: 60px;
}
@-webkit-keyframes animate {
  0% { -webkit-transform: perspective(160px); }
  50% { -webkit-transform: perspective(160px) rotateY(-180deg); }
  100% { -webkit-transform: perspective(160px) rotateY(-180deg) rotateX(-180deg); }
}

@keyframes animate {
  0% { 
    transform: perspective(160px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(160px) rotateX(0deg) rotateY(0deg); 
  } 50% { 
    transform: perspective(160px) rotateX(-180deg) rotateY(0deg);
    -webkit-transform: perspective(160px) rotateX(-180deg) rotateY(0deg) ;
  } 100% { 
    transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
    -webkit-transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
  }
}

.nav-link.active {
    color: rgb(255, 0, 0);
  }