/********************************************************** */

/**********************  Envotek ************************ */

/**********************************************************

    TABLE OF CONTENT
    ========================

    01. Default CSS
    02. Hero Section
    03. Service Section
    04. Partner Section
    05. Choose Us Section
    06. Project Section
    07. Testimonial Section
    08. Call To Action
    09. Blog Section
    10. Page Banner
    11. About Us
    12. About Page Choose Us
    13. Team Section
    14. Service Details
    15. Project Details
    16. Blog Details
    17. Contact Section
    18. Main Footer


/****************************************************** */

/*******************  01. Default CSS ***************** */

/****************************************************** */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #68616d;
  font-size: 17px;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1f0039;
  font-weight: 700;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

button,
button:focus {
  outline: 0;
  border: none;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.logo {
  width: 200px;
}

/* ------------------------------------------------------------------------ */

.chooseus-list-about ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chooseus-list-about li {
  position: relative;
  background: #f8f8f8;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.chooseus-list-about ul li i {
  height: 30px;
  padding: 5px 10px;
  background: #f5caf5;
  font-size: 20px;
  color: #921ff6;
  font-weight: 600;
  margin-right: 15px;
}

.chooseus-list-about li:hover {
  background: #eaeaea;
}

.chooseus-list-about .dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-left: 3px solid #921ff6;
  padding: 0 10px;
  margin-top: 10px !important;
}

/* Show on hover */
.chooseus-list-about li:hover .dropdown-content {
  max-height: 600px;
  padding: 10px;
}

/* Inner dropdown list styling */
.dropdown-content-about ul {
  list-style: disc !important;
  padding-left: 20px;
}

.dropdown-content-about li {
  padding: 5px 10px;
}

/* ---------------------------------------------------------------------------- */

/*** Preloader style ***/

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.gif);
  background-size: 240px 200px;
}

.theme-btn {
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  background: #921ff6;
  color: #ffffff;
  border-radius: 5px;
  text-transform: capitalize;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.theme-btn i {
  padding-left: 15px;
}

.theme-btn:hover {
  border-color: #921ff6;
  color: #921ff6;
  background: transparent;
}

.theme-btn:focus {
  box-shadow: none;
  border: 2px solid #921ff6;
}

.section-title {
  /* max-width: 500px; */
  margin: auto;
  margin-bottom: 55px;
}

.section-title span {
  color: #921ff6;
  font-size: 14px;
  font-weight: 600;
  /* margin-bottom: 20px; */
  display: inline-block;
  text-transform: uppercase;
}

.section-title h2 {
  line-height: 1.38;
  font-size: 30px;
}

.section-title h3 {
  line-height: 1.38;
  font-size: 20px;
}

.section-title h3 span {
  font-size: 30px !important;
}

/****************************************************** */

/*******************  02. Hero Section **************** */

/****************************************************** */

.hero-section {
  position: relative;
  z-index: 1111;
  height: 850px;
  display: flex;
  align-items: center;
  margin-top: 100px;
  background-size: cover;
  background-position: center;
  /* background-image: url(../images/about/psMagnet-main-banner.jpg); */
  background-image: url(../images/about/ps-media-main-banner.jpg);
}

.hero-section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.65;
  background: #254c62;
}

.hero-section .hero-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27%;
  z-index: -2;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 55px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content p {
  color: #f0eff0;
  font-size: 20px;
  margin-bottom: 45px;
}

/****************************************************** */

/*****************  03. Service Section *************** */

/****************************************************** */

.service-item {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 15px 30px;
  margin-bottom: 50px;
  transition: all 0.3s;
  background: linear-gradient(to right, #f5caf5, #ffffff);
}

.service-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #921ff6, #ffffff);
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
}

.service-item:hover::after {
  opacity: 1;
}

.service-item .serv-iconimg {
  transition: 0.5s;
}

.service-item:hover .serv-iconimg {
  filter: brightness(0) invert(1);
}

.service-item .serv-iconimg img {
  width: 70%;
}

.serv-content {
  margin-left: 30px;
}

.serv-content h5 {
  line-height: 1.47;
  font-size: 18px;
  margin-bottom: 0;
}

.serv-content h5 a {
  color: #1f0039;
  font-weight: 700;
  transition: 0.5s;
}

.serv-content h5 a:hover {
  color: #ffffff;
}

.service-img {
  position: relative;
  z-index: 111;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  height: calc(100% - 50px);
  background-position: center;
  background-image: url("../images/service/service1-img.jpg");
}

.service-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #1f0039, transparent 70%);
}

.service-details-btn {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 999;
  text-align: center;
}

/****************************************************** */

/*****************  04. Partner Section *************** */

/****************************************************** */

.partners-group {
  padding: 70px;
  background: #f5caf5;
  border-bottom: 5px solid #ffa8a0;
}

.partner-logo {
  text-align: center;
}

.partner-logo a {
  opacity: 0.5;
  transition: 0.5s;
  filter: invert(55%) sepia(67%) saturate(4744%) hue-rotate(334deg)
    brightness(100%) contrast(98%);
}

.partner-logo a:hover {
  opacity: 1;
}

/****************************************************** */

/****************  05. Choose Us Section ************** */

/****************************************************** */

.chooseus-left-content {
  position: relative;
}

.chooseus-img {
  padding-right: 170px;
}

.chooseus-left-content .experience-years {
  position: absolute;
  top: -145px;
  transform: rotate(0deg);
}

.experience-years h1 {
  font-size: 65px;
  color: #921ff6;
}

.experience-content {
  position: absolute;
  padding: 35px 30px 25px 45px;
  margin: 2vh;
  max-width: 370px;
  /* left: 140px;
    bottom: 40px; */
  background: #f5caf5;
  border-bottom: 5px solid #ffa8a0;
  border-right: 5px solid #ffa8a0;
  border-radius: 0px 50px 0px 50px;
  z-index: 1;
}

.experience-content blockquote {
  color: #1f0039;
  margin-bottom: 0;
}

.quotation-icon {
  position: absolute;
  top: -25px;
  left: 45px;
  max-width: 60px;
}

.chooseus-right-content {
  max-width: 520px;
  margin-left: auto;
}

.chooseus-right-content .section-title {
  margin: 0;
  margin-bottom: 55px;
}

.chooseus-list ul li {
  margin-bottom: 30px;
  color: #68616d;
  font-weight: 500;
}

.chooseus-list ul li i {
  height: 30px;
  padding: 5px 10px;
  background: #f5caf5;
  font-size: 20px;
  color: #921ff6;
  font-weight: 600;
  margin-right: 15px;
}
.chooseus-list ul li h6 {
  color: grey;
}

.chooseus-right-content blockquote,
.about-choose-us-left blockquote {
  color: #1f0039;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
}

.chooseus-right-content p,
.about-choose-us-left p {
  margin-bottom: 0;
}

/****************************************************** */

/*****************  06. Project Section *************** */

/****************************************************** */

.project-section {
  background: linear-gradient(to left, #e5d7e5, #ffffff);
}

.project-item {
  margin-bottom: 50px;
}

.project-right-item {
  position: relative;
  height: calc(100% - 50px);
  min-height: 400px;
  /* background: url(../images/project/project5.jpg); */
  background: url(../images/project/mobile-app-2.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 30px;
}

.project-right-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #1f0039, transparent 70%);
}

.project-right-item .project-content {
  margin-top: 0;
}

.project-image img {
  width: 100%;
  height: 220px;
}

.project-content {
  position: relative;
  height: 80px;
  padding: 10px 30px;
  margin: 0 30px;
  margin-top: -35px;
  display: flex;
  align-items: center;
  z-index: 1;
  transition: all 0.3s;
  background: linear-gradient(to right, #f5caf5, #ffffff);
}

.project-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
  background: linear-gradient(to right, #921ff6, #ffffff);
}

.project-content:hover::after {
  opacity: 1;
}

.project-icon {
  padding: 9px 14px;
  background: #ffffff;
  border: 1px solid #ffcec9;
}

.project-icon i {
  font-size: 18px;
  color: #921ff6;
}

.project-content h5 {
  line-height: 1.6;
  margin-left: 30px;
  margin-bottom: 0;
}

.project-content h5 a {
  color: #1f0039;
  transition: 0.5s;
}

.project-content h5 a:hover {
  color: #ffffff;
}

/****************************************************** */

/***************  07. Testimonial Section ************* */

/****************************************************** */

.testimonial-section {
  background: #ffffff;
}

.testimonial-section .section-title {
  max-width: 540px;
}

.testimonial-item {
  padding-top: 13px;
}

.testimonial-inner {
  position: relative;
  padding: 65px 40px 40px 50px;
  background: linear-gradient(to right, #f5caf5, #ffffff);
  z-index: 11;
}

.testimonial-inner::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 50px;
  bottom: -15px;
  border-left: 20px solid transparent;
  border-right: 0px solid transparent;
  border-top: 15px solid #f5caf5;
  z-index: -1;
}

.quotation-img {
  position: absolute;
  top: -15px;
  left: 50px;
}

.testimonial-content p {
  color: #453f4a;
  font-size: 16px;
  margin-bottom: 0;
}

.testimonial-imgbox {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-left: 35px;
}

.testimonial-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.testimonial-imgdetails {
  margin-left: 25px;
}

.testimonial-imgdetails span {
  color: #453f4a;
  font-size: 15px;
  margin-top: 10px;
  font-weight: 500;
  display: block;
}

.testimonial-section .slick-dots {
  display: flex;
  margin-top: 60px;
  justify-content: center;
}

.testimonial-section .slick-dots li {
  margin: 0 10px;
}

.testimonial-section .slick-dots li button {
  width: 10px;
  height: 10px;
  z-index: 1;
  text-indent: 2000px;
  border-radius: 50%;
  position: relative;
}

.testimonial-section .slick-dots li button:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f5caf5;
  transition: all 0.5s;
}

.testimonial-section .slick-dots li.slick-active button:before {
  background: #921ff6;
}

.testimonial-section .slick-dots li button:after {
  position: absolute;
  content: "";
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  z-index: -1;
  opacity: 0;
  border-radius: 50%;
  background: #f5caf5;
  transition: all 0.5s;
}

.testimonial-section .slick-dots li.slick-active button:after {
  opacity: 1;
}

/****************************************************** */

/*****************  08. Call To Action **************** */

/****************************************************** */

.cta-section {
  /* background: linear-gradient(to bottom, #f5caf5, #ffffff); */
  padding: 20px;
}

.cta-section.bg-white {
  background: #ffffff;
}

.contact-withus {
  position: relative;
  padding: 50px 100px;
  background: url(../images/cta-bg.jpg);
  background-position: center;
  background-size: cover;
  border-bottom: 5px solid #f156f1;
  z-index: 1;
  border-radius: 20px;
}

.contact-withus::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.95;
  background: #1f0039;
  border-radius: 20px;
}

.contact-withus-content {
  max-width: 480px;
}

.contact-withus-content h3 {
  color: #ffffff;
  line-height: 1.43;
  margin-bottom: 0;
}

.contact-withus-num {
  text-align: right;
}

.contact-withus-num .contact-number {
  font-size: 25px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  /* transition: all 0.3s; */
}

.contact-withus-num .contact-number:hover {
  color: #921ff6;
}

/****************************************************** */

/******************  09. Blog Section ***************** */

/****************************************************** */

.blog-section .section-title {
  max-width: 480px;
}

.blog-item {
  display: flex;
  margin-bottom: 50px;
}

.blog-image {
  background-size: cover;
  background-position: center;
  flex: none;
  width: 195px;
}

.blog-content {
  margin-left: 5px;
  padding: 40px 40px 38px 50px;
  background: linear-gradient(to right, #f5caf5, #ffffff);
}

.blog-content .date {
  color: #921ff6;
  font-weight: 600;
}

.blog-content h5 {
  margin: 10px 0;
  line-height: 1.6;
}

.blog-content h5 a {
  color: #1f0039;
  transition: 0.5s;
}

.blog-content h5 a:hover {
  color: #921ff6;
}

.blog-content p {
  margin-bottom: 0;
}

/****************************************************** */

/******************  10. Page Banner ****************** */

/****************************************************** */

.page-banner {
  height: 410px;
  display: flex;
  align-items: center;
  position: relative;
  /* margin-top: 100px; */
  margin-bottom: 25px;
  background: url(../images/banner-bg.jpg);
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.page-banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.65;
  background-color: #254c62;
}

.banner-content h2 {
  font-size: 55px;
  color: #ffffff;
  margin-bottom: 0;
}

.page-breadcrumb .breadcrumb {
  max-width: 370px;
  background: #921ff6;
  border-radius: 5px;
  margin-bottom: 0;
  padding: 14px 25px;
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
}

.breadcrumb .breadcrumb-item {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb .breadcrumb-item a {
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\ea7c";
  color: #ffffff;
  font-family: IcoFont;
  margin-right: 5px;
  margin-left: 5px;
}

/****************************************************** */

/********************  11. About Us ******************* */

/****************************************************** */

.about-left {
  position: relative;
  max-width: 535px;
  padding-bottom: 75px;
}

.about-left .experience-years {
  position: absolute;
  top: -120px;
  padding-top: 12px;
  transform: rotate(0deg);
}

.about-image {
  position: relative;
  z-index: -2;
  padding-top: 20px;
}

.about-image-two {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-image-two:before {
  position: absolute;
  content: "";
  top: -25px;
  left: -25px;
  width: 100px;
  height: 100px;
  z-index: -1;
  background: #921ff6;
  clip-path: polygon(100% 0, 0 100%, 0 0);
}

.about-us-content {
  max-width: 540px;
  margin-left: auto;
}

.about-us-content .section-title {
  max-width: 100%;
  margin: 0;
  margin-bottom: 45px;
}

.about-us-content p {
  color: #68616d;
  margin-bottom: 20px;
}

.about-us-content p:last-child {
  margin-bottom: 0;
}

.about-us-content blockquote {
  color: #1f0039;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/****************************************************** */

/*************  12. About Page Choose Us ************** */

/****************************************************** */

.about-video-area {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/about/ps-about.jpg);
  background-position: center;
  margin-bottom: 50px;
  z-index: 1;
}

.about-video-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.65;
  /* background: #254c62; */
}

.video-play {
  width: 90px;
  height: 90px;
  opacity: 0.75;
  line-height: 90px;
  border-radius: 50%;
  text-align: center;
  background: #921ff6;
  display: inline-block;
}

.video-play i {
  color: #ffffff;
  font-size: 18px;
  line-height: 90px;
}

.about-choose-us-left {
  max-width: 520px;
}

.about-choose-us-left .section-title {
  margin-left: 0;
}

.about-choose-us-right {
  max-width: 560px;
  margin-left: auto;
}

.about-choose-us-right h2 {
  line-height: 1.38;
  margin-bottom: 45px;
}

.about-choose-us-right h2 span {
  color: #921ff6;
}

.about-choose-us-right p {
  margin-bottom: 22px;
}

.about-choose-us-right .theme-btn {
  margin-top: 30px;
}

/****************************************************** */

/*****************  13. Team Section ****************** */

/****************************************************** */

.team-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.team-wrap:before,
.team-wrap:after {
  position: absolute;
  top: 0;
  left: 31.33%;
  content: "";
  width: 1px;
  height: 100%;
  background: #ece7f1;
}

.team-wrap:after {
  left: 68.66%;
}

.border-shap {
  position: absolute;
  width: 100%;
  height: 100%;
}

.border-shap:before,
.border-shap:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 31.33%;
  width: 1px;
  height: 100px;
  background: #921ff6;
  transform: translateY(-50%);
}

.border-shap:after {
  left: 68.66%;
  z-index: 1;
}

.team-member {
  position: relative;
  max-width: 300px;
  width: 27%;
}

.member-image {
  position: relative;
}

.member-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #1f0039, transparent 70%);
}

.member-desc {
  position: absolute;
  left: auto;
  bottom: 30px;
  margin: 0 27.5px;
  width: calc(100% - 55px);
  padding: 18px 30px 16px 35px;
  background: linear-gradient(to right, #f5caf5, #ffffff);
}

.member-desc span {
  color: #1f0039;
  font-size: 14px;
  display: block;
}

/****************************************************** */

/****************  14. Service Details **************** */

/****************************************************** */

/* Service Sidebar */

.service-sidebar {
  max-width: 300px;
}

.sidebar-widget {
  margin-bottom: 60px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.service-widget {
  padding: 40px 30px 45px;
  /* background: #FFEFED; */
}

.service-widget h4 {
  text-align: center;
  margin-bottom: 35px;
}

.service-widget ul li {
  margin-bottom: 17px;
}

.service-widget ul li:last-child {
  margin-bottom: 0;
}

.service-widget ul li a {
  display: block;
  font-size: 16px;
  color: #4c4254;
  padding: 14px 25px;
  background: #ffffff;
  transition: all 0.3s;
}

.service-widget ul li a:hover {
  color: #ffffff;
  background: #921ff6;
}

.service-video-widget {
  position: relative;
  padding: 190px 45px 25px;
  background: url(../images/service/video-widget-bg.jpg);
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.service-video-widget::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to top, #1f0039, transparent 70%);
}

.service-video-widget .video-play {
  margin-bottom: 82px;
}

.project-text h4 {
  color: #ffffff;
  line-height: 1.6;
}

.project-text a {
  color: #921ff6;
  font-weight: 700;
  font-size: 30px;
}

/* Service Right Content */

.service-details-content {
  margin-left: -30px;
}

.service-details-image {
  position: relative;
  margin-bottom: 95px;
}

.service-details-image .video-play {
  position: absolute;
  bottom: -35px;
  left: 50%;
  width: 75px;
  height: 75px;
  opacity: 1;
  border-radius: 0;
  line-height: 70px;
  border: 5px solid #ffffff;
  transform: translateX(-50%);
}

.service-details-image .video-play:before {
  position: absolute;
  content: "";
  left: -15px;
  top: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background: transparent;
  border: 1px solid #fc55464d;
}

.service-details-image .video-play i {
  line-height: 70px;
}

.service-details-content h2 {
  margin-bottom: 28px;
}

.service-details-content p {
  margin-bottom: 28px;
}

.service-details-content p:last-child {
  margin-bottom: 0;
}

.service-details-content blockquote {
  color: #1f0039;
  font-size: 18px;
  font-weight: 700;
}

.work-part-content {
  margin: 45px 0;
}

.work-left {
  position: relative;
  max-width: 340px;
  padding-bottom: 90px;
}

.work-image {
  position: relative;
  z-index: -2;
}

.work-image-two {
  position: absolute;
  right: 0;
  bottom: 0;
}

.work-image-two:before {
  position: absolute;
  content: "";
  top: -15px;
  left: -15px;
  width: 75px;
  height: 75px;
  z-index: -1;
  background: #921ff6;
  clip-path: polygon(100% 0, 0 100%, 0 0);
}

.work-content {
  margin-left: -22px;
}

.work-content p:last-child {
  margin-bottom: 0;
}

/****************************************************** */

/****************  15. Project Details **************** */

/****************************************************** */

.project-details-content-inner {
  max-width: 1030px;
  margin: 0 auto;
}

.project-details-image {
  margin-bottom: 50px;
}

.project-info-box {
  padding: 20px 100px;
  background: #f5caf5;
  border: 4px solid #feddda;
  margin-bottom: 50px;
}

.project-info-text {
  margin-left: 25px;
}

.project-info-text h4 {
  line-height: 1.8;
  margin-bottom: 0;
}

.client-content li {
  color: #4c4254;
  font-size: 15px;
  line-height: 2.35;
}

.client-content li span {
  color: #921ff6;
  font-weight: 700;
  width: 75px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
}

.client-content li span:before {
  content: ":";
  position: absolute;
  top: 0;
  right: 0;
}

.client-content li a {
  color: #4c4254;
}

.project-details-content-inner h2 {
  margin-bottom: 30px;
}

.project-details-content-inner p {
  margin-bottom: 22px;
}

.project-details-content-inner blockquote {
  color: #1f0039;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
}

.project-result-area {
  margin: 50px 0 40px;
}

.project-result-video {
  position: relative;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/project/project-result1.jpg);
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.project-result-video::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to top, #1f0039, transparent 70%);
}

.related-project {
  margin-top: 50px;
}

.related-project h2 {
  margin-bottom: 38px;
}

.related-project .project-item .project-content {
  margin: 0;
  margin-top: 10px;
}

/****************************************************** */

/******************  16. Blog Details ***************** */

/****************************************************** */

/* Blog Sidebar */

.search-box {
  padding: 20px 25px;
  background: #921ff6;
  border-radius: 5px;
}

.search-box .form-group {
  margin: 0;
  position: relative;
}

.search-box input {
  width: 100%;
  height: 55px;
  border: none;
  padding: 20px;
  color: #666666;
  font-size: 16px;
  border-radius: 5px;
}

.search-box input:focus {
  outline: none;
}

.search-box button {
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: 20px;
  background: transparent;
  transform: translateY(-50%);
}

.search-box button i {
  color: #921ff6;
  font-size: 15px;
}

.blog-sidebar .sidebar-widget h4 {
  padding-bottom: 28px;
  margin-bottom: 50px;
  border-bottom: 1px dashed #fc5748;
}

.blog-catagory {
  padding: 40px 30px;
  background: #f5caf5;
  border-radius: 5px;
}

.course-module ul li {
  margin-bottom: 14px;
}

.course-module ul li:last-child {
  margin-bottom: 0;
}

.course-module ul li i {
  color: #921ff6;
  font-size: 18px;
  font-weight: 600;
  margin-right: 15px;
  transition: all 0.3s;
}

.course-module ul li span {
  float: right;
}

.course-module ul li a {
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s;
}

.course-module ul li a:hover {
  color: #921ff6;
}

.course-module ul li a:hover i {
  margin-right: 17px;
}

.archive-post {
  padding: 40px 30px;
  background: #f5caf5;
  border-radius: 5px;
}

.posting-content {
  margin-bottom: 25px;
}

.posting-content:last-child {
  margin-bottom: 0;
}

.posting-date p {
  color: #fc5f51;
  font-size: 16px;
  margin-bottom: 10px;
}

.posting-date p i {
  margin-right: 15px;
}

.posting-content h6 {
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.posting-content h6 a {
  color: #1f0039;
  transition: 0.5s;
}

.posting-content h6 a:hover {
  color: #921ff6;
}

.blog-video-widget {
  position: relative;
  height: 545px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  z-index: 1;
  background: url(../images/blog/video-widget-bg.jpg);
  background-position: center;
  background-size: cover;
}

.blog-video-widget::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to top, #1f0039, transparent 70%);
}

/* Blog Details Content */

.blog-details-content {
  max-width: 715px;
  margin-left: auto;
}

.blog-details-image {
  position: relative;
  margin-bottom: 45px;
}

.blog-publish-date {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 10px;
  line-height: 1.3;
  text-align: center;
  border-radius: 10px;
  background: #fc5f51;
}

.blog-publish-date span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.blog-details-content h3 {
  font-size: 34px;
  margin-bottom: 33px;
}

.blog-details-content p {
  margin-bottom: 27px;
}

.blog-details-content blockquote {
  color: #1f0039;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 27px;
}

.blog-middle-image {
  margin-top: 45px;
  margin-bottom: 40px;
}

.tags {
  padding: 20px;
  background: #f5caf5;
  text-align: center;
  margin: 55px 0 95px;
}

.tags ul li {
  color: #921ff6;
  font-size: 15px;
  font-weight: 700;
  margin-right: 4px;
  display: inline-block;
}

.tags ul li a {
  color: #1f0039;
  font-weight: 500;
  transition: all 0.3s;
}

.tags ul li a:hover {
  color: #921ff6;
}

.comment-box h4 {
  font-size: 28px;
  margin-bottom: 55px;
}

.comment {
  display: flex;
  margin-bottom: 60px;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment.style-two {
  margin-left: 130px;
}

.commenter-image {
  width: 100px;
  flex: none;
}

.commenter-info {
  margin-left: 40px;
}

.commenter-info-top {
  display: flex;
  margin-bottom: 17px;
  justify-content: space-between;
}

.commenter-info h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

.commenter-info span {
  color: #1f0039;
  font-size: 15px;
  display: inline-block;
}

.commenter-info .comment-reply {
  color: #921ff6;
  font-weight: 600;
}

.commenter-info .comment-reply i {
  margin-right: 10px;
}

.service-title h4{
  font-size: 22px;
}

.drop-up .item p {
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
   transition: border-color 0.3s ease;
  /* margin: 0; */
}
.drop-up .item p:hover {
  font-size: 16px;
  color: #921ff6;;
  border-bottom: 1px solid #921ff6;;
  /* width: 57%; */
}

.commenter-info p {
  color: #706a75;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.blog-comment-form {
  margin-top: 65px;
}

.blog-comment-form h4 {
  font-size: 28px;
  margin-bottom: 55px;
}

/* Comment Form */

.custom-input {
  height: 60px;
}

.custom-input,
.custom-textarea {
  padding: 20px 30px;
  color: #454d5d;
  font-size: 16px;
  border-radius: 0;
  /* background: #aa8df7; */
  /* margin-bottom: 30px; */
  transition: all 0.3s;
  border: 1px solid #921ff6;
}

.custom-input:focus,
.custom-textarea:focus {
  box-shadow: none;
  /* background: #f5caf5; */
  border: 1px solid #921ff6;
}

.custom-textarea {
  resize: none;
}

.submit {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  padding: 15px 25px;
  text-align: center;
  background: #921ff6;
  transition: all 0.3s;
}

.submit:hover {
  color: #921ff6;
  background: transparent;
  border: 1px solid #921ff6;
}

.submit:focus {
  box-shadow: none;
}

.submit i {
  padding-left: 10px;
}

/****************************************************** */

/*****************  17. Contact Section *************** */

/****************************************************** */

.get-touch-left {
  max-width: 400px;
  background: #aa8df7;
  border-radius: 10px;
  padding: 90px 40px 45px;
}

.info-box {
  display: flex;
  margin-bottom: 22px;
}

.info-icon {
  margin-right: 25px;
}

.info-icon i {
  color: #921ff6;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-size: 19px;
  border-radius: 50%;
}

.info-details p {
  color: #454049;
  font-size: 15px;
  margin-bottom: 0;
}
.info-details h4 {
  color: white;
}

.info-details a {
  /* color: #454049; */
  color: white;
  display: block;
  font-size: 15px;
  line-height: 1.9;
}

.info-details a:hover {
  color: #921ff6;
}

.get-touch-img {
  margin-top: 73px;
}
.get-touch-img img {
  border-radius: 20px;
}
.get-touch-right h3 {
  margin-bottom: 50px;
}

.get-touch-right .custom-input,
.get-touch-right .custom-textarea {
  border-radius: 5px;
}

/* Contact Page Map */

.map-inner .map {
  height: 590px;
}

.leaflet-bottom.leaflet-right {
  display: none;
}

/****************************************************** */

/*******************  18. Main Footer ***************** */

/****************************************************** */

.footer-wrap {
  background: linear-gradient(to top, #f5caf5, #fff9f9);
}

.footer-content-item .footer-logo {
  width: 250px !important;
}
.footer-content-item .footer-logo .logo img {
  width: 100%;
}

.footer-widget {
  margin-bottom: 50px;
}

.footer-widget h4 {
  margin-bottom: 15px;
  padding-top: 30px;
}

.footer-widget.quick-links {
  /* max-width: 175px; */
}

.quick-links ul li {
  line-height: 2.5;
  font-size: 16px;
}

.quick-links ul li i {
  padding-right: 25px;
}

.quick-links ul li a {
  color: #453f4a;
  transition: all 0.3s;
}

.quick-links ul li a:hover {
  color: #921ff6;
}

.footer-widget.latest-post {
  margin-right: -25px;
}

.footer-widget.latest-post h4 {
  margin-bottom: 42px;
}

.latest-post .post-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.post-item .post-image {
  width: 75px;
  flex: none;
}

.post-item .post-content {
  margin-left: 30px;
}

.post-item .post-content h6 {
  font-size: 17px;
  margin-bottom: 5px;
  line-height: 1.55;
}

.post-item .post-content h6 a {
  color: #453f4a;
  font-weight: 400;
  transition: all 0.3s;
}

.post-item .post-content h6 a:hover {
  color: #921ff6;
}

.post-item .post-content span {
  color: #921ff6;
  font-size: 14px;
}

.footer-widget.support,
.footer-widget.company a {
  text-decoration: none;
  color: #453f4a;
}

.footer-widget.company i {
  color: #921ff6;
}

/** Copyright Area **/

.copy-right-area {
  padding: 8px 0px;
}

.copy-right-text p {
  color: #1f0039;
  margin-bottom: 0;
  font-size: 14px;
}

.copy-right-text p span {
  color: #921ff6;
}

/*** Scroll Top style ***/

.scroll-top {
  z-index: 99999;
  width: 50px;
  height: 50px;
  right: 40px;
  bottom: 40px;
  color: white;
  display: none;
  cursor: pointer;
  position: fixed;
  font-size: 24px;
  border-radius: 50%;
  background: #921ff6;
  animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
}

.social-icon {
  display: flex;
  gap: 20px;
}

.social-icon .icon-main a h3 {
  font-size: 15px;
}

.social-icon .icon-main i {
  transition: color 0.3s ease;
}

/* Facebook */
.social-icon .fa-facebook-f {
  color: white;
  width: 30px;
  height: 30px;
  background-color: #1350b9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
}
.social-icon .fa-facebook-f:hover {
  /* color: #0a3a85; */
  border-radius: 50%;
}

/* Instagram */
.social-icon .fa-instagram {
  color: white;
  width: 30px;
  height: 30px;
  background-color: #cc417e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
}
.social-icon .fa-instagram:hover {
  /* color: #a53766; */
  border-radius: 50%;
}

/* YouTube */
.social-icon .fa-youtube {
  color: white;
  width: 30px;
  height: 30px;
  background-color: #cf2a43;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
}
.social-icon .fa-youtube:hover {
  /* color: #a81e36; */
  border-radius: 50%;
}

/* LinkedIn */
.social-icon .fa-linkedin-in {
  color: white;
  width: 30px;
  height: 30px;
  background-color: #1d4d9f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
}
.social-icon .fa-linkedin-in:hover {
  /* color: #153a75; */
  border-radius: 50%;
}

.icon-main {
  /* margin: 20px; */
  /* padding: 15px; */
}

.dropdown-styling {
  background-color: #f5caf5;
  border: 3px solid rgb(234, 226, 226);
  border-radius: 0px;
  width: 80%;
  height: fit-content;
  text-align: center;
}

.serv-btn-dec {
  width: 80%;
  height: auto;
  padding: 10px;
  background: none;
  text-decoration: none;
  /* background-color: #fd5646; */
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  /* position: absolute; */
}

.drop {
  gap: 2px;
  margin: 20px 20px;
}

.errorMessage {
  color: red;
  margin-left: 5px;
}

.project-image {
  height: 200px !important;
  overflow: hidden;
}
