@import url("../fonts/aileron/stylesheet.css");
@import url("../fonts/poppins/stylesheet.css");
/* Common CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body,
html {
  height: 100%;
}

body {
  font-family: 'Aileron';
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  display: flex;
  flex-direction: column;
  padding-top: 180px;
}

body.login-header {
  padding-top: 0 !important;
}

.font-poppins {
  font-family: 'Poppins';
}

.bg-light-gray {
  background-color: #f5f5f5;
}

.page-wrapper {
  flex: 1 1 auto;
}

a {
  color: #7b2bbe;
}

a:hover {
  color: #7b2bbe;
  transition: all 0.4s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

.error {
  color: #F1646F;
}

dl,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Input Type Check and Radio */

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="checkbox"]~label {
  position: relative;
  padding-left: 20px;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  padding-left: 25px;
}

input[type="checkbox"]~label::before {
  content: " ";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 3px;
  border: 2px solid #7b2bbe;
}

input[type="checkbox"]~label::after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 5px;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

input[type="checkbox"]:checked~label::before {
  background: #7b2bbe !important;
  border: #7b2bbe solid 1px !important;
}

input[type="checkbox"]:checked~label::after {
  opacity: 1;
}

input[type="radio"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"]~label {
  position: relative;
  padding-left: 20px;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
  padding-left: 25px;
}

input[type="radio"]~label::before {
  content: " ";
  position: absolute;
  top: 2px;

  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #7b2bbe;
  border-radius: 50%;
}

input[type="radio"]:checked~label::before {
  background: #fff !important;
  border: #7b2bbe solid 1px !important;
}

input[type="radio"]~label::after {
  content: " ";
  position: absolute;
  opacity: 0;
  top: 4px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #7b2bbe;
  border-radius: 6px;
  border-radius: 50%;
}

input[type="radio"]:checked~label::after {
  opacity: 1;
  background-image: none !important;
}

/*  Start Buttons */

.butn {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 8px;
  position: relative;
  z-index: 3;
  transition: all 0.4s;
  cursor: pointer;
  outline: none !important;
}

.required::after {
  content: " *";
  color: #ef4444;
}

.butn:after {
  content: "";
  width: 0;

  height: 100%;
  background: transparent;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 0px;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.4s;
}

.butn-bg {
  background: #7b2bbe;
  border-color: #7b2bbe;
  color: #fff !important;
}

.butn-bg:hover {
  background: transparent;
  border-color: #7b2bbe;
  color: #7b2bbe !important;
}

.butn-bg:hover:after {
  width: 100%;
  left: 0;
  opacity: 1;

}

.butn-bg:after {
  background: #fff;
}

.butn.butn-big {
  height: 60px;
  font-weight: normal;
  font-size: 20px;
}

.butn.disabled {
  background: rgba(241, 100, 111, 0.21);
  border-color: transparent;
  color: #F1646F !important;
}

.butn-bg img {
  filter: brightness(0) invert(1);
}

.butn-bg:hover img {
  filter: none;
}

.butn-border {
  border: 1px solid #7b2bbe;
  color: #7b2bbe !important;
  background: transparent;
}

.butn-border:hover {
  border-color: #7b2bbe;
  color: #fff !important;
}

.butn-border:hover:after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.butn-border:hover img {
  filter: brightness(0) invert(1);
}

.butn-border:after {
  background: #7b2bbe;
}

/* Nav Css */

.navbar .container .row {
  flex: 1;
}

.navbar-nav .nav-link.signup_butn {
  width: 121px;
  height: 46px;
  line-height: 46px;
  padding: 0;
}

[class*="navbar-expand"] {
  padding: 15px 0;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
}

[class*="navbar-expand"] .navbar-nav .nav-item:not(:last-child) {
  margin: 0 30px 0 0;
}

[class*="navbar-expand"] .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #636949;
  padding: 0 2px;
  background: transparent;
  border: none;
}

[class*="navbar-expand"] .navbar-nav .nav-item .nav-link:hover,
[class*="navbar-expand"] .navbar-nav .nav-item .nav-link.active {
  color: #7b2bbe;
}

[class*="navbar-expand"] .navbar-nav .nav-item .nav-link.butn {
  padding: 12px 15px;
  min-width: 120px;
  text-align: center;
}

[class*="navbar-expand"] .navbar-nav .nav-item .nav-link.butn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 5px;
}

[class*="navbar-expand"] .navbar-brand,
[class*="navbar-expand"] .navbar-brand p {
  margin: 0;
  padding: 0;
  max-width: 135px;
}

.round-logo-nav [class*="navbar-expand"] {
  padding: 0 0 10px 0;
}

.round-logo-nav [class*="navbar-expand"] .navbar-brand {
  padding: 0;
  max-width: 170px;
  width: 100%;
}

.round-logo-nav [class*="navbar-expand"] .navbar-brand p {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
  border-radius: 50%;
  z-index: 9;
  margin-bottom: 0;
  max-width: none;
}

.round-logo-nav [class*="navbar-expand"] .navbar-brand p img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 15px;
}

#nav-icon2 {
  width: 40px;
  height: 28px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 99;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #7b2bbe;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 10px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 20px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 16px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 16px;
}

.menu-open .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 9;
  top: 0;
}

.menu-open #nav-icon2 span {
  background: #fff;
}

/* Login */

.font-20 {
  font-size: 14px!important;
}


.login-register .theme-from {
  max-width: 768px;
  margin: 0 auto;
}

.lr-back {
  height: 100%;
  min-height: 100vh;
  background: #ffed31;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.icon-find {
  position: relative;
}

.icon-find i {
  display: flex;
  align-items: center;
  font-size: 20px;
  position: absolute;
  left: 21px;
  top: 20px;
}

.icon-find i.fa-eye,
.icon-find i.fal.fa-eye-slash {
  left: auto;
  right: 14px;
}

.icon-find img {
  position: absolute;
  left: 20px;
  top: 15px;
}

.icon-find .form-control {
  padding-left: 60px !important;
}

.theme-from .form-control {
  min-height: 60px;
  border-radius: 8px;
}

.theme-from-02 .form-control {
  height: 70px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 2px solid #b188d3;
  font-size: 20px;
  letter-spacing: 0px;
  font-weight: 400;
}

.theme-from-02 .form-control::-webkit-input-placeholder {
  color: #d2a1f2;
}

.theme-from-02 .form-control:-ms-input-placeholder {
  color: #d2a1f2;
}

.theme-from-02 .form-control::placeholder {
  color: #d2a1f2;
}

.theme-from-02 .custom-select {
  background: #fff url("../images/next.png") right 15px center/20px 10px no-repeat !important;
}

.form-control:focus {
  border-color: #7b2bbe;
}

.or-text {
  position: relative;
  text-align: center;
}

.or-text::before {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #ced4da;
}

.or-text p {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 15px;
  color: #999;
  font-size: 16px;
}

.google-signup-butn .btn {
  display: inline-block;
  color: #000;
  font-size: 18px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  min-height: 60px;
  border-radius: 8px;
  padding: 10px 30px;
}

.google-signup-butn .btn img {
  width: 26px;
  margin-right: 8px;
}

.login-register .theme-from .nav-tabs {
  margin-bottom: 40px;
  justify-content: center;
}

.login-register .theme-from .nav-tabs .nav-item {
  width: 50%;
  text-align: center;
  position: relative;
  top: 1px;
}

.login-register .theme-from .nav-tabs .nav-link {
  border: 0;
  border-bottom: 3px solid transparent;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.login-register .theme-from .nav-tabs .nav-link.active {
  border-bottom: 3px solid #7b2bbe;
  position: relative;
  color: #7b2bbe;
}

.login-register .theme-from .nav-tabs .nav-link.active::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #7b2bbe;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.copyright {
  display: block;
  margin-top: 100px;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.copyright a {
  text-decoration: none;
  color: #ee4e44;
}

/* file-upload */

.file-upload {
  display: block;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.file-upload .file-select {
  display: block;
  border: 1px solid #ced4da;
  color: #34495e;
  cursor: pointer;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  min-height: 60px;
  border-radius: 8px;
}

.file-upload .file-select .file-select-name {
  line-height: 60px;
  display: inline-block;
  padding: 0 10px;
  font-size: 16px;
  color: #495057;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload .file-select:hover {
  border-color: #5e1899;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.file-upload .file-select:hover .file-select-name {
  color: #5e1899;
}

.file-upload.active .file-select {
  border-color: #7b2bbe;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.file-upload.active .file-select .file-select-name {
  color: #7b2bbe;
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.file-upload label.error {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 15px;
}

.file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.file-upload.drag-file-upload .file-select {
  height: auto;
  text-align: center;
  line-height: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid #ceafe2;
  padding: 40px 20px;
}

.file-upload.drag-file-upload .file-select>* {
  display: inline-block;
  width: 100%;
  line-height: normal;
  margin: 0;
  padding: 0;
  color: #fff;
}

.file-upload.drag-file-upload .file-select .file-select-name {
  font-size: 20px;
  letter-spacing: 0px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.file-upload.drag-file-upload .file-select small {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 21px;
  color: #ceafe2;
  font-weight: 400;
}


/* password */

.password-screens {
  height: 100%;
  min-height: 100vh;
  background-color: #faf8e3;
  background-image: url('../images/pass-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.round-shadow-img {
  position: relative;
}

.round-shadow-img::before {
  content: '';
  background-image: url('../images/new/shadow.png');
  position: absolute;
  width: 320px;
  height: 320px;
  z-index: 2;
  background-size: 450px;
  background-repeat: no-repeat;
  left: 50px;
  top: 50px;
}

.round-img {
  width: 270px;
  height: 270px;
  padding: 20px;
  background: #ffed31;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f8e736;
  position: relative;
  z-index: 9;
}

.text-gray {
  color: #737373;
}

/* Home Page */

.hero-sec {
  position: relative;
  margin-top: -60px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  background-color: #ffed31;
  overflow: hidden;
}

.hero-sec::after {
  content: '';
  width: 100%;
  height: 300px;
  position: absolute;
  bottom: -310px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 0 150px rgba(0, 0, 0, .7);
  border-radius: 50px;
}

.text-dark-gray {
  color: #434343;
}

.learn-butn>.butn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #5c247f;
}

.learn-butn>.butn>img {
  width: 25px;
  margin-left: 10px;
}

.watch-butn .btn {
  display: flex;
  align-items: center;
  padding: 0;
  color: #5c247f;
  font-weight: 500;
}

.watch-butn>.btn>.ripple-block {
  background: transparent;
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #7b2bbe;
  font-size: 18px;
  border: 2px solid #7b2bbe;
  position: relative;
}

.ripple.ripple-1 {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ripple.ripple-1::before,
.ripple.ripple-1::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: 50%;
}

.ripple.ripple-1:before {
  animation: ripple 3s linear infinite;
}

.ripple.ripple-1:after {
  animation: ripple 3s linear 1.5s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

#youtubeVideo .modal-dialog {
  max-width: 900px;
  padding-top: 150px;
}

#youtubeVideo .modal-dialog .modal-body {
  margin: 0;
  padding: 0;
}

#youtubeVideo .modal-dialog .modal-body iframe {
  float: left;
}

#youtubeVideo .modal-dialog .close {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 29px;
  background-color: #ffed31;
  opacity: 1;
  top: -20px;
  right: -20px;
  font-size: 30px;
  z-index: 9;
}

.search-bar {
  margin-top: -50px;
}

.hero-search-from {
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
  padding: 8px 8px 8px 25px;
  border-radius: 10px;
}

.hero-search-from>.form-group {
  flex: 1;
  margin: 0;
}
.form-group {
	position: relative;
}
.form-group span{
  position: relative;
  bottom: 12px;
  right: 17px;
  font-size: 14px;
  color: red;
}
.fal.toggle-password.fa-eye-slash,
.fal.toggle-password.fa-eye {
	position: absolute;
	right: 10px;
	top: 25px;
}

.hero-search-from>.form-group label {
  color: #868686;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

.hero-search-from>.form-group .form-control {
  border: 0;
  font-size: 18px;
  font-weight: 700;
  padding-left: 0 !important;
  color: #434343;
}

.hero-search-from .btn {
  width: 85px;
  height: 85px;
  background-color: #7b2bbe;
  border-color: #7b2bbe;
  border-radius: 10px;
}

.theme-heading {
  padding-top: 40px;
}

.theme-heading>* {
  display: inline-block;
  position: relative;
  color: #434343;
  margin-bottom: 40px;
}

.theme-heading>*::before {
  content: '';
  background-image: url(../images/paw.png);
  width: 38px;
  height: 32px;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}

.theme-heading>*::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 2px;
  bottom: -15px;
  left: 0;
  right: 0;
  background: #ffed31;
  margin: auto;
}

.how-work .hw-img {
  background: #7b2bbe;
  width: 115px;
  height: 115px;
  -ms-flex: 0 0 115px;
  flex: 0 0 115px;
  max-width: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 5px solid #e3b8ff;
}

.hw-img.hw-line {
  position: relative;
}

.hw-img.hw-line::before {
  content: '';
  background-image: url(../images/hw-line.png);
  position: absolute;
  width: 559px;
  height: 253px;
  bottom: 50%;
  z-index: -1;
}

.our-services {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.our-services .container-services {
  max-width: 1600px;
  margin: auto;
  padding: 0 15px;
}

.our-services .services-wrapper .heading .img-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  filter: drop-shadow(0px 2px 7.5px rgba(0, 0, 0, 0.1));
  background-color: #ffffff;
}

.our-services .services-wrapper .text-wrap p {
  letter-spacing: 1px;
}

.our-services .dog-img {
  filter: drop-shadow(0px 11px 6.5px rgba(0, 0, 0, .41));
}

/****About Us*****/

.about-us-home .text-part p {
  line-height: 1.7;
  color: #7c7b7b;
  font-weight: 400;
}

.about-us-home .button-wrap .butn img {
  width: 25px;
  margin-left: 10px;
  vertical-align: text-bottom;
}

.acknowledgement.about-us-home {
  background-position: bottom right;
  background-size: cover;
  background-color: #fffcdb;
  position: relative;
}

/***********/

.home-reviews .reviews-slider-wrapper {
  max-width: 1000px;
  margin: auto;
}

.home-reviews .reviews-slider-wrapper .review-wrap {
  margin: 0 0 40px 0;
}

.home-reviews .reviews-slider-wrapper .review-wrap .stars-wrap {
  color: #ffed31;
  font-size: 20px;
  margin: 0 0 20px 0;
}

.home-reviews .reviews-slider-wrapper .review-wrap .stars-wrap i {
  font-size: inherit;
}

.home-reviews .reviews-slider-wrapper .review-wrap .text-wrap p {
  font-size: 18px;
  line-height: 30px;
  color: #7c7b7b;
  font-weight: 400;
  font-style: italic;
}

.home-reviews .reviews-slider-wrapper .icon-wrap {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-reviews .reviews-slider-wrapper .icon-wrap img {
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  transition: .3s;
}

.home-reviews .reviews-slider-wrapper .slick-current .icon-wrap img {
  transform: scale(1.4);
}

.home-reviews .reviews-slider-wrapper .slick-arrow::before {
  display: none;
}

.home-reviews .reviews-slider-wrapper .slick-arrow::after {
  font-family: 'Font Awesome 5 Pro';
  font-size: 47px;
  color: #ffed31;
  font-weight: 100;
  line-height: 0.7;
}

.home-reviews .reviews-slider-wrapper .slick-arrow {
  width: 20px;
  height: 30px;
}

.home-reviews .reviews-slider-wrapper .slick-prev::after {
  content: "\f104";
}

.home-reviews .reviews-slider-wrapper .slick-prev {
  left: -15px;
  z-index: 1;
  cursor: pointer;
}

.home-reviews .reviews-slider-wrapper .slick-next::after {
  content: "\f105";
}

.home-reviews .reviews-slider-wrapper .slick-next {
  right: -15px;
}

.acknowledgement.about-us-home .acknowlegement-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 70%;
}

.acknowledgement.about-us-home::after {
  content: "";
  width: 100%;
  height: 200px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-image: url(../images/ack-shape.png);
  background-position: left bottom;
  background-repeat: no-repeat;
}

.app-screen {
  background-color: #7b2bbe;
  position: relative;
}

.app-screen .img-wrap {
  padding: 0 3vw;
}

.app-screen::after {
  content: "";
  width: 100%;
  height: 200px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-image: url(../images/app-shape.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.app-screen .text-wrap {
  padding-top: 160px;
}

.app-screen .text-wrap .main-text-wrapper {
  max-width: 570px;
}

.users-section .col-lg-6:nth-child(2) .pet-text-wrap {
  border-left: 1px solid #ededed;
}

.users-section .pet-text-wrap {
  padding: 0 3.1vw;
}

.users-section .users-data .img-wrap {
  margin: 0 0 20px 0;
}

.users-section .pet-text-wrap .text-wrap h4 {
  position: relative;
  color: #434343;
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 25px 0;
  padding: 0 0 5px 0px;
}

.users-section .pet-text-wrap .text-wrap h4::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffed31;
  margin: auto;
}

.users-section .pet-text-wrap .text-part {
  line-height: 1.7;
  color: #7c7b7b;
}

.butn.button-arrow img {
  width: 25px;
  margin-left: 10px;
  vertical-align: text-bottom;
}

.users-section .pet-text-wrap .butn {
  max-width: 180px;
  width: 100%;
}

.site-footer {
  padding-top: 40px;
  background: #7b2bbe;
}

.site-footer .footer-menu {
  margin: 0 0 40px 0;
}

.site-footer .footer-menu ul {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0px;
  color: #ffffff;
  font-weight: 400;
}

.site-footer .footer-menu ul li {
  display: inline-block;
}

.site-footer .footer-menu ul a {
  color: #fff;
  position: relative;
}

.site-footer .footer-menu ul li:not(:last-child) a {
  margin-right: 20px;
  padding-right: 20px;
}

.site-footer .footer-menu ul li:not(:last-child) a::after {
  content: "|";
  position: absolute;
  right: -1px;
  top: 0;
  line-height: 1.1;
}

.site-footer .footer-info {
  margin-bottom: 25px;
}

.site-footer .footer-info ul li a {
  color: #fff;
  align-items: center;
  font-size: 18px;
}

.site-footer .footer-info ul {
  text-align: center;
}

.site-footer .footer-info ul li {
  display: inline-block;
  margin: 0 25px;
}

.site-footer .footer-info ul li a span {
  padding-left: 10px;
}

.site-footer .footer-text {
  font-size: 15px;
  margin-bottom: 25px;
}

.site-footer .footer-text p {
  color: #fff;
}

.site-footer .copyright-text {
  padding: 15px 0;
  color: #fff;
  border-top: 1px solid #9653c3;
}

/* About us */

.theme-breadcrumbs {
  background-color: #ffed31;
}

.about-page .theme-breadcrumbs {
  position: relative;
}

.about-page .theme-breadcrumbs::before {
  content: '';
  width: 100%;
  height: 11.5%;
  background: #fff;
  position: absolute;
  bottom: 0;
}

.breadcrumb-content {
  position: relative;
  display: inline-block;
  padding: 55px 30px;
  min-width: 270px;
}

.breadcrumb-content::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/prpl.svg');
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-size: 100% 100%;
  z-index: 2;
  background-repeat: no-repeat;
}

.breadcrumb-content::after {
  content: '';
  position: absolute;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  background-image: url('../images/border.svg');
  top: 20px;
  bottom: 0;
  left: 5px;
  right: 0;
  margin: auto;
  background-size: 100% 100%;
  z-index: 1;
}

.breadcrumb-content>* {
  position: relative;
  z-index: 9;
  color: #fff;
  margin-bottom: 0;
}

.why-us-wrapper .why-us-inner .img-wrap {
  width: 75px;
  height: 75px;
  background: #7b2bbe;
  border-radius: 50%;
  border: 3px solid #fff;
  flex-shrink: 0; /* Prevent shrinking */
  margin-right: 15px; /* Add consistent spacing */
}

.why-us-list .col-lg-6 .why-us-wrapper .why-us-inner:first-child,
.why-us-list .col-lg-6 .why-us-wrapper .why-us-inner:last-child {
  position: static !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
}

.why-us-list .why-us-inner {
  margin-bottom: 2rem !important;
}

@media (max-width: 991.98px) {
  .why-us-list .why-us-inner {
    margin-bottom: 1.5rem !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
  }
}

.small-heading h4 {
  position: relative;
  padding: 0 0 15px 0;
}

.small-heading h4::after {
  content: "";
  width: 54px;
  height: 2px;
  background-color: #ffed31;
  position: absolute;
  bottom: 0;
  left: 0;
}

.for-pet-owners {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.how-to-user .list-wrap .list-item {
  align-items: center;
  counter-increment: list-counter;
}

.how-to-user .list-wrap .list-item .icon-wrap {
  width: 100px;
  height: 100px;
  padding: 33px 30px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.how-to-user .list-wrap .list-item .icon-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/about/list-shape.png);
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100% auto;
  z-index: 1;
  filter: drop-shadow(-8px -2px 0px #8963c2);
}

.how-to-user .list-wrap.list-right .list-item .icon-wrap::before {
  filter: drop-shadow(6px -3px 0px #8963c2);
  background-image: url(../images/about/list-shape-right.png);
}

.how-to-user .list-wrap.list-right .list-item .icon-wrap::after {
  left: auto;
  right: 10px;
}

.how-to-user .list-wrap .list-item .icon-wrap img {
  z-index: 2;
  position: relative;
}

.how-to-user .list-wrap .list-item p {
  margin: 0;
  max-width: 360px;
}

.how-to-user .list-wrap .list-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.for-pet-owners .how-to-user .list-item:nth-child(even),
.for-rvts .how-to-user .list-item:nth-child(odd) {
  padding-left: 60px;
}

.how-to-user .list-wrap {
  counter-reset: list-counter;
}

.how-to-user .list-wrap .list-item .icon-wrap::after {
  content: counter(list-counter);
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #c283ff;
  border: 3px solid #7b2bc8;
  text-align: center;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  font-weight: 400;
  left: 10px;
  top: 0;
}

.how-to-user .list-wrap.list-right .list-item .icon-wrap {
  padding: 33px 30px 33px 22px;
}

.for-rvts .how-to-user .list-wrap .list-item .icon-wrap::before {
  filter: drop-shadow(6px -3px 0px rgba(93, 90, 99, 0.2)) !important;
}

.for-rvts .how-to-user .list-wrap .list-item .icon-wrap::after {
  border-color: #fff;
  color: #434343;
  background-color: #e8dff0;
}

.newsletter-section {
  max-width: 630px;
  margin: auto;
  position: relative;
}

.newsletter-section input {
  border-radius: 34px;
  filter: drop-shadow(0px 13px 28.5px rgba(0, 11, 18, 0.1));
  background-color: #ffffff;
  border: none;
  padding: 20px 80px 20px 40px;
  height: auto;
}

.newsletter-section .send-btn {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

/*******************Profile Page************************/

.profileimage {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0px 0px 0px 3px rgba(255, 237, 49, 0.4);
  background: transparent;
  border: 3px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}

.profileimage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

ul.sociallinks li a {
  background: #ffed31;
  margin: 10px 5px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: block;
  line-height: 49px;
  text-align: center;
  border: 2px solid #832bc8;
}

.banner-top {
  background-image: linear-gradient(rgba(123, 43, 190, 0.9), rgba(123, 43, 190, 0.9)), url(../images/profile-banner.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top 60% center;
  position: relative;
  /* z-index: 0; */
}

.banner-top::after {
  background: #fff;
  height: 38%;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.banner-top .stars-wrap {
  color: #ffed31;
  font-size: 14px;
}

.text-yellow {
  color: #ffed31;
}

.lighbg-butn {
  padding: 8px 20px;
  font-size: 14px;
  background: #944fcc;
  border-color: #944fcc;
}

.services-list li div {
  width: 97px;
  height: 97px;
  border: 1px solid #7b2bbe;
}
.profile-img-wrapper {
  padding: 15px;
}
.profile-img-wrapper img{
  width:100%;
  height: 100%;
  object-fit: contain;
}
.text-purple {
  color: #5c2580;
}

.mystory {
  background-color: #f7f4f9;
  background-position: left;
  background-size: 100%;
}

.service-wrap {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.our-services .slick-slide {
  padding: 15px;
}

.service-wrap a.butn.butn-white {
  background: #e2ceff;
  border-radius: 30px;
  padding: 8px 20px;
  width: max-content;
  min-width: 140px;
  margin: auto auto -38px auto;
  border-color: #e2ceff;
  color: #5c2580 !important;
  overflow: hidden;
}

.service-wrap p {
  color: #e6d0f9;
}

.our-services .slick-prev.slick-arrow::before,
.our-services .slick-next.slick-arrow::before {
  content: url(../images/prev-.png);
}

.our-services .slick-next.slick-arrow {
  transform: rotate(180deg);
}

.service-wrap:hover a.butn.butn-white {
  background: #ffed31;
  border-color: #ffed31;
}

.service-wrap:hover .serviceicon {
  background: url(../images/services/servicebghover.png);
  background-repeat: no-repeat;
}

.service-wrap .serviceicon {
  background: url(../images/services/servicebg.png);
  width: 145px;
  height: 145px;
  background-repeat: no-repeat;
}

/**********/
header.header-wrapper {
  top: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
}

body.round-logo-nav .header-wrapper [class*="navbar-expand"] {
  box-shadow: none;
}

header.header-wrapper.fixed {
  position: fixed;
  -webkit-animation: headerSlideDown .95s ease forwards;
  animation: headerSlideDown .95s ease forwards;
  background: #fff;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
}

.round-logo-nav header.header-wrapper.fixed [class*="navbar-expand"] {
  padding: 15px 0;
}

.round-logo-nav .header-wrapper.fixed [class*="navbar-expand"] .navbar-brand p {
  padding: 0;
  max-width: 135px;
  text-align: center;
  margin: auto;
  background-color: transparent;
  border-radius: 0;
}

.round-logo-nav .header-wrapper.fixed [class*="navbar-expand"] .navbar-brand p img {
  position: relative;
  padding: 0;
}

/* ------------------------
    Custom Animation 01
----------------------------*/

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  to {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  to {
    margin-top: 0;
  }
}

.error {
  color: red;
}

.rvt_err {
  color: red;
}

.rvt_e_er {
  color: red;
}

.err {
  color: red;
}

.er {
  color: red;
}

label.error {
  font-size: 15px !important;
  color: red !important;
  padding: 0 !important;
  display: block;
}

label.error::before, label.error::after {
  display: none;
}

.contact-us-form .theme-from {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .13);
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .contact-us-form .theme-from {
    padding: 15px;
  }
}


.errorlist {
  color: red;
}

.data-static-page p {
  max-width: 650px;
  line-height: 1.6;
  margin: 0 auto 24px;
  font-size: 16px;
  color: #737373;
}

.reviews-slider-wrapper{
  cursor: grab;
}
.slick-prev:before, .slick-next:before {
  color: #7b2bbe!important;
  font-size: 35px!important;
}

.no-data-msg{
  font-size: 16px;
  color: #2FCBD3;
}

.slider-nav .slick-track{
  transform: none !important;
}

.select-tag-eclipse select{
  text-overflow: ellipsis;
  padding-right: 21px!important;
}
