/* ====================================================
  Template Name: HTML5 landing page
  Template URI: https://asifjalil.xyz
  Description: HTML5 landing page
  Author: Asif
  Author URI: https://asifjalil.xyz/
  version: 1.0
==================================================== */

/* CSS Index
------------------------------------

01. Template Default CSS 
02. header css






*/

/* ====================================================
  Google Fonts
==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* ..................................
 01. Template Default CSS 
.................................. */

body {
  font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #e8e8e8;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ffb3b9, #ff8d96);
}

html {
  scroll-behavior: smooth;
}

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

a {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

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


::selection {
  background: rgba(166, 175, 189, .3);
}

/* ====================================================
   Author's custom styles
   ==================================================== */

/* ..................................
 02. header css 
.................................. */
header {
  background-color: rgba(0, 0, 0, 0.07);
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

header.active {
  background: #000;
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, .08);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

header .container {
  max-width: 1600px;
}

header.active .navbar-brand img {
  max-width: 80px;
}

header .nav-link {
  padding-top: 35px;
  padding-bottom: 35px;
  color: #fff;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}

header.active .nav-link {
  padding-top: 28px;
  padding-bottom: 28px;
}

header .nav-link:hover {
  color: #ff8d96;
}

header .nav-link:focus {
  color: #ff8d96;
}

.navbar-toggler-icon {
  font-size: 24px;
  color: #ffffff;
  line-height: 1.5em;
  border: 2px solid #ddd;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-item:active {
  background-color: #ff8d96;
}


/* ..................................
 03. banner CSS 
.................................. */
.banner {
  background-image: linear-gradient(to right, #0184EB 0%, #3e58e4 100%);
  height: 800px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.banner-shape {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
}

.banner-shape .shape {
  position: absolute;
  z-index: 9;
}

.banner-shape .shape-1 {
  left: 15% !important;
  top: 30% !important;
  width: 16px;
  height: 16px;
}

.banner-shape .shape-2 {
  left: 55% !important;
  top: 18% !important;
  width: 11px;
  height: 11px;
}

.banner-shape .shape-3 {
  left: 55% !important;
  top: 88% !important;
  width: 14px;
  height: 18px;
}

.banner-shape .shape-4 {
  left: 75% !important;
  top: 88% !important;
  width: 14px;
  height: 14px;
}

.banner-shape .shape-5 {
  left: 15% !important;
  top: 85% !important;
  width: 114px;
  height: 114px;
}

.banner-content {
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

.banner-content::before {
  content: '';
  position: absolute;
  left: -50px;
  top: -80px;
  width: 179px;
  height: 188px;
  background-image: url(../img/banner/pattern-1.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.banner-content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1em;
}

.banner-content p {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6em;
  margin-top: 25px;
  margin-bottom: 40px;
}

.banner-img {
  position: relative;
  z-index: 1;
}

.banner-img::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 179px;
  height: 188px;
  background-image: url(../img/banner/pattern-1.png);
  background-repeat: no-repeat;
  z-index: -1;

}

/* Button Styles */

.button {
  display: inline-block;
  outline: none;
  border: none;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: capitalize;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn-style-1 {
  padding: 12px 46px;
  z-index: 1;
}

.btn-style-2 {
  padding: 8px 25px;
  z-index: 1;
}

.btn-style-1::before,
.btn-style-2::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #222222;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
}

.btn-style-1:hover::before,
.btn-style-2:hover::before {
  opacity: 1;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}

.green-combo {
  background-color: #03e1b9;
  color: #fff;
}

.green-combo:hover {
  color: #fff;
}

.salmon-combo {
  background-color: #ff8d96;
  color: #fff;
}

.salmon-combo:hover {
  color: #fff;
}




/* ..................................
 04. why us CSS 
.................................. */
.sec-pad-top {
  padding-top: 100px;
}

.sec-pad-bottom {
  padding-bottom: 70px;
}

.section-title {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 45px;
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 44px;
  background-color: #09dda7;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.section-title h3 {
  position: relative;
  color: #222222;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3em;
  text-transform: capitalize;
}

.section-title p {
  position: relative;
  color: #222222;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.80;
  margin-top: 15px;
  line-height: 1.6em;
  margin-bottom: 0;
}

.why-us-item {
  position: relative;
  padding: 35px 25px 45px;
  border-radius: 10px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.why-us-item .icon {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.why-us-item .icon::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 145px;
  height: 138px;
  z-index: -1;
  background: url(../img/pattern/pattern-15.png) no-repeat;
}

.why-us-item .content h4 {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.why-us-item .content .text {
  position: relative;
  color: #888888;
  line-height: 2.2;
  padding: 0px 30px;
  z-index: 1;
}

.why-us-item .content .text::before {
  position: absolute;
  content: '';
  left: 20px;
  top: -10px;
  width: 100%;
  height: 219px;
  z-index: -1;
  background: url(../img/pattern/pattern-16.png) center center no-repeat;
}


/* ..................................
 05. features CSS 
.................................. */
.features {
  position: relative;
  overflow: hidden;
}

.feature-shape-1 {
  position: absolute;
  left: -30px;
  top: 40px;
}

.feature-shape-2 {
  position: absolute;
  right: -50px;
  bottom: -40px;
}

.feature-item {
  height: 150px;
  position: relative;
  padding: 30px 25px;
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5faff;
  border-radius: 5px;
  /* box-shadow: 0px 0px 10px rgba(62, 87, 228, 0.521); */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}


.feature-item:hover {
  margin-top: -5px;
  background: #bcfff3;
  /* box-shadow: 0px 0px 10px rgba(3, 225, 184, 0.527); */
}

.feature-item h4 {
  color: #000;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}



/* ..................................
 06. CRM Industry CSS 
.................................. */
.crm-industry {
  position: relative;
  overflow: hidden;
}

.crm-industry::before {
  content: '';
  position: absolute;
  left: -450px;
  top: -450px;
  width: 1234px;
  height: 876px;
  background-image: url(../img/pattern/pattern-4.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.crm-industry::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -650px;
  width: 867px;
  height: 1415px;
  background-image: url(../img/pattern/pattern-5.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.crm-industry-item {
  position: relative;
  padding: 35px 30px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
  height: calc(100% - 24px);
  margin-bottom: 24px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.crm-industry-item:hover {
  background: #f6fffd;
}

.crm-industry-item-wrapper:nth-child(even) {
  transform: translateY(70px);
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
}

.crm-industry-item .icon-box {
  position: relative;
  width: 55px;
  height: 55px;
  color: #ffffff;
  font-size: 24px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background: #f9a89a;
  margin-bottom: 20px;
}

.crm-industry-item .icon-box-set-1 {
  color: #ffffff;
  background: #f9a89a;
}

.crm-industry-item .icon-box-set-2 {
  color: #ffffff;
  background: linear-gradient(to right, #C86BFA 0%, #a96df9 100%);
}

.crm-industry-item .icon-box-set-3 {
  color: #ffffff;
  background: linear-gradient(to right, #15E4BD 0%, #98f6de 100%);
}

.crm-industry-item .icon-box-set-4 {
  color: #ffffff;
  background: linear-gradient(to right, #F57EF5 0%, #fca7be 100%);
}

.crm-industry-item .icon-box-set-5 {
  color: #ffffff;
  background: linear-gradient(315deg, #abe9cd 0%, #3eadcf 74%);
}

.crm-industry-item .icon-box-set-6 {
  color: #ffffff;
  background: linear-gradient(315deg, #f7b42c 0%, #fc575e 74%);
}

.crm-industry-item .icon-box-set-7 {
  color: #ffffff;
  background: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
}

.crm-industry-item .icon-box-set-8 {
  color: #ffffff;
  background: linear-gradient(315deg, #f8ef42 0%, #0fd64f 74%);
}

.crm-industry-item .content h4 {
  position: relative;
  font-weight: 500;
  line-height: 1.3em;
  margin-top: 24px;
  margin-bottom: 15px;
  font-size: 20px;
}

.crm-industry-item .content p {
  position: relative;
  color: #888888;
  line-height: 1.7;
  z-index: 1;
  margin-bottom: 0;
}


/* ..................................
 06. C2A CSS 
.................................. */
.c2a,
.prefooter {
  position: relative;
  overflow: hidden;
  padding: 140px 0px 170px;
  background-color: #2167fb;
}

.c2a::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  height: 76px;
  width: 100%;
  background-position: left top;
  background-repeat: round;
  background-image: url(../img/pattern/pattern-8.png);
}

.waves {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 15vh;
  margin-bottom: -8px;
  min-height: 100px;
  max-height: 150px;
}

/* Animation */

.parallax>use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax>use:nth-child(1) {
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  -webkit-animation-delay: -4s;
  animation-delay: -4s;
  -webkit-animation-duration: 13s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}

.c2a-content,
.prefooter-content {
  text-align: center;
}

.c2a-content h2,
.prefooter-content h2 {
  position: relative;
  color: #ffffff;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 44px;
}

.c2a-content p,
.prefooter-content p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8em;
  margin-bottom: 20px;
}

/* ..................................
 07. pricing CSS 
.................................. */
.pricing {
  /* background: #fff6f3; */
  background: linear-gradient(to top, #f8fdff 0, #fffefb 100%);
}

.pricing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing-switch-toggle {
  background-color: #c8d0e0;
  border-radius: 30px;
  width: 280px;
  height: 58px;
  padding: 5px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.pricing-switch-toggle input {
  appearance: none;
  display: none;
}

.pricing-switch-toggle label {
  color: #000;
  width: 50%;
  height: 100%;
  line-height: 48px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.pricing-switch-toggle input:checked+label {
  color: #fff;
}

.pricing-switch-active {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 0;
  width: calc(50% - 5px);
  height: 48px;
  background-color: #ff8d96;
  border-radius: 30px;
  transition: 0.3s cubic-bezier(0.06, 0.57, 0, 1.29);
}

.pricing-switch-toggle input:last-of-type:checked~.pricing-switch-active {
  left: 50%;
}

/* .pricing-switch-toggle label:before {
  content: '';
  background-color: #ff8d96;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} */

.pricing-table {
  background: #fff;
  /* height: calc(100% - 56px); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  padding: 30px 20px 0;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: -15px 30px 30px #f2f2f2,
    15px -10px 20px #f3f3f3;
  box-shadow: -15px 30px 30px #f2f2f2,
    15px -10px 20px #f3f3f3;
  position: relative;
}

.pricing-table.best-plan {
  background: linear-gradient(to bottom, #d9ecfa 0, #f5faff 100%);
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.pricing-table.best-plan img {
  background: #ccf0ff;
  border: 8px solid #e9f8ff;
}

.pricing-table .inner-table {
  width: 100%;
}

.pricing-table .title {
  margin: 0 0 10px;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  display: block;
  letter-spacing: .5px;
}

.pricing-table .title-sub {
  margin: 0 0 20px;
  font-size: 17px;
}

.pricing-table .inner-table h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ff8e7b;
  margin-bottom: 3px;
}

.pricing-table.best-plan .inner-table h2 {
  color: #2a89ea;
}

sup {
  top: -1rem;
  position: relative;
  font-size: 60%;
  line-height: 0;
  vertical-align: baseline;
}

.pricing-table .inner-table p.duration {
  color: #72729a;
  font-weight: 500;
  margin-bottom: 0;
}

.pricing-table .inner-table .details {
  margin-top: 25px;
  padding-top: 22px;
  padding-bottom: 30px;
  border-top: 1px solid #e5e5e5;
  height: 300px;
  overflow: hidden;
  transition: height 1s linear;
  -webkit-transition: height 1s linear;
  -moz-transition: height 1s linear;
  -ms-transition: height 1s linear;
  -o-transition: height 1s linear;
}

.pricing-table .inner-table .details li {
  margin-bottom: 18px;
}

.pricing-details-toggle {
  padding: 6px 6px 3px;
  margin: 10px -20px;
  background: #dcecff;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

.pricing-details-toggle i {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

.pricing-button {
  margin-bottom: -15px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  60% {
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }
}


/* ..................................
 08. Testimonial CSS 
.................................. */
.testimonial {
  position: relative;
}

.testimonial .image-column {
  position: relative;
}

.testimonial .image-column .pattern-layer {
  position: absolute;
  left: -80px;
  top: -20px;
  width: 448px;
  height: 407px;
  background-image: url(../img/pattern/pattern-23.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.testimonial-left-img {
  z-index: 1;
}

.testimonial-contents {
  position: relative;
}

.testimonial-contents h3 {
  position: relative;
  color: #181818;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3em;
  margin-bottom: 25px;
}

.testimonial-contents h3 span {
  position: absolute;
  left: -110px;
  top: -10px;
}

.testimonial-item .text {
  position: relative;
  color: #181818;
  opacity: 0.80;
  font-size: 16px;
  line-height: 1.9rem;
}

.testimonial-item .author .name {
  color: #242425;
  font-weight: 500;
}

.testimonial-item .author .designation {
  position: relative;
  color: #09dda7;
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
}

.testimonial-slider .owl-dots {
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
}


/* ..................................
 09. PreFooter CSS 
.................................. */
.prefooter {
  padding: 120px 0;
  position: relative;
}

.prefooter-pattern {
  position: absolute;
  inset: 0;
  text-align: center;
}

.prefooter-pattern img {
  max-width: 100%;
  display: initial !important;
}

.subscription-area {
  max-width: 400px;
  margin: 0 auto;
}

.form-control {
  outline: none;
}

.form-control:focus {
  border: 1px solid #2167fb;
  box-shadow: 0 0 0 0.25rem rgba(33, 102, 251, 0.164);
}

.subscription-area .form-control {
  border: 1px solid #fff;
}

.subscription-area .form-control:focus {
  box-shadow: none;
  border: 1px solid #fff;
}

/* ..................................
 10. Footer CSS 
.................................. */
footer {
  background-color: #211d39;
}

.footer-top {
  padding: 90px 0px 40px;
}

.footer-bottom {
  padding: 25px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.foot-block {
  margin-bottom: 30px;
}

.foot-desc-block p,
.copyright-text {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.80;
  line-height: 1.7em;
}

.foot-desc-block img {
  margin-bottom: 15px;
  max-width: 80px;
}

.foot-title {
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav li a {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: #ff8f95;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  background: #ffffff;
  font-size: 14px;
  color: #211d39;
  margin: 0 5px 10px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.footer-social a:first-child {
  margin-left: 0;
}

.footer-social a:last-child {
  margin-right: 0;
}

.footer-social a:hover {
  background: #ff8f95;
  color: #fff;
}

.foot-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.foot-info-item i {
  color: #ffffff;
  width: 25px;
}

.foot-info-item span {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.80;
  flex: 1;
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}

/* ..................................
 11. Hero CSS 
.................................. */
.hero {
  position: relative;
  padding-top: 130px;
  background-image: linear-gradient(to right, #0184EB 0%, #3e58e4 100%);
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__content-body {
  width: 50%;
}

.hero__title {
  position: relative;
  color: #ffffff;
  line-height: 1.2em;
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 20px;
}

.hero__subtitle {
  margin-bottom: 30px;
  color: #fff;
}


/* ..................................
 12. CRM Feature CSS 
.................................. */
.crmFeature__itemBox {
  margin-bottom: 25px;
  border-radius: .4rem;
  background: #f4f5f7;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all ease .4s;
}

.crmFeature__itemBox:hover {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.crmFeature__itemBox--style1 {
  background: rgba(0, 173, 182, .1);
}

.crmFeature__itemBox--style2 {
  background: rgba(247, 179, 32, .1);
}

.crmFeature__itemBox--style3 {
  background: rgba(241, 7, 80, .1);
}

.crmFeature__itemBox--style4 {
  background: rgba(154, 222, 69, .1);
}

.crmFeature__itemBox--style5 {
  background: rgba(13, 214, 234, .1);
}

.crmFeature__itemBox--style6 {
  background: rgba(185, 95, 253, .1);
}

.crmFeature__itemBox--style7 {
  background: rgba(236, 80, 152, .1);
}

.crmFeature__itemBox--style8 {
  background: rgba(37, 165, 95, .1);
}

.crmFeature__itemBox--style9 {
  background: rgba(234, 105, 13, .1);
}

.crmFeature__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crmFeature__icon img {
  max-width: 40px;
}

.crmFeature__content {
  padding-left: 15px;
  flex: 1;
}

.crmFeature__title {
  font-size: 17px;
}

.crmFeature__title--style1 {
  color: #00adb6;
}


.crmFeature__title--style2 {
  color: #f7b320;
}


.crmFeature__title--style3 {
  color: #f10750;
}


.crmFeature__title--style4 {
  color: #9ade45;
}


.crmFeature__title--style5 {
  color: #0dd6ea;
}


.crmFeature__title--style6 {
  color: #b95ffd;
}

.crmFeature__title--style7 {
  color: #ec5098;
}

.crmFeature__title--style8 {
  color: #25a55f;
}

.crmFeature__title--style9 {
  color: #ea690d;
}


/* ..................................
 13. Trial Modal CSS 
.................................. */
@media (min-width: 768px) {
  .trial-modal .modal-dialog {
    max-width: 700px;
  }
}

.trial-modal .modal-content {
  background-color: #f9f9ff;
}

.trial-modal .modal-header {
  border-bottom: none;
}

.trial-modal-form input,
.trial-modal-form select,
.trial-modal-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  outline: none;
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 7px 25px;
  height: 60px;
  color: #222222;
  font-size: 14px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #f5f0ff;
  transition: all 300ms ease;
}

.trial-modal-form textarea,
.contact-form textarea {
  padding: 10px 30px;
  height: 210px;
  resize: none;
}

.trial-modal-form select option,
.contact-form select option {
  color: #222222;
}

.trial-modal-form input:focus,
.trial-modal-form select:focus,
.trial-modal-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff8f93
}


/* ..................................
 14. Contact CSS 
.................................. */
.contact {
  background-color: #f9f9ff;
}

.contact-info--block {
  background-color: #fff;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info--icon {
  max-width: 60px;
  max-height: 60px;
  margin-right: 20px;
}

.contact-info--icon img {
  max-width: 100%;
  max-height: 100%;
}

.contact-info--content p {
  margin-bottom: 0;
}


/* ..................................
 15. About Intro CSS 
.................................. */
.about-intro {
  position: relative;
  overflow-x: hidden;
  padding: 140px 0px 150px;
}

.about-intro .section-title {
  text-align: left;
}

.about-intro .section-title::before {
  left: 0;
  transform: translateX(0);
}

.about-intro--content-body {
  margin-bottom: 30px;
}

.about-intro--content-body p {
  color: #727272;
  line-height: 1.9;
}

.about-intro--image {
  position: relative;
}

.about-shape {
  position: absolute;
  background-repeat: no-repeat;
}

.about-shape-1 {
  background-image: url(../img/pattern/pattern-17.png);
  left: 40px;
  bottom: -70px;
  width: 775px;
  height: 445px;
  z-index: -1;
}

.about-shape-2 {
  background-image: url(../img/pattern/pattern-18.png);
  left: 0px;
  bottom: -70px;
  width: 818px;
  height: 552px;
  z-index: -1;
}

/* ..................................
 16. Fun Facts CSS 
.................................. */
.fun-facts {
  padding: 100px 0px 80px;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 7%);
}

.fun-facts--item {
  text-align: center;
}

.fun-facts--icon {
  margin-bottom: 20px;
}

.fun-facts--icon img {
  width: 55px;
  height: 55px;
}

.fun-facts--count {
  font-size: 48px;
}

.fun-facts--title {
  margin-bottom: 0;
  font-size: 20px;
}


/* ..................................
 17. Partners CSS 
.................................. */
.partners {
  padding: 120px 0;
}

.partners-slider.owl-carousel .owl-stage {
  padding: 25px 0;
}

.partner-item {
  opacity: 0.7;
  transition: 0.3s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.partner-item:hover {
  opacity: 1;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .15);
}

.partner-item img {
  max-width: 180px;
  max-height: 100px;
}

/* ..................................
 18. Policy & Terms CSS 
.................................. */
.per-policy {
  margin-bottom: 40px;
}

.per-policy h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgb(107, 107, 107);
  margin-bottom: 15px;
}

.per-policy p {
  font-size: 15px;
  line-height: 28px;
  color: rgb(107, 107, 107);
}

.per-policy ul {
  list-style: square;
  padding-left: 40px;
  margin-bottom: 15px;
}

.per-policy ol {
  padding-left: 40px;
  margin-bottom: 15px;
}

.per-policy ul li,
.per-policy ol li {
  font-size: 15px;
  color: rgb(107, 107, 107);
}

.per-policy p a {
  color: #ff8e7b;
}

.per-policy p a:hover {
  text-decoration: underline;
}










/* ..................................
 15. About Intro CSS 
.................................. */