


:root {
  --secondcolor: #f91955;
  --thirdcolor: #d7164c;
  --maincolor: #f25496;
  --whitecolor: #fff;
  --transition: .5s all ease;
}
/*-- Common Style --*/
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #4c4d56;
  outline: none;
  visibility: visible;
  overflow-X: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: "";
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif !important;
  color: #090d2f;
  font-weight: 700 !important;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 0;
}

h1 {
  font-size: 36px;
}

body p {
  font-size: 16px;
}

a:focus,
button:focus,
img:focus,
input:focus {
  outline: 0;
}

a:focus {
  color: none;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: rgb(206, 39, 39);
}

ul,
ol {
  padding: 0;
  list-style: none;
  margin: 0;
}

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

.text-black {
  color: #111121 !important;
}

.theme-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  background-color: rgb(206, 39, 39);
  border: 2px solid rgb(206, 39, 39);
}

.theme-btn:hover {
  color: #fff;
  border: 2px solid rgb(224, 17, 17);
}

.theme-btn:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0;
  top: 0;
  background-color: rgba(206, 39, 39, 0.74);
  border-radius: 50px 50px 0 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  opacity: 0;
  z-index: -1;
}

.theme-btn:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  background-color: rgb(206, 39, 39);
  border-radius: 0 0 50px 50px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  opacity: 0;
  z-index: -1;

}

.theme-btn:hover:after {
  opacity: 1;
  height: 50%;
}

.theme-btn:hover:before {
  opacity: 1;
  height: 50%;
}

.theme-btn i {
  display: inline-block;
  font-size: 13px;
  position: relative;
  right: -5px;
}

.theme-btn2 {
  color: rgb(206, 39, 39);
  background-color: var(--whitecolor);
  border: 2px solid var(--whitecolor);
}

.theme-btn2:hover {
  color: #fff;
  border: 2px solid rgb(206, 39, 39);

}

.theme-btn2:before {
  background-color: rgb(206, 39, 39);

}

.theme-btn2:after {
  background-color: rgb(206, 39, 39);
}

.outline-btn {
  background-color: transparent;
  color:  rgb(206, 39, 39);;
  border: 2px solid  rgb(206, 39, 39);

}

/*-- Common Classes --*/

/*--Section Spacing--*/
section {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.sec-mar {
  margin: 120px 0;
}
.color-pink{
  color: rgb(206, 39, 39);
}
@media only screen and (max-width: 1199px) {
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 991px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .single-item{
    min-height: inherit !important;
  }
  .empower .banner-right, .need-more .banner-right{
    position: static !important;
  }
  section.tech.bg-light .col-md-6{
    margin-bottom: 30px;
}
}


.sec-title {
  position: relative;
  display: block;
}

.sec-title.center {
  text-align: center;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 48px;
  color: #222222;
  font-weight: 600;
  margin: 12px 0 5px;
}

.sec-title h6 {
  text-transform: uppercase;
  font-weight: 600;
  max-width: fit-content;
  color: #000;
  background: linear-gradient(242.82deg, #ffcfdc -7%, #f9d8e6 100.52%);
  padding: 5px 12px;
  line-height: 14px;
  border-radius: 20px;
  font-size: 13px;
}
.sec-title.center h2:before,
.sec-title.center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.sec-title p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #777;
  margin: 0px;
}

.sec-title.center h2,
.sec-title.center p {
  text-align: center;
}

section.bg-dark {
  background-color: #1d1d1dbd !important;
}

.bg-dark h2 {
  color: #fff;
}

body .bg-light {
  background-color: #f7e2a0 !important;
}


/* common */
.tinder-banner {
  padding: 110px 0 0;
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-image: url(../../img/business-model-img/tinder/banner-bg.png);
  background-size: cover;
}


.tinder-banner .banner-right img{
  margin-bottom: -10px;
}
.tinder-banner .hero-content {
  max-width: 880px;
  margin: 0 auto;
}

.tinder-banner .hero-content .sub-title {
  font-size: 16px;
  line-height: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 30px;
}

.tinder-banner .hero-content .title span{
  color: rgb(206, 39, 39);
}

.banner-img-overlay img:nth-child(1) {
  position: absolute;
  bottom: 15%;
  left: 10%;
  animation: 5s float_up_down infinite;
}

.banner-img-overlay img:nth-child(2) {
  position: absolute;
  bottom: 10%;
  right: 0;
  animation: 5s float_down_up infinite ;
}
/*Advanced  */

/* tinder Services */
.tinder-services {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.tinder-services .content-bx .title {
  font-size: 17px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #000;
  font-weight: 600;
  display: block;
}

.tinder-services .content-bx,
.tinder-services .icon-bx,
.planning-tools.style1 .icon-bx {
  position: relative;
  z-index: 99;
  transition: all 0.5s;
}

.tinder-services .icon-bx {
  height: 100px;
  width: 100px;
  margin: auto;
  background: linear-gradient(242.82deg, rgb(206, 39, 39) -7%, rgb(206, 39, 39) 100.52%);
  color: #FFF;
  font-size: 40px;
  line-height: 100px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.tinder-services:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -100%;
  background-image: url(../../img/business-model-img/tinder/sap1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  z-index: 1;
}

.tinder-services:after {
  content: "";
  background: rgb(206, 39, 39);
  background: linear-gradient(242.82deg, rgb(206, 39, 39) -7%, rgb(206, 39, 39) 100.52%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -100%;
  transition: all 0.5s;
}

.tinder-services:hover:before {
  top: 0;
}
.tinder-services:hover:after {
  bottom: 0;
  border-radius: 0;
}
.tinder-services:hover .icon-bx {
  background: #fff;
  border-radius: 100%;
  box-shadow: inset 0 0 0px 6px rgb(206, 39, 39), 10px 0px 40px -5px rgba(57, 0, 0, 0.17);
  color: rgb(206, 39, 39);
}

.tinder-services .icon-bx,
.tinder-services .icon-bx img {
  border-radius: 100%;
}

.tinder-services:hover .icon-bx img {
  transform: scale(0.8);
  filter: invert(44%) sepia(92%) saturate(1606%) hue-rotate(306deg) brightness(99%) contrast(91%);
}

.tinder-services:hover .title {
  color: #fff;
}

/* tech section */

.three-box i {
  width: 50px;
  height: 50px;
  display: flex;
  margin: auto;
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: #ffffff;
  border-radius: 50%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  background-image: -webkit-linear-gradient(-45deg, rgb(206, 39, 39) 0%, var(--secondcolor) 100%);
  z-index: 2;
  border: 5px solid #fff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.service-item h4 {
  font-size: 19px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  margin: 15px 0px;
}
.three-boxex-all {
  display: block;
  text-align: center;
  width: 100%;
  margin: auto;
  margin-top: 30px;
  background: #fff;
  padding: 23px;
  border-radius: 20px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.service-item {
  text-align: center;
  padding: 30px 25px 28px;
  border-radius: 10px;
  background-color: var(--whitecolor);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  margin-bottom: 30px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background-color: rgb(206, 39, 39);
  transition: var(--transition);
  border-radius: 10px;
  z-index: -1;
}

.service-item:hover {
  transform: translate(0, -10px);
}

.service-item:hover:before {
  height: 100%;
}

.service-item:hover img{
  filter: brightness(0) invert(1);
}

.service-item:hover i {
  border: 1px solid var(--secondcolor);
}

.service-item:hover h3 a {
  color: var(--whitecolor);
}

.service-item:hover p,
.service-item:hover h4 {
  color: var(--whitecolor);
}

.service-item:hover .service-link {
  color: var(--whitecolor);
}


.service-item i {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: var(--whitecolor);
  border: 1px dotted var(--secondcolor);
  color: var(--secondcolor);
  font-size: 35px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-item h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.service-item h3 a {
  color: #000;
}

.service-item h3 a:hover {
  color: #000;
}

.service-item p {
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-item .service-link {
  display: inline-block;
  color: var(--secondcolor);
  font-weight: 500;
  font-size: 14px;
}

.service-item .service-link:hover {
  color: #000;
}

/* tech section end*/

/* empower */

.empower .banner-right{
  position: absolute;

}

.empower .banner-right{
  top: -140px;
}
.need-more .banner-right {
  top: 24px;
}

/*  */


.single-item {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	display: flex;
	flex-direction: column;
	min-height: 350px;
}
.single-item .bg-layer {
  position: absolute;
  content: "";
  left: 0;
  top: -101%;
  height: 100%;
  width: 100%;
  transition: all 0.6s ease;
  background-size: cover;
}

.single-item .bg-layer:before {
  position: absolute;
  content: '';
  background: rgb(206, 39, 39);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  mix-blend-mode: multiply;
}

.single-item:hover .bg-layer {
  top: 0px;
}
.single-item:hover .theme-btn{
  background-color: #fff;
  border-color: rgb(206, 39, 39);
  color: rgb(206, 39, 39);
}
.single-item .theme-btn:hover{
  color: #fff;
  border-color: rgb(206, 39, 39);
}
.single-item .icon-box {
  position: relative;
  font-size: 26px;
  line-height: 45px;
  color: rgb(206, 39, 39);
  transition: all 500ms ease;
  bottom: auto;
  object-fit: scale-down;
  padding: 16px;
  box-shadow: 0 2px 24px 0 rgb(0 0 0 / 11%);
  left: 0;
  right: 0;
  border-radius: 100px;
  border: 9px solid rgb(206, 39, 39);
  width: 80px;
  height: 80px;
  text-align: center;
  margin: 0 auto 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-item:hover .icon-box {
  color: #fff;
  border: 9px solid #fff;
}

.single-item:hover .text {
  color: #fff;
}

.single-item .text {
  position: relative;
  transition: all 500ms ease;
  font-size: 15px;
  color: #000;
}
.single-item .theme-btn {
  font-size: 13px;
  padding: 10px 18px;
  width: 100%;
text-align: center;
}

.single-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}
@media (max-width: 575.98px) { 
  .banner-img-overlay{
    display: none;
  }
 }

