/*---------------------------------------------------------------------
                        Color Set
-----------------------------------------------------------------------*/
:root {
  --primary-color: #F57B54;
  --primary-bg: #fffbf9;
  --secondary-color: #0d407e;
  --secondary-text: #1A1A1A;
  --light-pink-color: #fef5f5;
  --white-color: #ffffff;
  --black-color: #000;
  --white-light-color: #ecf2ff;
  --title-color: #171c26;
  --sub-title-color: #f57b54;
  --body-text: #333333;
  --light-blue-color: #eaf2ff;
  --ver-menu-back: rgba(67, 126, 235, 0.08);
  --warning-color: #ff0000;
  --success-color: #398f14;
  --primary-light-bg: #eaf2ff;
  --light-gray-color: #9d9d9d5e;
  --facebook-color: #0D407E;
  --twitter-color: #44BBFE;
  --instagram-color: #F57B54;
  --logo-bg-pattern: #ffcbba9e;
  --black-transparent-bg: rgba(0, 0, 0, 0.5);
  --light-color: #f4fdfd;
  --gray-text-color: #888888;
}

body:before {
  content: "";
  position: fixed;
  z-index: 0;
  background: var(--title-color);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0;
}

body.side-bar-open:before {
  opacity: 1;
  z-index: 9999;
  opacity: 0.8;
}

/*---------------------------------------------------------------------
						   Section Title
  -----------------------------------------------------------------------*/
.iq-title-box .iq-subtitle {
  margin: 0 16px 0 0;
  color: var(--primary-color);
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  width: max-content;
  letter-spacing: 1.5px;
  line-height: normal;
}

.iq-title-box {
  position: relative;
  z-index: 9;
}

.iq-title-box:before {
  content: "";
  width: 372px;
  height: 200px;
  display: block;
  opacity: 0.5;
  position: absolute;
  top: -78px;
  left: -89px;
  z-index: -1;
}

.iq-title-box .iq-title-desc {
  margin-top: 0px;
  margin-bottom: 20px;
}

.iq-title-box i {
  font-size: 30px;
  margin-bottom: 15px;
}

.iq-title-box span.left-text {
  color: var(--primary-color);
}

.process-add-sec .iq-title-box .iq-subtitle {
  color: var(--white-color);
}

.process-add-sec .iq-title-box .iq-head-title .right-text {
  color: var(--white-color);
}

.process-add-sec .iq-title-box .iq-head-title .left-text {
  color: var(--title-color);
}

.iq-title-box .iq-main-content {
  display: flex;
  margin-top: 20px;
}

/* Title Box Text Left*/
.iq-title-box.text-center {
  margin-bottom: 60px;
}

.iq-title-white .iq-subtitle,
.iq-title-white .iq-title,
.iq-title-white .iq-title-desc,
.iq-title-white i {
  color: var(--primary-color);
}

/*style 2*/
.iq-title-box.iq-title-box-2 .iq-subtitle {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 5px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.iq-title-box .iq-head-title .iq-heading-title::before{
  background-color: var(--primary-color);
}
/* ------------------------------
  Button 
  ---------------------------------*/
.iq-button {
  z-index: 1;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 30px;
  background: var(--primary-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

/*semi round button*/
.iq-btn-semi-round {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/*round button*/
.iq-btn-round {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/*Circle button*/
.iq-btn-circle {
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
}

/*Small button*/
.iq-btn-small {
  padding: 5px 15px;
  font-size: 12px;
}

/*Medium button*/
.iq-btn-medium {
  padding: 10px 30px;
  font-size: 14px;
}

/*Large button*/
.iq-btn-large {
  padding: 15px 45px;
}

/*Extra Large button*/
.iq-btn-extra-large {
  padding: 15px 60px;
}

/*Right side icon button*/
.btn-icon-right i {
  margin-left: 0px;
}

/*Left side icon button*/
.btn-icon-left i {
  margin-right: 15px;
}

/*button with Shadow*/
.iq-button.iq-btn-shadow:hover {
  -webkit-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

/*button with Outline*/
.iq-btn-outline {
  color: var(--primary-color);
  background: transparent;
  border: 2px solid var(--primary-color);
}

.iq-button.iq-btn-link,
.iq-btn-link,
.iq-btn-link i {
  display: inline-block;
  background: transparent;
  padding: 0;
  color: var(--primary-color);
  line-height: normal;
}

/*button Hover Effect */
.iq-button:hover,
.iq-button:focus {
  color: var(--white-color);
  background: var(--secondary-color);
}

.iq-btn-outline:hover,
.iq-btn-outline:focus {
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.iq-btn-link:hover,
.iq-btn-link:focus,
.iq-btn-link:hover i,
.iq-btn-link:focus i {
  color: var(--secondary-color);
  background: transparent;
}

.modal-backdrop {
  z-index: initial !important;
}




/*---------------------------------------------------------------------
					FAQ
  -----------------------------------------------------------------------*/
.iq-accordion {
  z-index: 9;
  position: relative;
}

.iq-accordion .iq-accordion-title {
  position: relative;
  font-family: 'Source Sans Pro', sans-serif;
  border-radius: 0px;
  padding: 25px 15px;
  line-height: normal;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.iq-accordion .iq-accordion-title .accordion-title {
  display: inline-block;
  vertical-align: middle;
}

.iq-accordion .iq-accordion-details {
  display: none;
  text-align: left;
  padding: 0 15px 15px 15px;
  background: var(--white-light-color);
}

.iq-accordion .iq-accordion-details p {
  margin: 0;
}

.iq-accordion .iq-accordion-block {
  border-bottom: 1px solid var(--white-light-color);
}

.iq-accordion .iq-accordion-block:last-child {
  margin-bottom: 0 !important;
}

.iq-accordion .iq-accordion-block .iq-accordion-title i {
  vertical-align: middle;
}

.iq-accordion .iq-accordion-block .iq-accordion-title i::before {
  vertical-align: middle;
}

.iq-accordion .iq-accordion-block .iq-accordion-title i.active {
  display: none;
}

.iq-accordion .iq-accordion-block.iq-active .iq-accordion-title i.active {
  display: inline-block;
  vertical-align: middle;
}

.iq-accordion .iq-accordion-block.iq-active .iq-accordion-title i.inactive {
  display: none;
}

.iq-accordion-square .iq-accordion-block {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.iq-accordion-semi-round .iq-accordion-block {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.iq-accordion-round .iq-accordion-block {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.iq-accordion-round .iq-accordion-title,
.iq-accordion-round .iq-accordion-details {
  background: var(--white-color);
}

.iq-accordion .iq-accordion-block .iq-accordion-title .iq-icon-left {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5em;
}

.iq-accordion-shadow .iq-accordion-block.iq-active {
  -webkit-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-accordion-classic .iq-accordion-details {
  padding: 15px 30px;
}

/*---------------------------------------------------------------------
				   Pricing Table
  -----------------------------------------------------------------------*/

/*style 6*/
.iq-price-table-5 {
  cursor: pointer;
  margin-top: 0;
  background: var(--white-color);
  padding: 0px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 10px 50px 0 rgba(0, 0, 0, 0.06);
}

.iq-price-table-5 .iq-price-header {
  padding: 25px 25px;
  border-bottom: 1px solid rgb(0 0 0 / 5%);
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.iq-price-table-5 .iq-price-header .iq-price-label {
  color: var(--secondary-text);
  font-size: 28px;
  font-weight: bold;
}

.iq-price-table-5 .iq-price-header .price {
  color: var(--primary-color);
  line-height: normal;
}

.iq-price-table-5 .iq-price-header h2.iq-price {
  font-size: 60px;
}

.iq-price-table-5 .iq-price-header h3.iq-price {
  font-size: 45px;
}

.iq-price-table-5 .iq-price-header h4.iq-price {
  font-size: 36px;
}

.iq-price-table-5 .iq-price-header h5.iq-price {
  font-size: 24px;
}

.iq-price-table-5 .iq-price-header h6.iq-price {
  font-size: 16px;
}

.iq-price-table-5 .iq-price-header .iq-price span {
  font-size: 16px;
  color: var(--title-color);
  font-weight: normal;
}

.iq-price-table-5 .iq-price-body ul.iq-price-service li {
  list-style: none;
  line-height: 45px;
}

.iq-price-table-5.active .iq-price-body ul.iq-price-service li.active {
  color: var(--white-color);
}

.iq-price-table-5 .iq-price-header .iq-price-label {
  margin-bottom: 15px;
}

.iq-price-table-5 .iq-price-body ul.iq-price-service {
  padding: 30px 30px;
  margin: 0;
}

.iq-price-table-5 .iq-button {
  margin-bottom: 45px;
}

.iq-price-table-5.active {
  background: var(--primary-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-price-table-5.active .iq-price-header .iq-price,
.iq-price-table-5.active .iq-price-header .iq-price span,
.iq-price-table-5.active .iq-price-header .iq-price-label,
.iq-price-table-5.active .iq-price-header .price {
  color: var(--secondary-text);
}

.iq-price-table-5.active .iq-price-header .iq-price-label {
  color: var(--white-color);
}

.iq-price-table-5.active .iq-button {
  background: var(--white-color);
  color: var(--primary-color);
}

.iq-price-table-5.active .iq-button:hover,
.iq-price-table-5.active .iq-button:focus {
  background: var(--secondary-color);
  color: var(--white-color);
}

.iq-price-table-5.active .iq-button-style-2 .iq-btn-text-holder {
  background: var(--white-color);
  color: var(--secondary-color);
}

.iq-price-table-5 .iq-price-footer {
  text-align: center;
  padding: 0 0 40px 0;
}

.iq-price-table-5 .price_left_header_side {
  float: left;
  padding: 10px 0;
}

.iq-price-table-5 .price_right_header_side {
  position: relative;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary-text);
  background: var(--light-color);
  border-radius: 10px;
  padding: 0;
  height: 90px;
  width: 90px;
  line-height: 90px;
  border-radius: 50%;
}

.iq-price-table-5 .price_right_header_side span {
  position: relative;
  top: -5px;
}

.iq-price-table-5.active .iq-button-style-2 .iq-btn-text-holder::after {
  color: var(--secondary-color);
}

.iq-price-table-5 .iq-price-header .iq-price-desc {
  color: var(--primary-color);
}

.iq-price-table-5.active .iq-price-header .iq-price-desc {
  color: var(--white-color);
}

/*---------------------------------------------------------------------
				  Pricing Tab
  -----------------------------------------------------------------------*/
.lightbluegradient-bg:before {
  background-image: -moz-linear-gradient(90deg, rgba(30, 187, 240, 0) 0%, rgba(55, 125, 254, 0.10196) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(30, 187, 240, 0) 0%, rgba(55, 125, 254, 0.10196) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(30, 187, 240, 0) 0%, rgba(55, 125, 254, 0.10196) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  content: "" !important;
}

.advance-feature .user-count,
.advance-feature .month-count,
.advance-feature .total-count {
  display: inline-block;
  width: 25%;
  margin-bottom: 45px;
}

.advance-feature .pricing-table {
  position: absolute;
  top: 10%;
  left: 14%;
}

.advance-feature .pricing-table ul {
  padding: 10px;
  border: 1px solid rgb(118, 124, 240, 0.2);
}

.advance-feature .col-lg-6.border-right-0 {
  padding: 45px;
  border: 1px solid var(--white-color);
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.advance-feature .col-lg-6 {
  padding: 45px;
  border: 1px solid var(--white-color);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.advance-feature .col-lg-6.btn-top {
  padding-top: 180px;
}

.advance-feature .user-count,
.advance-feature .month-count {
  margin-right: 30px;
}

.advance-feature .user-count,
.advance-feature .month-count {
  position: relative;
}

.advance-feature .month-count:before {
  content: "=";
  position: absolute;
  right: -23px;
  top: 58%;
  color: var(--secondary-color);
  font-family: "Ionicons";
}

.advance-feature .service-price ul li {
  list-style: none;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.advance-feature .service-price ul {
  position: relative;
  padding-left: 110px;
}

.advance-feature input[type="range"] {
  width: 100%;
  height: 28px;
  outline: none;
  border: 0;
  padding: 0 8px;
  margin: 25px 0;
}

.advance-feature .user-count:before {
  content: "\f2c7";
  position: absolute;
  right: -23px;
  top: 58%;
  color: var(--secondary-color);
  font-family: "Ionicons";
}

.advance-feature .service-price input[type=checkbox] {
  width: 20px;
}

.advance-feature .nav-pills .nav-item {
  margin-right: 15px;
}

.advance-feature .nav-pills .nav-item:last-child {
  margin-right: 0px;
}

.advance-feature .nav-pills .nav-link {
  color: var(--secondary-color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-radius: 4px;
  padding: 10px 30px;
  border: none;
  position: relative;
  display: inline-block;
  background-size: 200% auto;
  cursor: pointer;
  z-index: 4;
  background-color: rgb(118, 124, 240, 0.4);
}

.advance-feature .nav-pills .nav-link.active {
  color: var(--white-color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-radius: 4px;
  padding: 10px 30px;
  border: none;
  position: relative;
  display: inline-block;
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--linear-color-1) 0%, var(--linear-color-2) 51%, var(--linear-color-3) 100%);
  box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
  cursor: pointer;
  z-index: 4;
}

.advance-feature input[type=range].input-range {
  -webkit-appearance: none;
  box-shadow: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: rgba(30, 30, 30, 0.48);
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

input[type=range].input-range:hover {
  opacity: 1;
}

.advance-feature input[type=range].input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--linear-color-2);
  cursor: pointer;
  box-shadow: 0px 10px 20px 0px rgb(109, 115, 239, 0.4);
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:checked+label,
[type="checkbox"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

[type="checkbox"]:checked+label:before,
[type="checkbox"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  background: var(--white-color);
  border-radius: 0px;
}

[type="checkbox"]:checked+label:after,
[type="checkbox"]:not(:checked)+label:after {
  font-family: 'Ionicons';
  content: '\f383';
  width: 4px;
  height: 4px;
  color: var(--primary-color);
  position: absolute;
  top: 0px;
  left: 5px;
  border-radius: 90px;
}

.advance-feature .form-control:disabled,
.advance-feature .form-control[readonly] {
  background: var(--white-color);
  border-radius: 4px;
}

[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="checkbox"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.ui.range {
  width: 100%;
  height: 20px;
}

.ui.range .inner {
  height: 20px;
  position: relative;
}

.ui.range .inner:hover {
  cursor: pointer;
}

.ui.range .inner .track {
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 4px;
  top: 9px;
  left: 0;
  background-color: rgba(0, 0, 0, .05);
}

.ui.inverted.range .inner .track {
  background-image: -moz-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  background-image: -ms-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
}

.ui.range .inner .track-fill {
  position: absolute;
  width: 0;
  height: 5px;
  border-radius: 4px;
  top: 9px;
  left: 0;
  background-image: -moz-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  background-image: -ms-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
}

.ui.inverted.range .inner .track-fill {
  background-image: -moz-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  background-image: -ms-linear-gradient(0deg, var(--linear-color-1) 0%, rgb(163, 120, 252) 100%);
  box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
}

.ui.range .inner .thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 90px;
  background-image: -moz-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%);
  background-image: -ms-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%);
  background-image: linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%);
  box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4);
}

/*---------------------------------------------------------------------
				   Blockquote
  -----------------------------------------------------------------------*/
.iq-blockquote blockquote .iq-quote .iq-symbol {
  position: absolute;
  top: 15px;
  font-size: 90px;
  line-height: 90px;
  color: var(--primary-color);
}

.iq-blockquote.text-left blockquote .iq-quote .iq-symbol {
  left: 30px;
}

.iq-blockquote.text-right blockquote .iq-quote .iq-symbol {
  right: 30px;
}

.iq-blockquote.text-left blockquote .iq-quote .iq-quote-content {
  margin-left: 60px;
}

.iq-blockquote.text-right blockquote .iq-quote .iq-quote-content {
  margin-right: 60px;
}

.iq-blockquote.text-center blockquote {
  padding: 75px 30px 15px;
}

.iq-blockquote blockquote .iq-quote .iq-quote-content .iq-blockquote-author {
  display: block;
}

.iq-blockquote.iq-blockquote-shadow {
  -webkit-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

/*---------------------------------------------------------------------
				   Flipbox
  -----------------------------------------------------------------------*/
.iq-flip-box {
  position: relative;
  border-radius: 0px;
  margin-bottom: 30px;
}

.iq-flip-box .flipbox-wrapper {
  position: relative;
  z-index: 1;
  min-height: 270px;
  perspective: 1000px;
}

.iq-flip-box.iq-flip-box-shadow .front-side,
.iq-flip-box.iq-flip-box-shadow .back-side {
  -webkit-box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.1);
}

.iq-flip-box .front-side,
.iq-flip-box .back-side {
  display: block;
  -webkit-backface-visibility: unset;
  backface-visibility: unset;
  transition: transform 1s, visibility 0s 0.3s;
  min-height: inherit;
  border-radius: 0px;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--secondary-color);
  perspective: inherit;
  transform-style: preserve-3d;
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {

  .iq-flip-box .front-side,
  .iq-flip-box .back-side {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.5, 0.2, 0.2, 0.8);
  }
}

.iq-flip-box .flip-media {
  margin-bottom: 0px;
}

.iq-flip-box .front-side .flip-media i {
  font-size: 45px;
}

.iq-flip-box .front-side {
  box-sizing: border-box;
  padding: 45px 30px;
  visibility: visible;
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box .front-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: unset;
  }
}

.iq-flip-box .front-side .flip-media,
.iq-flip-box .front-side .flipbox-title,
.iq-flip-box .front-side .flipbox-details {
  transform-style: inherit;
  perspective: inherit;
  -webkit-backface-visibility: inherit;
  backface-visibility: inherit;
}

.iq-flip-box .front-side .flip-media {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transform: translate3d(0, 10px, 70px) scale(0.86);
}

.iq-flip-box .front-side .flipbox_subtitle {
  transform: translate3d(0, 0, 60px) scale(0.68);
}

.iq-flip-box .front-side .flipbox-title {
  color: var(--title-color);
  padding: 0 15px;
  margin: 0px 0 0px 0;
  box-sizing: border-box;
  transform: translate3d(0, 0, 70px) scale(0.86);
}

.iq-flip-box .front-side .flipbox-details {
  color: var(--body-text);
  padding: 0px 10px 0;
  font-size: 16px;
  line-height: 1.875;
  transform: translate3d(0, 0, 70px) scale(0.86);
}

.iq-flip-box .back-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  visibility: hidden;
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box .back-side {
    display: flex;
    justify-content: center;
    flex-direction: column;
    visibility: unset;
  }
}

.iq-flip-box .back-side .flip-media,
.iq-flip-box .back-side .flipbox-title,
.iq-flip-box .back-side .flipbox-content {
  transform-style: inherit;
  perspective: inherit;
  -webkit-backface-visibility: inherit;
  backface-visibility: inherit;
}

.iq-flip-box .back-side .flip-media {
  height: 20px;
  transform: translate3d(0px, -10px, 35px) scale(0.86);
}

.iq-flip-box .back-side .flipbox-title {
  color: var(--title-color);
  padding: 0 30px;
  margin-bottom: 15px;
  transform: translate3d(0, 0, 70px) scale(0.86);
}

.iq-flip-box .back-side .flipbox-content {
  color: var(--body-text);
  padding: 0 9px;
  line-height: 1.875;
  transform: translate3d(0, 0, 60px) scale(0.86);
}

.iq-flip-box .back-side .iq-flip-button {
  margin-top: 30px;
}

.iq-flip-box .back-side .iq-flip-button a {
  margin-bottom: 0;
}

.iq-flip-box .flipbox_button {
  padding-top: 15px;
}

.iq-flip-box .flipbox_button:after {
  color: inherit;
}

.iq-flip-box.flip-right .front-side {
  transform: rotateY(0deg);
}

.iq-flip-box.flip-right .front-side .flip-media {
  transform: translate3d(0, 0, 70px) scale(0.86);
}

.iq-flip-box.flip-right .back-side {
  transform: rotateY(-180deg);
}

.iq-flip-box.flip-right:hover .front-side {
  visibility: hidden;
  transform: rotateY(180deg);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-right:hover .front-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-right:hover .back-side {
  visibility: visible;
  transform: rotateY(0);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-right:hover .back-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-left .front-side {
  transform: rotateY(0deg);
}

.iq-flip-box.flip-left .back-side {
  transform: rotateY(180deg);
}

.iq-flip-box.flip-left:hover .front-side {
  visibility: hidden;
  transform: rotateY(-180deg);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-left:hover .front-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-left:hover .back-side {
  visibility: visible;
  transform: rotateY(0);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-left:hover .back-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-top .front-side {
  transform: rotateX(0deg);
}

.iq-flip-box.flip-top .back-side {
  transform: rotateX(-180deg);
}

.iq-flip-box.flip-top:hover .front-side {
  visibility: hidden;
  transform: rotateX(180deg);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-top:hover .front-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-top:hover .back-side {
  visibility: visible;
  transform: rotateX(0);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-top:hover .back-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-bottom .front-side {
  transform: rotateX(0deg);
}

.iq-flip-box.flip-bottom .back-side {
  transform: rotateX(180deg);
}

.iq-flip-box.flip-bottom:hover .front-side {
  visibility: hidden;
  transform: rotateX(-180deg);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-bottom:hover .front-side {
    visibility: unset;
  }
}

.iq-flip-box.flip-bottom:hover .back-side {
  visibility: visible;
  transform: rotateX(0);
}

@supports ((-webkit-backface-visibility:hidden) or (backface-visibility:hidden)) {
  .iq-flip-box.flip-bottom:hover .back-side {
    visibility: unset;
  }
}

/*---------------------------------------------------------------------
				   Testimonial
-----------------------------------------------------------------------*/

/*style 1*/
.iq-testimonial .iq-testimonial-avtar img {
  width: 100%;
  height: 100%;
  position: relative;
}

.iq-testimonial .iq-testimonial-quote {
  position: absolute;
  font-size: 90px;
  line-height: 90px;
  left: 50%;
  top: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  opacity: 1;
}

.iq-testimonial .iq-testimonial-quote i {
  opacity: 0.2;
}

.iq-testimonial-1 .iq-testimonial-info {
  margin: 0 15px;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-avtar {
  margin-right: 15px;
  width: 60px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-avtar img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content {
  z-index: 1;
  position: relative;
  background: rgba(255, 255, 255, 1.0);
  padding: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid var(--white-light-color);
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content:before {
  content: "";
  position: absolute;
  z-index: 9;
  bottom: -15px;
  left: 05%;
  height: 0;
  width: 0;
  border-top: 15px solid rgba(255, 255, 255, 1.0);
  border-left: 15px solid transparent;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content {
  border-radius: 10px;
  background: var(--light-color);
}

.iq-testimonial-1 .iq-testimonial-info .title {
  font-size: 18px;
}

.iq-testimonial-1 .iq-testimonial-info .avtar-name {
  display: table-cell;
}

.iq-testimonial-1 .iq-testimonial-info .avtar-name span {
  font-size: 14px;
  color: var(--primary-color);
  font-style: italic;
}

.iq-testimonial-1 .iq-testimonial-info p {
  margin: 10px 0 0 0;
  font-style: italic;
}

.iq-testimonial-1 .iq-testimonial-info .iq-lead {
  font-weight: bold;
  line-height: 15px;
}


.iq-testimonial-1 .owl-carousel .owl-stage-outer {
  padding-top: 30px;
}

.iq-testimonial-1.text-right .iq-testimonial-info .iq-testimonial-content:before {
  right: 5%;
  left: auto;
}

.iq-testimonial-1.text-right .iq-testimonial-info .iq-testimonial-member {
  float: right;
  display: block
}

.iq-testimonial-1.text-right .iq-testimonial-info .iq-testimonial-avtar {
  margin-right: 0;
  margin-left: 15px;
  float: right;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content .iq-testimonial-avtar {
  margin-top: -60px;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content .iq-testimonial-member .avtar-name {
  padding-top: 10px;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content .iq-testimonial-member {
  position: relative;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content .iq-testimonial-member::after {
  content: '\201D';
  font-size: 200px;
  line-height: 200px;
  font-weight: 600;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 0.6s ease-in-out;
  opacity: 0.2;
  color: var(--primary-color);
}

.iq-testimonial-1 .iq-testimonial-content:hover .iq-testimonial-member::after {
  opacity: 1;
}

.iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content .iq-testimonial-member::after .iq-testimonial-1 .iq-testimonial-info .iq-testimonial-content p {
  padding-top: 20px;
}

.iq-testimonial-1.text-center .iq-testimonial-info .iq-testimonial-content:before {
  right: 0;
  left: 0;
  margin: 0 auto;
}

.iq-testimonial-1.text-center .iq-testimonial-info .iq-testimonial-member {
  display: block;
  text-align: center;
}

.iq-testimonial-1.text-center .iq-testimonial-info .iq-testimonial-avtar {
  display: inline-block;
  vertical-align: middle;
}

.iq-testimonial-1.text-center .iq-testimonial-info .avtar-name {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

/*Style 2*/
.iq-testimonial-2 .iq-testimonial-avtar {
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  vertical-align: middle;
  z-index: 2;
  position: relative;
  width: 65px;
  height: 65px;
  display: inline-block;
  margin-bottom: 45px;
  -webkit-box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--white-color);
}

.iq-testimonial-2 .iq-testimonial-member {
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
}

.iq-testimonial-2 .iq-testimonial-member .content {
  display: inline-block;
  font-weight: normal;
}

.iq-testimonial-2 .iq-testimonial-info p {
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}

.iq-testimonial-2 .iq-testimonial-info {
  position: relative;
  text-align: center;
  display: block;
  padding: 45px 30px;
  margin: 60px 30px 70px 30px;
  -webkit-box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  background: var(--white-color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: block;
  position: relative;
}

.iq-testimonial-2 .iq-testimonial-info:before {
  content: "";
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  bottom: -12px;
  width: 90%;
  z-index: -1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  height: 100%;
  background: var(--white-color);
  -webkit-box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
}

.iq-testimonial-2 .iq-testimonial-info:after {
  content: "";
  position: absolute;
  bottom: -24px;
  width: 82%;
  left: 0;
  margin: 0 auto;
  right: 0;
  z-index: -2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  height: 100%;
  background: var(--white-color);
  -webkit-box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: -6px 15px 30px 0px rgba(0, 0, 0, 0.08);
}

/*---------------------------------------------------------------------
				   Counter
  -----------------------------------------------------------------------*/

/*style 1*/

.iq-counter {
  padding: 30px;
}

.iq-counter .iq-counter-icon {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.iq-counter .iq-counter-img i {
  line-height: normal;
}

.iq-counter i:before {
  font-size: inherit;
  line-height: normal;
}

.iq-counter .iq-counter-info .timer,
.iq-counter .iq-counter-info .counter-symbol,
.iq-counter .iq-counter-info .counter-after-content {
  font-size: 50px;
  color: var(--title-color);
  font-weight: bold;
}

.iq-counter .iq-counter-info {
  margin: 0;
  line-height: normal;
}

.iq-counter .counter-content .counter-title-text {
  margin: 0;
}

.iq-counter .counter-content .counter-content-text,
.iq-counter .counter-content .counter-title-text {
  margin: 0 0 0;
}

/*style 2*/
.iq-counter.iq-counter-style-2 {
  display: flex;
  align-items: start;
  border-radius: 0 0 5px 5px;
  padding: 100px 0;
}

.iq-counter.iq-counter-style-2 .iq-counter-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  margin-bottom: 0;
}

.iq-counter.iq-counter-style-2 {
  display: block;
}

.iq-counter.iq-counter-style-2.text-right .iq-counter-icon {
  float: right;
}

.iq-counter.iq-counter-style-2 .counter-content .counter-title-text {
  margin: 0;
  color: var(--secondary-color);
}

.iq-counter.iq-counter-style-2.text-center .iq-counter-icon {
  margin: 0 auto 15px;
  width: auto;
  height: auto;
}

.iq-counter.iq-counter-style-2 .iq-counter-info span {
  color: var(--primary-color);
}

.iq-counter-style-2 .iq-rotate-text {
  width: auto;
  font-weight: 200;
  font-size: 12px;
  -webkit-animation: iqrotation 10s infinite linear;
  -moz-animation: iqrotation 10s infinite linear;
  -o-animation: iqrotation 10s infinite linear;
  animation: iqrotation 10s infinite linear;
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.iq-counter-style-2:hover .iq-rotate-text {
  animation: iqrotation 26s linear 0s infinite forwards;
  -webkit-animation: iqrotation 10s infinite linear;
  -moz-animation: iqrotation 10s infinite linear;
  -o-animation: iqrotation 10s infinite linear;
  animation: iqrotation 10s infinite linear;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.iq-counter-style-2 .iq-rotate-text:after {
  display: none;
}

.iq-counter-style-2 .iq-counter-info {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: 0%;
  transform: translate(-50%, -50%);
}

/*---------------------------------------------------------------------
				   Progressbar
  -----------------------------------------------------------------------*/

/*Style 1*/
.iq-progressbar-content {
  position: relative;
  margin-bottom: 20px;
}

.iq-progressbar-content:last-child {
  margin-bottom: 0;
}

.progress-value {
  background-color: transparent !important;
  float: right;
  border-radius: 0;
  color: var(--primary-color);
  line-height: 30px;
  font-weight: normal;
  position: relative;
  bottom: 0;
  right: 0;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
}

.iq-progress-bar {
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
  background: var(--light-gray-color) none repeat scroll 0 0;
  box-shadow: 0 0 0;
  height: 5px;
  margin: 0;
  position: relative;
  width: 100%;
  margin: 10px 0 0;
}

.iq-progress-bar>span {
  background: var(--primary-color) none repeat scroll 0 0;
  display: block;
  height: 100%;
  width: 0;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  border-radius: 90px;
}

/*--------------------------------------------------------------
								 Team
  --------------------------------------------------------------*/
.iq-team ul.grid {
  padding: 0;
  margin: 0;
  float: left;
  width: 100%;
  list-style: none;
}

.iq-team ul.grid.iq-col-2 li.item {
  width: 50%;
  float: left;
  padding: 15px;
}

.iq-team ul.grid.iq-col-3 li.item {
  width: 33.33%;
  float: left;
  padding: 15px;
}

.iq-team ul.grid.iq-col-4 li.item {
  width: 25%;
  float: left;
  padding: 15px;
}

.iq-team ul.grid.iq-col-5 li.item {
  width: 20%;
  float: left;
  padding: 15px;
}

.iq-team.iq-team-style-11 ul.grid.grid-style-1 li.item:first-child {
  width: 40%;
}

.iq-team.iq-team-style-11 ul.grid.grid-style-1 li.item {
  width: 20%;
  padding: 5px;
}

.iq-team.iq-team-style-11 ul.grid li.item {
  padding: 5px;
}

/*Style 1*/
.iq-team-style-1 .iq-team-blog {
  position: relative;
  overflow: hidden;
  margin: 0px 15px;
  border-radius: 5px;
  background-color: transparent;
}

.iq-team-slider {
  margin: 0 -15px;
}

.iq-team-style-1 .owl-carousel.owl-drag .owl-item {
  opacity: 0;
}

.iq-team-style-1 .owl-carousel.owl-drag .owl-item.active {
  opacity: 1;
}


.iq-overflow-h {
  overflow: hidden;
}

.iq-team-style-1 .share ul li a .fa-facebook {
  color: var(--facebook-color);
}

.iq-team-style-1 .share ul li a .fa-twitter {
  color: var(--twitter-color);
}

.iq-team-style-1 .share ul li a .fa-instagram {
  color: var(--instagram-color);
}

.iq-team-style-1 .iq-team-info {
  z-index: 2;
  text-align: center;
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white-color);
  margin: 15px;
  border-radius: 5px;
}

.iq-team-style-1 .item:hover .iq-team-img img {
  border-radius: 5px;
}

.iq-team-style-1 .iq-team-info .iq-team-main-detail p {
  font-style: italic;
  font-size: 16px;
  line-height: 20px;
  margin: 10px 0 0;
  text-transform: capitalize;
  color: var(--primary-color);
}

.iq-team-style-1 .item:hover .iq-team-info .iq-team-main-detail h4 {
  color: var(--primary-color);
}

.iq-team-style-1 .share {
  padding-top: 0;
  top: 20px;
  right: 20px;
  background: none;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.iq-team-style-1 .share ul li {
  margin-right: 0px;
  display: inline-block;
  float: none;
  vertical-align: middle;
  margin-bottom: 15px;
}

.iq-team-style-1 .share ul li:last-child {
  margin-right: 0;
}

.iq-team-style-1 .share ul li a {
  display: block;
  color: var(--white-color);
  position: relative;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  background: #fff;
  font-size: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 0;
  border-radius: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s
}

.iq-team-style-1 .share ul li a i {
  vertical-align: middle;
}

.iq-team-style-1 .share ul li a:hover {
  background: var(--white-color);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.iq-team-style-1 .iq-team-img {
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
}

.iq-team-style-1 .iq-team-img img {
  width: 100%;
  border-radius: 5px;
  transition: 0.3s;
}

.iq-team-style-1 .share ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 45px;
}

.iq-team-style-1 .iq-team-blog:hover .share {
  opacity: 1;
  top: 20px;
}

.iq-team-style-1 .iq-team-blog:hover .iq-team-info h5 {
  color: var(--primary-color);
  text-decoration: none;
}

.iq-team.iq-team-style-grid.iq-team-style-1 .iq-team-blog {
  margin: 0 0 30px 0;
}

.iq-team-img img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.iq-team-blog:hover .iq-team-img img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/*Style 2*/

.iq-team-style-2 .iq-team-blog {
  text-align: center;
  padding: 15px;
  border-radius: 5px;
}

.iq-team-style-2 .iq-team-content {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.iq-team-style-2 .iq-team-content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
}

.iq-team-style-2 .iq-team-content .iq-team-contact {
  position: absolute;
  width: 100%;
  bottom: 0%;
  left: 0;
  color: var(--white-color);
  margin-top: -20px;
  padding: 0;
  opacity: 0;
  font-size: 16px;
}

.iq-team-style-2 .iq-team-content .iq-team-contact a:hover {
  color: var(--secondary-color);
}

.iq-team-style-2 .iq-team-content:hover:before {
  opacity: 1;
}

.iq-team-style-2 .iq-team-content .iq-team-social {
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 100%;
  opacity: 0;
}

.iq-team-style-2 .iq-team-content .iq-team-social ul {
  width: 100%;
  display: inline-block;
  padding: 0px 10px;
}

.iq-team-style-2 .iq-team-content .iq-team-social ul li {
  display: inline-block;
}

.iq-team-style-2 .iq-team-content .iq-team-social ul li a {
  color: var(--white-color);
  padding: 10px;
}

.iq-team-style-2 .iq-team-content .iq-team-social ul li a:hover {
  color: var(--primary-color);
}

.iq-team-style-2 .iq-team-content .iq-team-social ul li a i {
  font-size: 20px;
  display: inline-block;
  float: none;
  text-align: center;
  background: transparent;
}

.iq-team-style-2 .iq-team-content:before,
.iq-team-style-2 .iq-team-content:hover:before,
.iq-team-style-2 .iq-team-content:hover .iq-team-contact,
.iq-team-style-2 .iq-team-content:hover .iq-team-social,
.iq-team-style-2 .iq-team-content .iq-team-social {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.iq-team-style-2 .iq-team-content:hover .iq-team-contact {
  bottom: 30%;
  opacity: 1;
}

.iq-team-style-2 .iq-team-content:hover .iq-team-social {
  bottom: 15%;
  opacity: 1;
}

.iq-team-style-2 .iq-team-info .member-text:hover {
  color: var(--secondary-color);
}

.iq-team-style-2 .iq-team-info .designation-text {
  margin-bottom: 0;
}

.iq-team-style-2 .iq-team-blog .iq-team-img {
  overflow: hidden;
  border-radius: 5px;
}

.iq-team-style-2 .iq-team-blog .iq-team-img img {
  width: 100%;
}

.iq-team-style-2 {
  text-align: center;
}

.iq-team-style-2 .iq-team-social ul li a {
  height: 45px;
  transition: 0.4s;
  width: 45px;
  border-radius: 0px;
  display: inline-block;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  background: transparent;
  color: var(--secondary-text);
  text-align: center;
  line-height: 45px;
}

.iq-team-style-2 .iq-team-info .iq-team-main-detail {
  margin: 15px 0;
}

.iq-team-style-2 .iq-team-info .iq-team-main-detail p {
  margin: 0;
  color: var(--secondary-text);
}

.iq-team-style-2 .iq-team-style-box .iq-team-social ul li a {
  color: var(--secondary-color);
}

.iq-team-style-2 .iq-team-style-box .iq-team-social ul li a:hover,
.iq-team-style-2 .iq-team-style-box .iq-team-social ul li a:active {
  background: var(--secondary-color);
  color: var(--white-color);
}

.iq-team-style-2 .iq-team-social {
  margin: 30px 0 0;
}

.iq-team-style-2 .iq-team-style-box {
  background: var(--white-color);
  border-radius: 5px;
  margin: 15px;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.05);
}

/*Style 3*/

.iq-team-style-3 .iq-team-blog {
  text-align: center;
  height: 240px;
}

.iq-team-style-3 .iq-team-img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.iq-team-style-3 .iq-team-img img {
  object-fit: cover;
  height: 300px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.iq-team-style-3 .iq-team-info .member-text {
  color: var(--secondary-color);
}

.iq-team-style-3 .iq-team-info .designation-text {
  margin-bottom: 0;
}

.iq-team-style-3 .iq-team-social {
  position: relative;
}

.iq-team-style-3 .iq-team-social ul {
  padding: 0;
  margin: 0;
}

.iq-team-style-3 .iq-team-social li {
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
}

.iq-team-style-3 .iq-team-social li a {
  line-height: normal;
  height: auto;
  display: block;
  color: var(--primary-color);
  background: none;
  width: auto;
  margin-right: 25px;
}

.iq-team-style-3 .iq-team-social li a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0);
}

.iq-team-style-3 .avtar-name a:hover {
  color: var(--primary-color);
}

.iq-team-style-3 .iq-team-main-detail p {
  color: var(--body-text);
  font-style: italic;
  font-size: 18px;
  line-height: 25px;
}

.iq-team-style-3 .iq-team-style-box .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.iq-team-style-3 .owl-carousel .owl-nav i {
  border: none;
  background: none;
  color: var(--primary-color);
}

.iq-team-style-3 .owl-carousel .owl-nav i:hover {
  background: none;
  color: var(--secondary-color);
}

.iq-team-style-3 .iq-team-style-box {
  margin: 15px 15px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.03);
}

.iq-team-style-3 .iq-team-style-box .iq-team-info {
  padding-right: 20px;
}

.iq-team-style-3 .iq-team-style-box .iq-team-info::before {
  content: '\201D';
  font-size: 200px;
  line-height: 200px;
  font-weight: 600;
  color: var(--light-color);
  position: absolute;
  top: 0;
  right: 30px;
}

/*--------------------------------------------------------------
								 Client
  --------------------------------------------------------------*/

/*column*/
.iq-client-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
  width: 100%;
}

.iq-client-grid li {
  padding: 15px;
  text-align: center;
  float: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.iq-client-col-6 li {
  width: 16.66%
}

.iq-client-col-5 li {
  width: 20%
}

.iq-client-col-4 li {
  width: 25%
}

.iq-client-col-3 li {
  width: 33.33%
}

.iq-client-col-2 li {
  width: 50%
}

.iq-client .owl-carousel .owl-item img {
  margin: 0 auto;
}

.iq-client .iq-client-info h6 {
  margin-bottom: 10px;
}

.iq-client .iq-client-info p {
  margin-bottom: 0;
}

.iq-client.iq-has-shadow li:hover {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.iq-client.iq-has-grascale li img,
.iq-client.iq-has-grascale .item img {
  opacity: 0.4;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-client.iq-has-grascale li:hover img,
.iq-client.iq-has-grascale .item:hover img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

/*style 3*/
.iq-client-style-3 .iq-client-grid {
  background: transparent;
  border: none;
}

.iq-client-style-3 .iq-client-grid li {
  padding: 0 15px;
  background: transparent;
  border: none;
  margin-bottom: 30px;
}

.iq-client-style-3 .iq-client-grid li .iq-client-img {
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px;
  width: 100%;
}

.iq-client-style-3 .iq-client-grid li .iq-client-img img {
  display: inline;
}

.iq-client-style-3 .tooltip-container {
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.iq-client-style-3 .iq-tooltip {
  opacity: 0;
  z-index: 99;
  color: var(--secondary-color);
  font-size: 12px;
  width: 100%;
  display: block;
  opacity: 0;
  padding: 10px;
  border-radius: 3px;
  text-align: center;
  background: var(--white-color);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
  bottom: 100px;
  left: 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}

.iq-client-style-3 .iq-tooltip:before,
.iq-client-style-3 .iq-tooltip:after {
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--white-color);
  position: absolute;
  bottom: -10px;
  left: 43%;
}

.iq-client-style-3 .tooltip-container:hover .iq-tooltip,
.iq-client-style-3 .iq-client-grid li .iq-client-img:hover .iq-tooltip {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*style 4*/
.iq-client-style-4 .iq-client-img {
  overflow: hidden;
  position: relative;
}

.iq-client-style-4 .iq-client-img .iq-client-default-img {
  position: relative;
  display: block;
  width: 100px;
  margin: 0 auto;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.iq-client-style-4 .iq-client-img .iq-client-hover-img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.iq-client-style-4 .iq-client-img:hover .iq-client-default-img {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.iq-client-style-4 .iq-client-img:hover .iq-client-hover-img {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}


/*--------------------------------------------------------------
								 Count Down
  --------------------------------------------------------------*/
.iq-count-down .iq-data-countdown-timer.size_sm {
  font-size: 30px;
  color: var(--secondary-color);
}

.iq-count-down .iq-data-countdown-timer .timerDisplay .displaySection {
  display: inline-block;
  margin: 0 45px;
  vertical-align: middle;
  text-align: center;
  position: relative;
}

.iq-count-down .iq-data-countdown-timer .timerDisplay .displaySection::after {
  content: ":";
  position: absolute;
  right: -45px;
  top: 15%;
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: bold;
}

.iq-count-down .iq-data-countdown-timer .timerDisplay .displaySection:last-child::after {
  display: none;
}

.iq-count-down .iq-data-countdown-timer .timerDisplay .displaySection .numberDisplay {
  display: block;
  color: var(--secondary-color);
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
}

.iq-count-down .iq-data-countdown-timer .timerDisplay .displaySection .periodDisplay {
  display: block;
}

/*--------------------------------------------------------------
							   Alert Box
  --------------------------------------------------------------*/
.alert-primary {
  color: #1c67a2;
  border-color: #bad1e3;
  background-color: #e8f0f6;
}

.alert-secondary {
  color: #777D74;
  border-color: #d6d8d5;
  background-color: #f1f2f1;
}

.alert-success {
  color: #00c99c;
  border-color: #b2efe1;
  background-color: #e5f9f5;
}

.alert-danger {
  color: #f4828b;
  border-color: #fcd9dc;
  background-color: #fef2f3;
}

.alert-warning {
  color: #ffd400;
  border-color: #fff2b2;
  background-color: #fffbe5;
}

.alert-info {
  color: #50baff;
  border-color: #caeaff;
  background-color: #edf8ff;
}

.alert-light {
  color: #bfbfbe;
  border-color: #ececeb;
  background-color: #f8f8f8;
}

.alert-dark {
  color: #1d2438;
  border-color: #bbbdc3;
  background-color: #e8e9eb;
}

.alert .iq-alert-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.alert .iq-alert-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.30rem 0 0;
}

.alert .iq-alert-icon i {
  font-size: 2.441em;
  line-height: normal;
}

.alert .iq-alert-message {
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.alert .iq-alert-message p {
  margin-bottom: 0;
}

.alert .iq-alert-close {
  float: right;
  font-size: 20px;
  font-weight: 400;
  line-height: inherit;
  color: var(--white-color);
  text-shadow: none;
  opacity: 1;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  outline: none;
}

.bg-primary {
  color: var(--white-color);
}

.bg-secondary {
  color: var(--white-color);
}

.bg-success {
  color: var(--white-color);
}

.bg-danger {
  color: var(--white-color);
}

.bg-warning {
  color: var(--white-color);
}

.bg-info {
  color: var(--white-color);
}

.bg-light {
  color: var(--white-color);
}

.bg-dark {
  color: var(--white-color);
}

/*--------------------------------------------------------------
							  Divider
  --------------------------------------------------------------*/
.iq-divider {
  border-top: 1px solid var(--white-light-color);
  display: block;
  position: relative;
  width: 100%;
  margin: 30px 0;
}

.iq-divider .iq-divider-title {
  display: inline-block;
  vertical-align: middle;
}

.iq-divider .iq-divider-icon {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  font-size: 45px;
}

.iq-divider .iq-divider-icon i::before {
  display: inline-block;
  vertical-align: middle;
}

.iq-divider-style-2,
.iq-divider-style-3,
.iq-divider-style-4,
.iq-divider-style-5 {
  border: none;
  clear: both;
  display: flex;
}

.iq-divider-style-2 .iq-divider-center {
  margin: 0 15px;
  text-align: center;
}

.iq-divider-style-2 .iq-divider-right,
.iq-divider-style-2 .iq-divider-left {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 10%;
}

.iq-divider-style-2 .iq-divider-right::after,
.iq-divider-style-2 .iq-divider-left::after {
  border-top: 1px solid var(--white-light-color);
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.iq-divider-style-3 .iq-divider-left {
  margin-right: 15px;
}

.iq-divider-style-3 .iq-divider-right {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 10%;
}

.iq-divider-style-3 .iq-divider-right::after {
  border-top: 1px solid var(--white-light-color);
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.iq-divider-style-4 .iq-divider-right {
  margin-left: 15px;
}

.iq-divider-style-4 .iq-divider-left {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 10%;
}

.iq-divider-style-4 .iq-divider-left::after {
  border-top: 1px solid var(--white-light-color);
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

/*--------------------------------------------------------------
				   Event Schedule
  --------------------------------------------------------------*/
.iq-event-schedule {
  border: 1px solid var(--light-gray-color);
  margin-bottom: 30px;
}

.iq-event-schedule .iq-event-title {
  padding: 15px 30px;
  background: var(--light-pink-color);
}

.iq-event-schedule .iq-event-info {
  padding: 30px;
}

.iq-event-schedule .iq-event-timeschedule {
  padding: 5px 15px;
  color: var(--white-color);
  background: var(--secondary-color);
  display: inline-block;
  margin-bottom: 15px;
}

.iq-event-schedule .iq-speaker {
  display: flex;
}

.iq-event-schedule .iq-speaker-img {
  margin-right: 15px;
}

.iq-event-schedule .iq-speaker-img img {
  width: 60px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.iq-event-schedule .iq-event-text-area {
  margin-bottom: 15px;
}

.iq-event-schedule .iq-event-text-area p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
				Tooltip
  --------------------------------------------------------------*/

/* Style 1 */
.iq-tooltip-style-1 .tooltip-item {
  background: var(--secondary-color);
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  padding: 0 10px;
  color: var(--white-color);
}

/* Gap filler */
.iq-tooltip-style-1 .tooltip-item::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 20px;
  bottom: 100%;
  left: 50%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.iq-tooltip-style-1 .tooltip-iq:hover .tooltip-item::after {
  pointer-events: auto;
}

.iq-tooltip-style-1 .tooltip-iq {
  display: inline;
  position: relative;
  z-index: 9;
}

/* Tooltip */
.iq-tooltip-style-1 .tooltip-content {
  position: absolute;
  z-index: 9;
  width: 360px;
  left: 50%;
  margin: 0 0 30px -185px;
  bottom: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 2;
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  background: var(--secondary-color);
  color: var(--white-color);
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.iq-tooltip-style-1 .tooltip-effect-1 .tooltip-content {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}

.iq-tooltip-style-1 .tooltip-effect-2 .tooltip-content {
  -webkit-transform-origin: 50% calc(100% + 10px);
  transform-origin: 50% calc(100% + 10px);
  -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
  transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}

.iq-tooltip-style-1 .tooltip-effect-3 .tooltip-content {
  -webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
  transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}

.iq-tooltip-style-1 .tooltip-effect-4 .tooltip-content {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: scale3d(0.7, 0.3, 1);
  transform: scale3d(0.7, 0.3, 1);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}

.iq-tooltip-style-1 .tooltip-effect-5 .tooltip-content {
  width: 180px;
  margin-left: -90px;
  -webkit-transform-origin: 50% calc(100% + 6em);
  transform-origin: 50% calc(100% + 6em);
  -webkit-transform: rotate3d(0, 0, 1, 15deg);
  transform: rotate3d(0, 0, 1, 15deg);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  -webkit-transition-timing-function: ease, cubic-bezier(.17, .67, .4, 1.39);
  transition-timing-function: ease, cubic-bezier(.17, .67, .4, 1.39);
}

.iq-tooltip-style-1 .tooltip-iq:hover .tooltip-content {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
  transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

.iq-tooltip-style-1 .tooltip-iq.tooltip-effect-2:hover .tooltip-content {
  -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
  transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}

/* Arrow */
.iq-tooltip-style-1 .tooltip-content::after {
  content: '';
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: var(--secondary-color);
  border-width: 10px;
  margin-left: -10px;
}

/* Tooltip content*/
.iq-tooltip-style-1 .tooltip-content img {
  position: relative;
  display: block;
  float: left;
  margin-right: 1em;
}

.iq-tooltip-style-1 .iq-tooltip-text {
  display: block;
  padding: 15px;
  color: var(--white-color);
}

.iq-tooltip-style-1 .tooltip-effect-5 .tooltip-text {
  padding: 1.4em;
}

.iq-tooltip-style-1 .tooltip-text a {
  font-weight: bold;
}

.iq-tooltip-style-1 p {
  font-size: 36px;
  margin-bottom: 0;
  color: var(--secondary-color);
}

/*style 2*/
#iq-tooltip {
  position: relative;
  margin: 50px auto 20px auto;
}

.iq-tooltip-style-2 .pin {
  display: none;
}

/* Begin styling the tooltips and pins */
.iq-tooltip-style-2 .tooltip-up,
.iq-tooltip-style-2 .tooltip-down {
  background-size: 100% 100%;
  border-radius: 90px;
  position: absolute;
  width: 39px;
  height: 39px;
}

.iq-tooltip-style-2 .tooltip {
  display: none;
  opacity: 1;
  min-width: 150px;
  min-height: 70px;
  cursor: help;
  position: absolute;
  top: 10px;
  margin-left: -20px;
  left: 50%;
  z-index: 999;
  text-align: center;
  transform: skewX(-10deg);
  padding: 15px;
  color: var(--white-color);
  background: var(--light-gray-color);
}

.iq-tooltip-style-2 .tooltip::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  margin-left: -10px;
  border-bottom: 10px solid var(--light-gray-color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.iq-tooltip-style-2 .tooltip-down .tooltip {
  top: -90px;
}

.iq-tooltip-style-2 .tooltip-down .tooltip p {
  margin-bottom: 0;
}

.iq-tooltip-style-2 .tooltip-down .tooltip::after {
  bottom: -10px;
  top: auto;
  border-bottom: 0;
  border-top: 10px solid var(--light-gray-color);
}

.iq-tooltip-style-2 .tooltip ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*--------------------------------------------------------------
				Contact Form
  --------------------------------------------------------------*/
.wpcf7-response-output.wpcf7-validation-errors,
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
  position: relative;
  bottom: 0;
  left: 0;
  color: var(--primary-color);
  border: none;
  padding: 0;
  margin: 15px 0;
}

.contact-form .cfield {
  position: relative;
  width: 100%;
  display: inline-block;
}

.contact-form .cfield input[type=submit] {
  margin-top: 15px;
}

.contact-form .cfield input {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  background: var(--white-color);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding-left: 15px;
  height: 55px;
  line-height: 55px;
  clear: both;
  border: 1px solid var(--white-light-color);
}

.contact-form .cfield input:focus,
.contact-form .cfield.textarea textarea:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
  outline: none;
}

.contact-form .cfield textarea {
  margin-bottom: 15px;
  width: 100%;
  float: left;
  background: var(--white-color);
  border: 1px solid var(--white-light-color);
  border-radius: 0px;
  padding: 15px 0 0 20px;
  resize: none;
}

.contact-form .cfield .wpcf7-not-valid {
  border: 1px solid var(--warning-color);
}

.contact-form .ajax-loader {
  margin: 32px 0 0 5px;
}

/*style 2*/
.iq-contactform-2 .iq-title-box.text-center {
  margin-bottom: 30px
}

.iq-contactform-2 {
  padding: 45px;
  background: var(--white-light-color);
}

.iq-contactform-2 h2 {
  text-align: center;
}

.iq-contactform-2 input:hover,
.iq-contactform-2 input[type=text]:hover,
.iq-contactform-2 textarea:hover {
  border: 1px solid var(--primary-color);
}

.iq-contactform-2 .button {
  cursor: pointer;
  margin-top: 15px;
}

.iq-contactform-2 p {
  margin-bottom: 0;
}

/*style 3*/
.iq-contactform-3 .cfield textarea {
  height: 300px;
}

/*--------------------------------------------------------------
			Newsletter
  --------------------------------------------------------------*/

/*style 1*/
.iq-subscribe-style-1 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.iq-subscribe-style-1 input[type=email] {
  margin: 0 15px 0 0;
  width: 80%;
}

.iq-subscribe-style-1 [type=submit] {
  position: relative;
  padding: 10px 30px;
}

/*style 2*/
.iq-subscribe-style-2 {
  position: relative;
}

.iq-subscribe-style-2 input[type=email] {
  margin: 0 15px 0 0;
  width: 100%;
}

.iq-subscribe-style-2 [type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 30px;
}

/*style 3*/
.iq-subscribe-style-3 {
  position: relative;
}

.iq-subscribe-style-3 input[type=email] {
  margin: 0 15px 0 0;
  width: 100%;
  border-radius: 0;
}

.iq-subscribe-style-3 [type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 30px;
  border-radius: 0;
}

/*style 4*/
.iq-subscribe-style-4 {
  position: relative;
  text-align: center;
}

.iq-subscribe-style-4 input[type=email] {
  margin: 0 0 30px 0;
  width: 100%;
}

.iq-subscribe-style-4 [type=submit] i {
  margin-left: 15px;
}

/*style 5*/
.iq-subscribe-style-5 {
  position: relative;
}

.iq-subscribe-style-5 input[type=email] {
  margin: 0;
  width: 100%;
  border-radius: 0;
  background: transparent;
}

.iq-subscribe-style-5 [type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 30px;
  border-radius: 0;
}

/*style 6*/
.iq-subscribe-style-6 {
  position: relative;
}

.iq-subscribe-style-6 input[type=email] {
  margin: 0;
  width: 100%;
  border-radius: 0;
  background: transparent;
  padding: 0;
  border: none;
  border-bottom: 2px solid var(--title-color);
}

.iq-subscribe-style-6 [type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--title-color);
  font-size: 24px;
}

/*style 7*/
.iq-subscribe-style-7 {
  position: relative;
}

.iq-subscribe-style-7 input[type=email] {
  margin: 0 15px 0 0;
  width: 100%;
}

.iq-subscribe-style-7 [type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*style 8*/
.iq-subscribe-style-8 {
  position: relative;
}

.iq-subscribe-style-8 input[type=email] {
  margin: 0;
  width: 100%;
  border-radius: 5px;
  background: transparent;
  border-color: var(--title-color);
}

.iq-subscribe-style-8 [type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 30px;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*--------------------------------------------------------------
			   Fancy Box
  --------------------------------------------------------------*/
.iq-fancy-box.text-center .iq-img-area {
  margin: 0 auto;
}


/*style 5*/
.iq-fancy-box-style-5 {
  background: var(--white-color);
  border-radius: 10px;
}

.iq-fancy-box-style-5,
.iq-fancy-box-style-5 .iq-fancy-title,
.iq-fancy-box-style-5 .fancy-box-content,
.iq-fancy-box-style-5 .iq-fancy-read-more {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  position: relative;
}

.iq-fancy-box-style-5 {
  cursor: pointer;
  padding: 30px;
  text-align: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  overflow: hidden;
  background: var(--light-color);
}

.iq-fancy-box-style-5:hover img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-animation-name: wobble-vertical;
  animation-name: wobble-vertical;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.iq-fancy-box-style-5 i {
  font-size: 45px;
}

.iq-fancy-box-style-5 .iq-img-area {
  position: relative;
}

.iq-fancy-box-style-5 .iq-fancy-title {
  margin: 15px 0 15px;
}

.iq-fancy-box-style-5 .iq-fancy-box-content .fancy-box-content {
  color: var(--secondary-text);
}

.iq-fancy-box-style-5 .iq-fancy-read-more:hover,
.iq-fancy-box-style-5 .iq-fancy-read-more.active {
  padding-left: 10px;
}

.iq-fancy-box-style-5 .iq-fancy-read-more {
  position: relative;
  padding-right: 36px;
  display: inline-block;
  transform: inherit;
  right: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-fancy-box-style-5:before {
  content: "";
  background: var(--primary-color);
  opacity: 0;
  transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  bottom: 0;
  width: 100%;
  height: 0;
  display: inline-block;
  left: 0;
  position: absolute;
  border-radius: 10px;
}

.iq-fancy-box-style-5:hover:before {
  height: 100%;
  opacity: 1;
  -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.iq-fancy-box-style-5:hover i,
.iq-fancy-box-style-5:hover .iq-fancy-title,
.iq-fancy-box-style-5:hover .fancy-box-content,
.iq-fancy-box-style-5:hover .iq-fancy-read-more {
  color: var(--white-color);
}

.iq-fancy-box-style-5 .iq-btn-text-holder {
  background: none;
  padding: 0;
}

.iq-fancy-box-style-5:hover .iq-btn-text-holder,
.iq-fancy-box-style-5:hover .iq-button-style-2 .iq-btn-text-holder::after {
  color: var(--white-color);
  transition: 0.8s;
}

.iq-fancy-box-style-5 .iq-btn-text-holder,
.iq-fancy-box-style-5 .iq-button-style-2 .iq-btn-text-holder::after {
  color: var(--primary-color);
}

@-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}

@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
			   Icon Box
  --------------------------------------------------------------*/
/*style 2*/
.iq-icon-box-style-2 {
  align-items: center;
  display: flex;
  padding: 30px;
  border: 1px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-icon-box-style-2 .icon-box-img {
  margin-right: 30px;
}

.iq-icon-box-style-2 .icon-box-img i {
  font-size: 45px;
  color: var(--primary-color);
  display: inline-block;
  line-height: normal;
}

.iq-icon-box-style-2 .icon-box-content {
  flex: 1;
}

.iq-icon-box-style-2 .icon-box-content .icon-box-title a {
  display: inline-block;
}

.iq-icon-box-style-2 .icon-box-content .icon-box-desc {
  margin: 0;
}

.iq-icon-box-style-2:hover,
.iq-icon-box-style-2.active {
  border-color: var(--white-light-color);
  background: var(--white-color);
  -webkit-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

/*style 3*/
.iq-icon-box-style-3 {
  top: 0;
  position: relative;
  z-index: 1;
  display: block;
  padding: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-icon-box-style-3 .icon-box-img i {
  line-height: 1;
  font-size: 40px;
  color: var(--primary-color);
  margin-right: 10px;
  position: relative;
  display: block;
}

.iq-icon-box-style-3 .icon-box-img .img-style-3 {
  margin-right: 0px;
  display: flex;
  align-items: center;
}

.iq-icon-box-style-3 .icon-box-img {
  margin-bottom: 15px;
}

.iq-icon-box-style-3 .icon-box-content .icon-box-desc {
  margin: 0;
}

.iq-icon-box-style-3 {
  -webkit-box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
}

.iq-icon-box-style-3:hover,
.iq-icon-box-style-3.active {
  -webkit-box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.10);
  -moz-box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.10);
}

.iq-icon-box-style-3 .iq-btn-container {
  margin-top: 5px;
}

.iq-icon-box-style-3 .icon-box-content .iq-btn-container .iq-button-style-2 .iq-btn-text-holder {
  background: var(--white-color);
  color: var(--primary-color);
  padding: 0;
  border: none;
}

.iq-icon-box-style-3 .icon-box-content .iq-btn-container .iq-button-style-2 {
  border-radius: 0;
}

.iq-icon-box-style-3 .icon-box-title {
  border-style: none;
  align-items: center;
  display: flex;
  margin: 0 0 0 15px;
}

.iq-icon-box-style-3 .iq-btn-container .btn-icon-right i {
  margin-left: 15px;
  color: var(--primary-color);
  font-size: 25px;
  top: 4px;
  position: relative;
}

.iq-icon-box-style-3:hover .img-style-3 i,
.iq-icon-box-style-3.active .img-style-3 i {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-button-style-2 .iq-btn-text-holder::after {
  font-family: "Ionicons";
  display: inline-block;
  padding-left: 15px;
  vertical-align: middle;
  font-weight: 900;
  content: "\f3d6";
  color: var(--white-color);
  font-size: 18px;
  margin-top: 0px;
}

.iq-icon-box-style-3 .iq-button-style-2 .iq-btn-text-holder::after {
  color: var(--primary-color);
}

/*style 6*/
.iq-icon-box-style-6 {
  display: block;
  position: relative;
  background: var(--white-color);
  border-radius: 5px;
  min-height: 160px;
  padding: 20px;
  z-index: 0;
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.05);
}

.iq-icon-box-style-6 {
  min-height: 160px;
}

.iq-icon-box-style-6 a:hover {
  color: var(--white-color);
}

.iq-icon-box-style-6:hover:after,
.iq-icon-box-style-6.active:after {
  z-index: -2;
}

.iq-icon-box-style-6:after {
  content: "";
  width: 70px;
  height: 70px;
  background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: -2;
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  opacity: 0;
  transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.iq-icon-box-style-6:hover:after,
.iq-icon-box-style-6.active:after {
  opacity: 1;
}

.iq-icon-box-style-6::before {
  background: var(--secondary-color);
}

.iq-icon-box-style-6 .icon-box-img i {
  color: var(--secondary-color);
  font-size: 45px;
}

.iq-icon-box-style-6:before {
  border-radius: 5px;
  content: "";
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.iq-icon-box-style-6:hover:before,
.iq-icon-box-style-6.active:before {
  opacity: 1;
  z-index: -1;
}

.iq-icon-box-style-6 .icon-box-img i,
.iq-icon-box-style-6 .icon-box-title a,
.iq-icon-box-style-6 .icon-box-desc {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-icon-box-style-6 .icon-box-title a {
  margin-bottom: 30px;
}

.iq-icon-box-style-6:hover .icon-box-img i,
.iq-icon-box-style-6:hover .icon-box-title a,
.iq-icon-box-style-6:hover .icon-box-desc,
.iq-icon-box-style-6.active .icon-box-img i,
.iq-icon-box-style-6.active .icon-box-title a,
.iq-icon-box-style-6.active .icon-box-desc {
  color: var(--white-color);
}

.iq-icon-box-style-6 .icon-box-title {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 50px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-icon-box-style-6 .icon-box-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80%;
  background: var(--primary-color);
  height: 1px;
  display: inline-block;
  opacity: 0.8;
}

.iq-icon-box-style-6:hover .icon-box-title:after {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  background: var(--primary-color);
  opacity: 0.5;
}

.iq-icon-box-style-6:hover .icon-box-title {
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

/*style 7*/
.iq-icon-box-style-7 {
  position: relative;
}

.iq-icon-box-style-7 .img-bg {
  width: 100%;
  text-align: center;
}

.iq-icon-box-style-7 .img-bg i {
  font-size: 40px;
  line-height: 80px;
  width: 50px;
  color: var(--primary-color);
}

.iq-icon-box-style-7 .img-bg img {
  width: auto;
  margin-top: 0px;
}

.iq-icon-box-style-7 .main-img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: 0%;
  transform: translate(-50%, -50%);
}

.iq-icon-box-style-7:active .icon-box-title a,
.iq-icon-box-style-7:hover .icon-box-title a {
  color: var(--secondary-color) !important;
}

.iq-icon-box-style-7 .icon-box-content .icon-box-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.iq-icon-box-style-7 .iq-rotate-text {
  width: auto;
  font-size: 12px;
  -webkit-animation: iqrotation 10s infinite linear;
  -moz-animation: iqrotation 10s infinite linear;
  -o-animation: iqrotation 10s infinite linear;
  animation: iqrotation 10s infinite linear;
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.iq-icon-box-style-7:hover .iq-rotate-text {
  animation: iqrotation 26s linear 0s infinite forwards;
  -webkit-animation: iqrotation 10s infinite linear;
  -moz-animation: iqrotation 10s infinite linear;
  -o-animation: iqrotation 10s infinite linear;
  animation: iqrotation 10s infinite linear;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.iq-icon-box-style-7 .iq-rotate-text:after {
  display: none;
}

@-webkit-keyframes iq-circle-effect {
  0% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg)
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-moz-keyframes iq-circle-effect {
  0% {
    -moz-transform: rotate(30deg);
    transform: rotate(30deg)
  }

  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-o-keyframes iq-circle-effect {
  0% {
    -o-transform: rotate(30deg);
    transform: rotate(30deg)
  }

  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes iq-circle-effect {
  0% {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg)
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

.iq-icon-box-style-7:hover .effect-circle,
.iq-icon-box-style-7.active .effect-circle {
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.iq-icon-box-style-7 .effect-circle {
  background: var(--white-color);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  position: relative;
  -webkit-animation: iq-circle-effect 10s infinite linear;
  -moz-animation: iq-circle-effect 10s infinite linear;
  -o-animation: iq-circle-effect 10s infinite linear;
  animation: iq-circle-effect 10s infinite linear;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.05);
}

.iq-icon-box-style-7 .icon-box-img {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.iq-icon-box-style-7 .effect-circle:before {
  width: 15px;
  height: 15px;
  top: -15px;
  background: var(--primary-color);
  border: 0px solid var(--primary-color);
  border-radius: 90px;
  display: inline-block;
  position: absolute;
  content: "";
  opacity: 0.5;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.iq-icon-box-style-7:hover .effect-circle:before,
.iq-icon-box-style-7.active .effect-circle:before {
  opacity: 1;
}

.iq-icon-box-style-7.text-left .effect-circle:before {
  top: 50px;
  left: 0;
}

.iq-icon-box-style-7.text-right .effect-circle:before {
  right: 0;
  top: 50px;
}

.iq-icon-box-style-7 .icon-box-title a {
  margin-bottom: 10px;
}

.iq-icon-box-style-7 .icon-box-desc {
  margin-bottom: 0;
}

.iq-icon-box-style-7 .loader {
  position: absolute;
  width: 30%;
  height: 0px;
  padding-top: 28%;
  right: -40%;
  top: 32%;
  transform: translateX(-50%) translateY(-50%);
}

.iq-icon-box-style-7 .loader div:nth-child(1) {
  position: absolute;
  left: 15%;
  top: 38%;
  width: 8px;
  height: 8px;
  background-color: var(--light-blue-color);
  border-radius: 100%;
  transform: translateX(-50%) translateY(-50%);
  animation: wobble 1s linear 0.2s infinite;
}

.iq-icon-box-style-7 .loader div:nth-child(2) {
  position: absolute;
  left: 30%;
  top: 38%;
  width: 8px;
  height: 8px;
  background-color: var(--light-blue-color);
  border-radius: 100%;
  transform: translateX(-50%) translateY(-50%);
  animation: wobble 1s linear 0.4s infinite;
}

.iq-icon-box-style-7 .loader div:nth-child(3) {
  position: absolute;
  left: 45%;
  top: 38%;
  width: 8px;
  height: 8px;
  background-color: var(--light-blue-color);
  border-radius: 100%;
  transform: translateX(-50%) translateY(-50%);
  animation: wobble 1s linear 0.6s infinite;
}

@keyframes wobble {

  0%,
  50%,
  75% {
    transform: translateX(-50%) translateY(-50%) scale(1);
  }

  25% {
    transform: translateX(-50%) translateY(-50%) scale(1.4);
  }
}

/*style 8*/

.iq-icon-box-style-8 {
  margin: 0 0px;
  position: relative;
  padding: 0px 0px;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  background: var(--white-color);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.iq-icon-box-style-8 .icon-box-img i {
  font-size: 65px;
  color: var(--primary-color);
  line-height: normal;
}

.iq-icon-box-style-8 .icon-box-content .icon-box-title a {
  margin: 30px 0 0;
}

.iq-icon-box-style-8:hover .icon-box-img i,
.iq-icon-box-style-8:active .icon-box-img i {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-icon-box-style-8 .icon-box-content {
  margin-top: 20px;
}

.iq-icon-box-style-8 .icon-box-content .icon-box-desc {
  word-break: break-all;
}

.iq-icon-box-style-8 .icon-box-content .iq-btn-container .iq-btn-text-holder {
  border: 1px solid var(--white-color);
  padding: 0;
  color: var(--primary-color);
  background: var(--white-color);
}

.iq-icon-box-style-8 .iq-button-style-2 .iq-btn-text-holder::after {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
			Tab
  --------------------------------------------------------------*/

/*Horizontal style 1*/
.iq_tabing {
  text-align: left;
}

.iq-tabs {
  position: relative;
  z-index: 1;
}

.iq-tabs.iq-box-shadow {
  box-shadow: none;
}

.iq-tabs .tab-pane.fade.active.show {
  display: block;
}

.iq-tabs .tab-pane.fade {
  display: none;
}

.iq-tabs .nav.nav-pills {
  display: flex;
  width: 100%;
  margin-bottom: 0px;
  -webkit-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  background: var(--white-color);
  border-radius: 10px;
}

.iq-tabs .nav.nav-pills li {
  display: inline-block;
  width: 25%;
  vertical-align: middle;
  border-radius: 5px 5px 0 0;
  padding: 0 15px;
}

.iq-tabs .nav-pills .nav-link {
  background: var(--white-color);
}

.iq-tabs .nav-pills .nav-link .tab-title {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 50px;
}

.iq_tabing p.tab-title-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.iq-tabs .nav-pills .nav-link .tab-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  background: var(--primary-color);
  height: 2px;
  display: inline-block;
  opacity: 0.8;
}

.iq-tabs .tab-pane .tab-content-title h2 .right-text {
  color: var(--white-color);
}

.iq-tabs .tab-pane .tab-content-title h2 {
  color: var(--primary-color);
}

.iq-tabs .nav-pills .nav-link i {
  height: 80px;
  width: 80px;
  text-align: center;
  font-size: 45px;
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-tabs .nav-pills .nav-link i::before {
  vertical-align: middle;
  line-height: 80px
}

.iq-tabs .nav-pills .nav-link.active i,
.iq-tabs .nav-pills .nav-link.show i {
  color: var(--white-color);
}

.iq-tabs .nav-pills .nav-link {
  position: relative;
  text-align: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-tabs .nav-pills .nav-link:before {
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  height: 4px;
  background: var(--primary-color);
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
}

.iq-tabs .nav-pills .nav-link.active:before,
.iq-tabs .nav-pills .nav-link:hover:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  border-radius: 4px;
}

.iq-tabs .nav-pills .nav-link.active {
  background: transparent;
}

.iq-tabs .show_content {
  width: 100%;
}

.iq-tabs .nav-pills .nav-link .media-body {
  align-self: center;
  text-align: left;
}

.iq-tabs .nav-pills .nav-link.active.show {
  background: var(--secondary-color);
}

.iq-tab-horizontal-1 .nav-pills .nav-link {
  border-radius: 5px 5px 0 0;
  color: var(--title-color);
}

.iq-tabs .nav-pills .nav-link:hover i {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  color: var(--white-color);
}

.iq-tabs .iq-title-box i {
  font-size: 18px;
  margin-bottom: 15px;
}

.iq-tab-horizontal-1 .tab-content .tab-pane .iq-main-content .iq-description ul li {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.iq-tabs .tab-content {
  background: var(--secondary-color);
}

.iq-tabs .tab-content .iq-title-desc {
  color: var(--white-color);
  margin: 0;
}

hr.tab-block-diveder {
  margin: 25px 0 !important;
  border-color: rgba(255, 255, 255, 0.1);
}

/*Verticle style 2*/

.iq-tabs.iq-tab-vertical .nav.nav-pills {
  margin-bottom: 0;
  box-shadow: none;
}

.iq-tabs.iq-tab-vertical .nav.nav-pills li {
  width: 100%;
  padding: 0 30px 20px;
}

.iq-tabs.iq-tab-vertical .nav-pills .nav-link {
  border-left: 4px solid var(--primary-color);
  padding: 15px 25px;
  border-radius: 0px;
  text-align: left;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-tabs.iq-tab-vertical .nav-pills .nav-link .tab-title {
  font-size: 18px;
}

.iq-tabs.iq-tab-vertical .nav-pills .nav-link.active .tab-title-desc {
  display: block;
  transform: translateY(0px);
  opacity: 1;
  transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s;
}

.iq-tabs.iq-tab-vertical .nav-pills .nav-link.active,
.iq-tabs.iq-tab-vertical .nav-pills .nav-link:hover {
  background: var(--white-color);
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0px 29px 60px 0px rgba(19, 160, 251, 0.15);
}

.iq-tabs.iq-tab-vertical .nav-pills .nav-link.active:before,
.iq-tabs.iq-tab-vertical .nav-pills .nav-link:hover:before {
  display: none;
}

/*Verticle style 3*/
.iq-tabs.iq-tab-vertical-2 .nav.nav-pills {
  margin-bottom: 0;
  box-shadow: none;
}

.iq-tabs.iq-tab-vertical-2 .nav.nav-pills li {
  width: 100%;
  padding: 0 30px 30px;
}

.iq-tabs.iq-tab-vertical-2 .nav-pills .nav-link {
  transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  border: 1px solid transparent;
  text-align: left;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 10px;
}

.iq-tabs.iq-tab-vertical-2 .nav.nav-pills li .nav-link.active {
  border-color: var(--white-light-color);
  padding: 15px;
  -webkit-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
  box-shadow: -1px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.iq-tabs.iq-tab-vertical-2 .nav-pills li .nav-link:before {
  display: none;
  content: "";
  display: block;
  position: absolute;
  bottom: 15px;
  right: -100px;
  background: var(--white-light-color);
  border-radius: 10px;
  height: 60%;
  left: auto;
  transform: rotate(15deg);
  width: 60px;
}

.iq-tabs.iq-tab-vertical-2 .nav-pills li .nav-link.active:before {
  display: block;
  right: -50px;
}

/*style 4*/
.iq-tabs.iq-tab-horizontal-1 .nav.nav-pills {
  box-shadow: none;
  background: transparent;
  border-radius: 5px;
}

.iq-tabs.iq-tab-horizontal-1 {
  margin: 0 -15px;
}

.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link {
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link.active:before,
.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link.show:before,
.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link:hover:before {
  display: none;
}

.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link.active,
.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link.active .tab-title,
.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link:hover .tab-title {
  color: var(--white-color);
}

.iq-tabs.iq-tab-horizontal-1 .horizontal-tab-detail {
  margin: 0 -15px;
}

/*---------------------------------------------------------------------
		 Image  Background Effext
  -----------------------------------------------------------------------*/
.iq_background_list_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  background: black
}

.iq_background_list_column {
  min-height: 80vh
}

.iq_background_list_wrapper .iq_background_list_column {
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(256, 256, 256, .5);
}

.iq_background_list_wrapper .iq_background_list_column.hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.iq_background_list_wrapper .iq_background_list_column.last {
  border-right: 0
}

.iq_background_list_wrapper.one_columns .iq_background_list_column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.iq_background_list_wrapper.two_columns .iq_background_list_column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.iq_background_list_wrapper.three_columns .iq_background_list_column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%
}

.iq_background_list_wrapper.four_columns .iq_background_list_column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%
}

.iq_background_list_wrapper .iq_background_list_column .iq_background_list_content {
  display: flex;
  height: 100%;
  padding: 45px 30px;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white-color);
}

.iq_background_list_wrapper .iq_background_list_column .iq_background_list_content h4 {
  color: var(--white-color);
}

.iq_background_list_wrapper .iq_background_img,
.iq_background_list_wrapper .iq_background_list_overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.3;
  background: var(--secondary-color);
}

.iq_background_list_wrapper .iq_background_img {
  visibility: hidden;
  opacity: 0;
  transition: all 1s
}

.iq_background_list_wrapper .iq_background_img.hover {
  opacity: 1;
  visibility: visible;
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

.iq_background_list_wrapper .iq_background_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover
}

.iq_background_list_wrapper .iq_background_list_column:hover .iq_background_list_link,
.iq_background_list_wrapper .iq_background_list_column.hover .iq_background_list_link {
  max-height: 100%;
  opacity: 1;
  overflow: visible
}

.iq_background_list_wrapper .iq_background_list_content .iq_background_list_link {
  overflow: hidden;
  transition: transform .2s ease;
  margin: 30px 0;
}

.iq_background_list_wrapper .iq_background_list_content .iq_background_list_title {
  transition: transform .3s ease;
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -webkit-transform: translateY(10px);
  transform: translateY(10px)
}

.iq_background_list_wrapper .iq_background_list_column.hover .iq-button {
  bottom: 0;
}

.iq_background_list_wrapper .iq-button {
  position: absolute;
  bottom: -70px;
  border-radius: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.iq-background-details {
  top: 40%;
  position: relative;
}

.iq_background_list_wrapper .iq_background_list_column.hover .iq-background-details {
  top: 30%;
}

.iq_background_list_wrapper .iq_background_list_column .iq-background-details {
  top: 84%;
}

.iq_background_list_wrapper .iq_background_list_column i {
  font-size: 40px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.iq_background_list_wrapper .iq_background_list_column .title-color {
  color: var(--white-color)
}

.iq_background_list_wrapper .iq_background_list_column .iq-background-details {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

/*----------------------------------------
	  animation rotate-center
	----------------------------------------*/
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes anti-clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes anti-clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/*--------------------------------------------------------------
                Lists
  --------------------------------------------------------------*/
.iq-list li {
  padding-left: 10px;
  margin-bottom: 10px;
}

.iq-list li:last-child {
  margin-bottom: 0;
}

.iq-list-with-icon,
.iq-list-with-img,
.iq-list ul {
  padding: 0;
  margin: 0;
}

.iq-list-with-icon li,
.iq-list-with-img li {
  padding-left: 0;
  list-style: none;
  display: flex;
}

.iq-list-with-icon li i,
.iq-list-with-img li img {
  margin-right: 10px;
  color: var(--primary-color);
  width: auto;
  height: 100%;
  margin-top: 6px;
}

.iq-list.iq-one-column {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
}

.iq-list.iq-two-column {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.iq-list.iq-three-column {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}

.iq-list.iq-four-column {
  columns: 4;
  -webkit-columns: 4;
  -moz-columns: 4;
}

.iq-list.iq-five-column {
  columns: 5;
  -webkit-columns: 5;
  -moz-columns: 5;
}

.iq-list.iq-six-column {
  columns: 6;
  -webkit-columns: 6;
  -moz-columns: 6;
}

/*----------------------------------------
	Slider With Text
  ----------------------------------------*/
.iq-slider-with-text .slider-nav .slick-list {
  overflow: visible;
}

.iq-slider-with-text .slider-nav {
  overflow: hidden;
  margin: 75px 0 60px;
  width: 100%;
}

.iq-slider-with-text .slider-nav li img {
  display: block;
  width: auto;
  height: 70px;
  margin: 0 auto;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.iq-slider-with-text .slider-nav li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px;
  height: 70px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  outline: none;
  width: 150px;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

@media (min-width:768px) {
  .iq-slider-with-text .slider-nav {
    padding-top: 150px;
  }

  .iq-slider-with-text .slider-nav li.slick-current {
    -webkit-transform: translateY(-75px) scale(2.5) !important;
    -ms-transform: translateY(-75px) scale(2.5) !important;
    transform: translateY(-75px) scale(2.5) !important;
  }
}

@media (min-width:1280px) {
  .iq-slider-with-text .slider-nav li.near-item {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    -webkit-transform: scale(1.2) !important;
    -ms-transform: translateY(-35px) scale(1.2) !important;
    transform: translateY(-35px) scale(1.2) !important;
  }
}

@media (max-width:767px) {
  .iq-slider-with-text .slider-nav {
    margin: 35px 0
  }
}

.iq-slider-with-text .slider-for {
  margin-top: -25px
}

.iq-slider-with-text .slider-for .slider-text {
  padding-top: 25px
}

.iq-slider-with-text .slider-for .slider-text .slider-title {
  margin-bottom: 30px;
}

.iq-slider-with-text .slider-for .slider-text.slick-active .slider-title,
.iq-slider-with-text .slider-for .slider-text.slick-active .iq-button,
.iq-slider-with-text .slider-for .slider-text.slick-active .slider-desc {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.iq-slider-with-text .slider-for .slider-text.slick-active .slider-title {
  -webkit-transition-delay: .2s;
  transition-delay: .2s
}

.iq-slider-with-text .slider-for .slider-text.slick-active .slider-desc {
  -webkit-transition-delay: .375s;
  transition-delay: .375s
}

.iq-slider-with-text .slider-for .slider-text.slick-active .iq-button {
  -webkit-transition-delay: .55s;
  transition-delay: .55s
}

.iq-slider-with-text .slider-for .slider-text div {
  max-width: 590px;
  margin: 0 auto
}

.iq-slider-with-text .slider-for .slider-text .slider-title,
.iq-slider-with-text .slider-for .slider-text .iq-button,
.iq-slider-with-text .slider-for .slider-text .slider-desc {
  opacity: 0;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
  -webkit-transition: opacity .35s, -webkit-transform .5s ease;
  transition: opacity .35s, -webkit-transform .5s ease;
  transition: opacity .35s, transform .5s ease;
  transition: opacity .35s, transform .5s ease, -webkit-transform .5s ease
}

.iq-slider-with-text .slider-nav .slick-arrow {
  -webkit-transform: translateY(-62%);
  -ms-transform: translateY(-62%);
  transform: translateY(-62%);
}

.iq-slider-with-text .slider-nav .slick-arrow.slick-prev {
  left: 25px;
}

.iq-slider-with-text .slider-nav .slick-arrow.slick-next {
  right: 25px;
}

.iq-slider-with-text .slider-nav .slick-arrow {
  position: absolute;
  color: var(--primary-color);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  padding-top: 14px;
  cursor: pointer;
  font-size: 0;
}

.iq-slider-with-text .slider-nav .slick-arrow .slick-prev:before,
.iq-slider-with-text .slider-nav .slick-arrow .slick-next:before {
  font-family: 'Roboto', sans-serif;
}

.iq-slider-with-text .slider-nav .slick-arrow.slick-prev:before,
.iq-slider-with-text .slider-nav .slick-arrow.slick-next:before {
  color: var(--primary-color);
}

/*style 3*/
.iq-slider-with-text-2.swiper-container .consulting-project .project-details {
  text-align: left;
}

.iq-slider-with-text-2.swiper-container .project-year {
  position: relative;
  margin-bottom: 15px;
}

.iq-slider-with-text-2.swiper-container .project-year .slider-date {
  margin: 0;
}

.iq-slider-with-text-2.swiper-container .swiper-slide {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 30px;
  margin-top: 10px;
}

.iq-slider-with-text-2.swiper-container .project-year:before {
  position: absolute;
  content: "";
  left: 0;
  top: -40px;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 90px;
}

.iq-slider-with-text-2.swiper-container .consulting-project {
  position: relative;
  margin: 30px 15px;
  padding: 10px;
  background: var(--white-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  display: inline-block;
  -webkit-box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.swiper-scrollbar {
  background: var(--white-light-color);
}

.iq-slider-with-text-2.swiper-container .consulting-project .project-details {
  text-align: center;
  padding: 15px;
}

.iq-slider-with-text-2.swiper-container .consulting-project .project-details span {
  font-weight: normal;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/*style-2*/
.iq-screenshots {
  overflow: hidden;
  position: relative;
}

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

  25% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.screenshots-slider {
  display: inline-block;
  width: 100%;
  min-height: 580px;
}

.slider-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 780px;
  height: 580px;
  margin: -300px 0 0 -390px;
}

.slider-container .slider-content {
  position: relative;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.slider-container .slider-content .slider-single {
  background: var(--white-color);
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: z-index 0ms 250ms;
}

.slider-container .slider-content .slider-single .slider-single-image {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 1px -3px 20px 0px rgba(0, 0, 0, 0.2);
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  transform: scale(0);
  opacity: 0;
}

.slider-container .slider-content .slider-single.preactivede .slider-single-image {
  transform: translateX(-50%) scale(0);
}

.slider-container .slider-content .slider-single.preactive {
  z-index: 1;
}

.slider-container .slider-content .slider-single.preactive .slider-single-image {
  opacity: .3;
  transform: translateX(-25%) scale(0.8);
}

.slider-container .slider-content .slider-single.proactive {
  z-index: 1;
}

.slider-container .slider-content .slider-single.proactive .slider-single-image {
  opacity: .3;
  transform: translateX(25%) scale(0.8);
}

.slider-container .slider-content .slider-single.proactivede .slider-single-image {
  transform: translateX(50%) scale(0);
}

.slider-container .slider-content .slider-single.active {
  z-index: 2;
}

.slider-container .slider-content .slider-single.active .slider-single-image {
  opacity: 1;
  transform: translateX(0%) scale(1);
}

.slider-container .slider-left {
  position: absolute;
  z-index: 3;
  display: block;
  right: 115%;
  top: 50%;
  color: var(--primary-color);
  transform: translateY(-50%);
  padding: 20px 15px;
  font-size: 60px;
}

.slider-container .slider-right {
  position: absolute;
  z-index: 3;
  display: block;
  left: 115%;
  top: 50%;
  color: var(--primary-color);
  transform: translateY(-50%);
  padding: 20px 15px;
  font-size: 60px;
}

/* Screenshots Slider NO Shadow  */
.no-shadow .slider-container .slider-content .slider-single .slider-single-image {
  box-shadow: none;
}

.no-shadow .slider-container .slider-content .slider-single.preactive .slider-single-image {
  opacity: 0;
}

.no-shadow .slider-container .slider-content .slider-single.proactive .slider-single-image {
  opacity: 0;
}

/*----------------------------------------
	Map
  ----------------------------------------*/
.iq-map-chart .iq-map-lable {
  height: 150px;
  width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  background: var(--white-color);
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  border-radius: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.iq-map-chart .iq-map-lable .iq-map-location-value {
  font-size: 50px;
  line-height: 50px;
}

.iq-map-chart .iq-map-lable .iq-map-info {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}

#chartdiv {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

#chartdiv svg {
  pointer-events: none;
}

.map-marker {
  margin-left: -8px;
  margin-top: -8px;
  box-sizing: border-box;
}

.map-marker.map-clickable {
  cursor: pointer;
}

.map-marker .pulse {
  -webkit-animation: shadow-pulse-dots 1s ease-in-out infinite;
  animation: shadow-pulse-dots 1s infinite;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  z-index: 10;
  position: absolute;
  box-sizing: border-box;
}

.map-marker .dot {
  border: 10px solid yellow;
  background: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: pulse 3s ease-out;
  -moz-animation: pulse 3s ease-out;
  animation: pulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0;
  box-sizing: border-box;
}

.popover .iq-tooltip-content {
  text-align: center;
}

.popover {
  border-radius: 10px;
}

.popover .iq-tooltip-content .tooltipimg {
  margin-bottom: 15px;
}

.popover .iq-tooltip-content .tooltip-title {
  margin-bottom: 10px;
}

.popover .iq-tooltip-content .tooltip-info {
  margin-bottom: 15px;
}

@keyframes shadow-pulse-dots {
  0% {
    box-shadow: 0 0 0 0px rgba(37, 177, 95, 0.2);
  }

  100% {
    box-shadow: 0 0 0 15px rgba(37, 177, 95, 0);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0);
    opacity: 0.0;
  }

  25% {
    -moz-transform: scale(0);
    opacity: 0.1;
  }

  50% {
    -moz-transform: scale(0.1);
    opacity: 0.5;
  }

  75% {
    -moz-transform: scale(0.7);
    opacity: 0.9;
  }

  100% {
    -moz-transform: scale(1);
    opacity: 0.0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }

  25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
  }

  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.5;
  }

  75% {
    -webkit-transform: scale(0.7);
    opacity: 0.9;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}

/*----------------------------------------
   iq-video
  ----------------------------------------*/
.iq-popup-video {
  position: relative;
}

.iq-popup-video .iq-video-img .iq-video-icon img {
  border-radius: 10px;
  width: 100%;
}

.iq_video_content {
  box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.05);
  background: var(--white-color);
  border-radius: 10px;
}

.iq-video-icon {
  display: block;
  width: 100%;
  height: auto;
}

.iq-popup-video .iq-video i {
  cursor: pointer;
  color: var(--white-color);
  font-size: 50px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transform: translateY(-22px)
}

.iq-video-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  z-index: 1;
}

.iq-popup-video i {
  margin-left: 5px;
  font-family: FontAwesome;
}

.iq-popup-video:hover i {
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-popup-video .iq-waves {
  display: block;
  position: absolute;
  width: 250px;
  height: 250px;
  z-index: 2;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.iq-popup-video .iq-waves .waves {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.iq-popup-video .iq-waves .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.iq-popup-video .iq-waves .wave-2 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.iq-popup-video .iq-waves .wave-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/*Contact Us*/
.contact-box ul li:hover {
  background: var(--white-color);
}

.contact-box ul li:hover a {
  color: var(--primary-color);
}

.contact-box ul li a {
  color: var(--white-color)
}

.contact-box ul li {
  display: inline-block !important;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  color: var(--white-color);
  background: transparent;
  text-align: center;
  margin-right: 10px;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}

.contact-box ul {
  padding: 0;
}

.contact-box {
  position: relative;
}

.contact-basic {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}

/*----------------------------------------
	Responsive
  ----------------------------------------*/
@media(max-width:1199px) {

  /*tabs*/
  .iq-tabs .nav-pills .nav-link .media-body {
    display: none;
  }

  .iq_tabing {
    text-align: center;
  }

  .iq_tabing img {
    width: 40px;
  }


  .iq-tab-horizontal-1 .nav-pills .nav-link {
    border-radius: 5px 5px 0 0;
    margin: 0 10px;
  }

  .iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link {
    padding: 10px;
  }

  .advance-feature .pricing-table {
    left: 60px;
  }

  .iq-tabs .nav.nav-pills li {
    padding: 0;
  }

}

@media(max-width:1024px) {
  .slider-container .slider-content {
    width: 85%;
    height: 85%;
  }

  .slider-container .slider-left {
    right: 100%;
  }

  .slider-container .slider-right {
    left: 100%;
  }

  .iq-feature-circle-2 .main-circle,
  .iq-feature-circle-2 .dot-circle {
    display: none;
  }

  .iq-feature-circle-2 .iq-img ul li {
    position: relative;
    margin: 0 15px 30px;
    vertical-align: middle;
  }

  .iq-feature-circle-2 .iq-img ul li:nth-child(1),
  .iq-feature-circle-2 .iq-img ul li:nth-child(2),
  .iq-feature-circle-2 .iq-img ul li:nth-child(3),
  .iq-feature-circle-2 .iq-img ul li:nth-child(4),
  .iq-feature-circle-2 .iq-img ul li:nth-child(5),
  .iq-feature-circle-2 .iq-img ul li:nth-child(6),
  .iq-feature-circle-2 .iq-img ul li:nth-child(7),
  .iq-feature-circle-2 .iq-img ul li:nth-child(8),
  .iq-feature-circle-2 .iq-img ul li:nth-child(9),
  .iq-feature-circle-2 .iq-img ul li:nth-child(10),
  .iq-feature-circle-2 .iq-img ul li:nth-child(11),
  .iq-feature-circle-2 .iq-img ul li:nth-child(12) {
    left: 0;
    top: 0;
    right: 0;
  }

  .iq-feature-circle-2 .iq-img ul li .feature-info,
  .iq-feature-circle-2 .iq-img ul li:nth-child(1) .feature-info,
  .iq-feature-circle-2 .iq-img ul li:nth-child(2) .feature-info,
  .iq-feature-circle-2 .iq-img ul li:nth-child(3) .feature-info,
  .iq-feature-circle-2 .iq-img ul li:nth-child(4) .feature-info {
    height: 140px;
    width: 140px;
  }

  /*count down*/
  .iq-count-down .iq-data-countdown-timer .timerDisplay .displaySection {
    margin-bottom: 30px;
  }

  /*counter*/
  .iq-counter.iq-counter-style-2 {
    padding: 15px 0px;
  }

  /*faq*/
  .iq-accordion-round .iq-accordion-block {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .iq-team-slider {
    margin: 0;
  }

  .iq-tooltip-style-2 .tooltip-down.tooltip-down-0 {
    left: 0 !important;
    right: 0;
    margin: 0 auto;
  }

  .iq-tooltip-style-2 .tooltip-down.tooltip-down-1 {
    left: auto !important;
    top: 100px !important;
    right: 100px;
  }

  .iq-tooltip-style-2 .tooltip-down.tooltip-down-2 {
    left: 50px !important;
    top: 205px !important;
  }

  .iq-tooltip-style-2 .tooltip-down.tooltip-down-3 {
    left: 0 !important;
    top: 240px !important;
    right: 0;
    margin: 0 auto;
  }

  .iq-tooltip-style-1 p {
    font-size: 24px;
  }

  .iq-team ul.grid.iq-col-3 li.item,
  .iq-team ul.grid.iq-col-4 li.item,
  .iq-team ul.grid.iq-col-5 li.item,
  .iq-team.iq-team-style-11 ul.grid.grid-style-1 li.item,
  .iq-team.iq-team-style-11 ul.grid.grid-style-1 li.item:first-child {
    width: 50%;
  }

  .advance-feature .service-price ul {
    padding-left: 0px;
  }

  .advance-feature .col-lg-6.btn-top {
    padding-top: 250px;
  }

  /*section title box*/
  .iq-title-box.text-center {
    margin-bottom: 30px;
  }
}

@media(max-width:992px) {

  /*clients*/
  .iq-client-col-6 li,
  .iq-client-col-5 li,
  .iq-client-col-4 li {
    width: 50%;
  }

  /*image background effect*/
  .iq_background_list_wrapper {
    float: left;
    width: 100%;
    display: inline-block;
  }

  .iq_background_list_wrapper.four_columns .iq_background_list_column {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .iq_background_list_wrapper .iq_background_list_column {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    min-height: 40vh;
    overflow: hidden;
    text-align: center;
  }

  /*FAQ*/
  .iq-accordion .iq-accordion-title {
    padding: 25px 0;
  }

  .iq-accordion .iq-accordion-details {
    padding-left: 0;
  }

}

@media(max-width:767px) {
  .slider-container .slider-content {
    width: 40%;
    height: 40%;
  }

  .slider-container .slider-left {
    right: 74%;
  }

  .slider-container .slider-right {
    left: 74%;
  }

  .screenshots-slider {
    min-height: 250px;
  }

  .advance-feature .pricing-table {
    top: 60px;
    left: 30px;
  }

  .advance-feature .col-lg-6.border-right-0 {
    padding: 30px;
    padding-top: 125px;
  }

  /*Feature Circle*/
  .iq-feature-circle {
    height: 450px;
    width: 450px;
    display: block;
  }

  .iq-feature-circle .iq-img::before,
  .iq-feature-circle .iq-img {
    height: 400px;
    width: 400px;
  }

  /*clients*/
  .iq-client-col-6 li,
  .iq-client-col-5 li,
  .iq-client-col-4 li,
  .iq-client-col-3 li,
  .iq-client-col-2 li {
    width: 100%;
  }

  .iq-subscribe-style-1 {
    display: block;
    text-align: center;
  }

  /*tooltip*/
  .iq-tooltip-style-2 .tooltip-down.tooltip-down-1 {
    top: 24% !important;
    right: 10%;
  }

  .iq-tooltip-style-2 .tooltip-down.tooltip-down-2 {
    left: 10% !important;
    top: 55% !important;
  }

  .iq-tooltip-style-2 .tooltip-down.tooltip-down-3 {
    top: auto !important;
    bottom: 20%;
  }

}

@media(max-width:575px) {

  /*tabs*/
  .tab-content .iq-description ul {
    margin-bottom: 0;
  }

  .tab-content .iq-description .iq-btn-container .iq-button-style-2 {
    margin-top: 20px;
  }

  /*Team*/
  .iq-team-style-3 .iq-team-style-box .iq-team-info {
    padding: 30px;
  }
}

@media(max-width:479px) {
  .iq-tabs .nav-pills .nav-link i::before {
    font-size: 30px;
  }

  .iq-tabs .nav-pills .nav-link i {
    line-height: 60px;
  }

  .iq-icon-box-style-12 {
    display: block;
  }

  .iq-icon-box-style-12 .icon-box-img {
    margin-bottom: 30px;
  }

  .slider-container .slider-content {
    width: 26%;
    height: 26%;
  }

  .slider-container .slider-left {
    right: 63%;
  }

  .slider-container .slider-right {
    left: 63%;
  }

  .screenshots-slider {
    min-height: 180px;
  }

  .iq-team ul.grid.iq-col-3 li.item,
  .iq-team ul.grid.iq-col-4 li.item,
  .iq-team ul.grid.iq-col-5 li.item,
  .iq-team.iq-team-style-11 ul.grid.grid-style-1 li.item,
  .iq-team.iq-team-style-11 ul.grid.grid-style-1 li.item:first-child {
    width: 100%;
  }

  .advance-feature .nav-pills .nav-link,
  .advance-feature .nav-pills .nav-link.active {
    padding: 10px 20px;
  }

  .advance-feature .pricing-table {
    top: 30px;
    left: 15px;
  }

  /*contact Form*/
  .iq-contactform-2 {
    padding: 30px;
  }

  /*Icon Box*/
  .iq-icon-box-style-2 {
    display: block;
  }

  .iq-icon-box-style-2 .icon-box-img {
    margin-bottom: 30px;
    display: block;
  }

  /*fancy box*/
  .iq-fancy-box-style-2 .iq-fancy-box-content {
    margin: 100px 30px 60px;
  }

  /*testimonial*/
  .iq-testimonial-2 .iq-testimonial-member:before {
    display: none;
  }

  .iq-testimonial-2 .iq-testimonial-info img {
    margin-bottom: 15px;
  }

  .iq-testimonial-2 .iq-testimonial-member {
    margin-bottom: 15px;
  }

  .iq-testimonial-8 .iq-testimonial-info {
    padding: 30px 15px 60px;
  }

  /*tooltip*/
  .iq-tooltip-style-1 .tooltip-content {
    margin: 0 0 30px -100px;
    width: 250px;
  }

  .iq-fancy-box-style-9 .iq-fancy-info {
    width: 100%;
  }

  .iq-fancy-box-style-9 .iq-img-area {
    position: relative;
    width: 100%;
  }
}

@media(max-width:414px) {

  /*tabs*/
  .iq-tabs .nav-pills .nav-link i {
    font-size: 0;
  }

  .iq-tabs .nav-pills .nav-link i::before {
    line-height: 45px;
  }
}

@media(max-width:375px) {

  /*tabs*/
  .iq-tabs .nav-pills .nav-link i::before {
    line-height: 20px;
  }

  .iq_tabing img {
    width: 30px;
  }

  .icon-box-img .img-style-3 img {
    width: 50px;
  }

}

/*---------------------------------------------------------------------
  sidebar button
  -----------------------------------------------------------------------*/
.menu-btn .line {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
}

.iq-sidearea-btn-container .menu-btn {
  vertical-align: middle;
}

.iq-sidearea-btn-container {
  display: inline-block;
  padding: 0;
  border-radius: 5px;
  padding-right: 0;
  text-align: center;
  cursor: pointer;
  background: var(--primary-color);
  border-radius: 50%;
  height: 45px;
  width: 45px;
  line-height: 45px;
}

body.side-bar-open .iq-sidearea-btn-container.btn-container-close {
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

body.side-bar-open .iq-sidearea-btn-container.btn-container-close:hover {
  background: var(--secondary-color);
}

body.side-bar-open .iq-sidearea-btn-container.btn-container-close .menu-btn .line {
  background: var(--white-color);
}

body.side-bar-open .iq-sidearea-btn-container.btn-container-close:hover .menu-btn .line {
  background: var(--white-color);
}

.iq-sidearea-btn-container .menu-btn:hover {
  cursor: pointer;
}

.iq-sidearea-btn-container .menu-btn:hover {
  cursor: pointer;
}

.iq-sidearea-btn-container .menu-btn:hover {
  cursor: pointer;
}

#menu-btn-side-close .is-active {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-btn-side-close .is-active .line:nth-child(2) {
  width: 0px;
}

#menu-btn-side-close .is-active .line:nth-child(1),
#menu-btn-side-close .is-active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#menu-btn-side-close .is-active .line:nth-child(1) {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}

#menu-btn-side-close .is-active .line:nth-child(3) {
  -webkit-transform: translateY(-3px) rotate(90deg);
  -ms-transform: translateY(-3px) rotate(90deg);
  -o-transform: translateY(-3px) rotate(90deg);
  transform: translateY(-3px) rotate(90deg);
}

.iq-sidearea-btn-container.btn-container-close {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.side-bar-close .iq-menu-side-bar {
  right: -475px;
}

.side-bar-open .iq-menu-side-bar {
  right: 0;
}

.iq-menu-side-bar {
  margin: 0;
  background: var(--white-color);
  width: 475px;
  top: 0;
  right: -475px;
  position: fixed;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -webkit-transition: all 0.7s ease-in-out;
  padding: 90px 45px 45px 45px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1);
}

#sidebar-scrollbar {
  height: calc(100vh - 120px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.iq-sidearea-btn-container:hover .line.one,
.iq-vertical-btn-container:hover .menu-btn .line.one {
  animation: iq-sidbar-btn .5s ease;
}

.iq-sidearea-btn-container:hover .line.two,
.iq-vertical-btn-container:hover .menu-btn .line.two {
  animation: iq-sidbar-btn .5s .15s ease;
}

.iq-sidearea-btn-container:hover .line.three,
.iq-vertical-btn-container:hover .menu-btn .line.three {
  animation: iq-sidbar-btn .5s .4s ease;
}

@keyframes iq-sidbar-btn {

  0%,
  100% {
    width: 100%
  }

  50% {
    width: 0
  }
}

.iq-sidearea-btn-container.btn-container-close {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  will-change: transform;
}

.iq-sidearea-btn-container.btn-container-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media(max-width:1199px) {
  .iq-sidearea-btn-container {
    display: none;
  }
}

/*---------------------------------------------------------------------
			  Scrollbar
  -----------------------------------------------------------------------*/

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

._horizontal-scroll {
  scrollbar-color: var(--primary-color);
  width: 5px;
}

._horizontal-scroll::-webkit-scrollbar {
  width: 5px !important;
}

._horizontal-scroll::-webkit-scrollbar-track {
  background: var(--white-color) !important;
}

._horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color) !important;
  border-right: 1px solid white !important;
}

/*---------------------------------------------------------------------
							   Header vertical
  -----------------------------------------------------------------------*/
header.style-vertical ul .menu-item-has-children.show-sub .sub-menu-vertical {
  display: block;
}

header.style-vertical {
  width: 300px;
  position: fixed;
  left: 0;
  height: 100vh;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(44, 101, 144, 0.1);
  top: 0;
}

header.style-vertical .menu-item-has-children i {
  position: absolute;
  right: 30px;
  top: 16px;
}

header.style-vertical .navbar ul li:hover>.sub-menu {
  width: 100%;
  top: inherit;
  position: relative;
}

header.style-vertical #vertical-menu li ul li a {
  padding-left: 50px;
}

header.style-vertical #vertical-menu li ul ul li>a {
  padding-left: 65px;
}

header.style-vertical #vertical-menu li ul {
  padding-left: 0;
  position: relative;
}

header.style-vertical #vertical-menu li.active ul:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--light-blue-color);
  top: 0;
  left: 30px;
}

header.style-vertical #vertical-menu li {
  list-style-type: none;
  position: relative;
  white-space: nowrap;
}

header.style-vertical .navbar ul {
  width: 100%;
}

header.style-vertical .navbar ul li a {
  line-height: normal;
  padding: 15px 30px;
  display: block;
  overflow: hidden;
}

header.style-vertical .navbar ul li {
  text-align: left;
  display: block;
  margin: 0;
}

header.style-vertical .navbar-light {
  padding: 0;
  display: block;
}

.admin-bar header.style-vertical {
  padding-top: 30px;
}

#menu-sidebar-scrollbar {
  height: calc(100vh - 120px);
}

header.style-vertical .navbar ul {
  float: inherit;
  padding: 0;
}

header.style-vertical .navbar-brand {
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}

header.style-vertical #vertical-menu li.active>a::before,
header.style-vertical #vertical-menu>li.current-menu-ancestor>a:before,
header.style-vertical #vertical-menu>li.current-menu-item>a:before {
  opacity: 1;
  height: 75%;
}

header.style-vertical #vertical-menu li>a::before {
  content: "";
  width: 3px;
  height: 0px;
  display: inline-block;
  background: var(--primary-color);
  position: absolute;
  top: 7px;
  right: 0px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s;
}

header.style-vertical #vertical-menu li .iq-arrow-right {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

header.style-vertical #vertical-menu li a[aria-expanded="true"] .iq-arrow-right {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

#vertical-menu li.menu-item-has-children ul>li a:after {
  content: "";
  width: 12px;
  height: 2px;
  top: 25px;
  position: absolute;
  left: 32px;
  background: var(--light-blue-color);
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#vertical-menu li.menu-item-has-children ul>li.current-menu-ancestor:after,
#vertical-menu li.menu-item-has-children ul>li.current-menu-item:after {
  background: var(--primary-color);
}

header.style-vertical .navbar ul li.current-menu-ancestor ul li a:hover,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li a:hover,
header.style-vertical .navbar ul li.current-menu-ancestor ul li a:hover i {
  color: var(--primary-color);
}

.vertical-navbar-brand img {
  width: 160px;
}

header.style-vertical .navbar ul li:hover a,
header .navbar ul li:hover i {
  color: inherit;
}

header.style-vertical #vertical-menu li.active>a,
header.style-vertical #vertical-menu li.active>a i,
header.style-vertical .navbar ul li.current-menu-ancestor a,
header.style-vertical .navbar ul li.current-menu-ancestor i,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor a,
header.style-vertical .navbar ul li.current-menu-item a,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-item a,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li.current-menu-item a,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor a i,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li a {
  color: var(--primary-color);
}

header.style-vertical #vertical-menu li.active>a,
header.style-vertical .navbar ul li.current-menu-item a,
header.style-vertical #vertical-menu>li.current-menu-ancestor>a {
  background: var(--ver-menu-back);
}

header.style-vertical .navbar ul li .iq-has-sub-menu a {
  background: transparent;
}

header.style-vertical .navbar ul li.current-menu-ancestor ul li a,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li a,
header.style-vertical .navbar ul li.current-menu-ancestor ul li a i {
  color: var(--body-text);
}

header.style-vertical .navbar ul li a {
  color: var(--body-text);
}

header.style-vertical .navbar ul li a:hover {
  color: var(--primary-color);
}

#vertical-menu li.menu-item-has-children ul>li.current-menu-ancestor:after,
#vertical-menu li.menu-item-has-children ul>li.current-menu-item a:after,
header.style-vertical #vertical-menu li>a::before,
header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor>a:after,
header.style-vertical .navbar ul li a:hover:after,
#vertical-menu li.menu-item-has-children ul>li.current-menu-parent>a:after,
#vertical-menu li.menu-item-has-children ul>li a:hover:after {
  background: var(--primary-color);
}

/*---------------------------------------------------------------------
							   Waves Effect
  -----------------------------------------------------------------------*/
.iq-waves-effect {
  position: relative;
}

/*  Ripple */
.ripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgb(30, 61, 115, 0.4);
  transform: scale(0);
  position: absolute;
  opacity: 1;
}

.rippleEffect {
  animation: rippleDrop .6s linear;
}

@keyframes rippleDrop {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/*---------------------------------------------------------------------
							   vertical menu header bar
  -----------------------------------------------------------------------*/
.iq-vertical-btn-container.btn-vertical-open {
  display: inline-block;
  padding: 0 15px;
  position: relative;
  z-index: 99;
  vertical-align: middle;
}

.iq-vertical-btn-container.btn-vertical-open,
.vertical-navbar-brand {
  display: inline-block;
}

#vertical-menu-sub-main {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  align-items: center;
  z-index: 99;
  padding-right: 15px;
}

.vertical-menu-btn i {
  font-size: 20px;
}

.iq-vertical-btn-container.btn-vertical-close .vertical-menu-btn,
.iq-vertical-btn-container.btn-vertical-open .vertical-menu-btn {
  display: inline-block;
  background: var(--primary-color);
  padding: 5px;
  border-radius: 90px;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  line-height: 37px;
}

.iq-vertical-btn-container .menu-btn .line.two {
  width: 18px;
}

.iq-vertical-btn-container .menu-btn {
  vertical-align: middle;
}

.iq-vertical-btn-container.btn-vertical-close {
  position: relative;
  right: -25px;
}

.iq-vertical-btn-container.btn-vertical-close .vertical-menu-btn {
  font-size: 20px;
}

.iq-vertical-btn-container.btn-vertical-close {
  display: none;
}

.vertical-navbar-brand {
  position: relative;
  z-index: 99;
}

.responsive-vertical-logo-btn {
  position: relative;
  width: 100%;
  display: block;
}

.responsive-vertical-logo-btn .container-fluid {
  position: absolute;
  padding: 15px 15px;
  z-index: 100;
}

/*---------------------------------------------------------------------
							   vertical-menu-collapsed
  -----------------------------------------------------------------------*/
body.vertical-menu-collapsed header.style-vertical {
  left: -300px;
  z-index: 999;
}

body.vertical-menu-collapsed.vertical-menu-close header.style-vertical {
  left: 0;
}

body.vertical-menu-collapsed .site.vertical-site-content {
  padding-left: 0;
}

body.vertical-menu-collapsed .site.vertical-site-content .elementor-section.elementor-section-stretched {
  padding-left: 0 !important;
}

body.vertical-menu-collapsed .iq-vertical-btn-container.btn-vertical-close {
  display: inline-block;
  vertical-align: middle;
}

body.vertical-menu-close .iq-vertical-btn-container.btn-vertical-open,
body.vertical-menu-close .vertical-navbar-brand {
  opacity: 0;
}

/*---------------------------------------------------------------------
							   vertical-menu-expanded
  -----------------------------------------------------------------------*/
body.vertical-menu-expanded .iq-vertical-btn-container.btn-vertical-open,
body.vertical-menu-expanded .vertical-navbar-brand {
  opacity: 0;
  display: none;
}

body.vertical-menu-expanded .site.vertical-site-content .elementor-section.elementor-section-stretched {
  padding-left: 300px !important;
}

body.vertical-menu-expanded .site.vertical-site-content {
  display: block;
  width: 100%;
  height: 100%;
  float: left;
  padding-left: 300px;
}

/*---------------------------------------------------------------------
							   Scrolbar
  -----------------------------------------------------------------------*/
#sidebar-scrollbar .widget {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

#sidebar-scrollbar ul.info-share li {
  margin-right: 10px;
}

#sidebar-scrollbar .widget .iq-side-area-title,
.social-widget-media .iq-side-area-title {
  margin-bottom: 15px;
}

#sidebar-scrollbar .widget .iq-side-area-title img {
  padding: 60px 0;
}

#sidebar-scrollbar ul.info-share li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  background: var(--primary-color);
}

#sidebar-scrollbar ul.info-share li:hover a {
  background: var(--secondary-color);
}

#sidebar-scrollbar .footer-title.contact-info {
  margin-bottom: 15px;
}

/*---------------------------------------------------------------------
							  Dark mode 
  -----------------------------------------------------------------------*/
body.iq-dark-mode {
  background: var(--body-dark);
}

body.iq-dark-mode .iq-menu-side-bar {
  background: var(--dark-back);
}

body.iq-dark-mode h1,
body.iq-dark-mode h2,
body.iq-dark-mode h3,
body.iq-dark-mode h4,
body.iq-dark-mode h5,
body.iq-dark-mode h6,
body.iq-dark-mode a h1,
body.iq-dark-mode a h2,
body.iq-dark-mode a h3,
body.iq-dark-mode a h4,
body.iq-dark-mode a h5,
body.iq-dark-mode a h6 {
  color: var(--white-color);
}

body.iq-dark-mode,
body.iq-dark-mode .widget ul li a,
body.iq-dark-mode ul.iq-contact li i,
body.iq-dark-mode footer.footer-one .info-share li a {
  color: var(--dark-menu);
}

body.iq-dark-mode footer.footer-one .info-share li a:hover {
  color: var(--sub-title-color);
}

body.iq-dark-mode footer,
body.iq-dark-mode footer.iq-over-dark-90 {
  background: var(--dark-back);
}

/*---------------------------------------------------------------------
							  Dark mode  Vertical menu
  -----------------------------------------------------------------------*/
body.iq-dark-mode header.style-vertical {
  background: var(--dark-back);
}

body.iq-dark-mode #vertical-menu li.menu-item-has-children ul>li.current-menu-ancestor:after,
body.iq-dark-mode #vertical-menu li.menu-item-has-children ul>li.current-menu-item:after {
  background: var(--white-color);
}

.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li a:hover,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li a:hover,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li a:hover i {
  color: var(--white-color);
}

.vertical-navbar-brand img {
  width: 160px;
}

.iq-dark-mode header.style-vertical #vertical-menu li.active>a,
.iq-dark-mode header.style-vertical #vertical-menu li.active>a i,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor i,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-item a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-item a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li.current-menu-item a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor a i,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li a {
  color: var(--white-color);
}

.iq-dark-mode header.style-vertical #vertical-menu li.active>a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-item a,
.iq-dark-mode header.style-vertical #vertical-menu>li.current-menu-ancestor>a {
  background: var(--ver-menu-back);
}

.iq-dark-mode header.style-vertical .navbar ul li .iq-has-sub-menu a {
  background: transparent;
}

.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor ul li a,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li a i {
  color: var(--dark-menu);
}

.iq-dark-mode header.style-vertical .navbar ul li a {
  color: var(--dark-menu);
}

.iq-dark-mode header.style-vertical .navbar ul li a:hover,
.iq-dark-mode header.style-vertical .navbar ul li a:hover i {
  color: var(--white-color);
}

#vertical-menu li.menu-item-has-children ul>li.current-menu-ancestor:after,
#vertical-menu li.menu-item-has-children ul>li.current-menu-item a:after,
.iq-dark-mode header.style-vertical #vertical-menu li>a::before,
.iq-dark-mode header.style-vertical .navbar ul li.current-menu-ancestor ul li.current-menu-ancestor>a:after,
.iq-dark-mode header.style-vertical .navbar ul li a:hover:after,
body.iq-dark-mode #vertical-menu li.menu-item-has-children ul>li.current-menu-parent>a:after,
body.iq-dark-mode #vertical-menu li.menu-item-has-children ul>li a:hover:after {
  background: var(--white-color);
}

body.iq-dark-mode header.style-vertical #vertical-menu li.active ul:before,
body.iq-dark-mode #vertical-menu li.menu-item-has-children ul>li a:after {
  background: var(--dark-menu);
}

body.iq-dark-mode header.style-vertical .navbar ul li i {
  color: var(--dark-menu);
}

/*---------------------------------------------------------------------
							  Dark mode  Horizonatal
  -----------------------------------------------------------------------*/
body.iq-dark-mode header.menu-sticky .main-header,
body.iq-dark-mode header.style-one.style-two.menu-sticky .main-header {
  background: var(--body-dark);
}

body.iq-dark-mode header .navbar ul li a,
body.iq-dark-mode header .navbar ul li i,
body.iq-dark-mode header .navbar ul li .sub-menu li .sub-menu li.menu-item a,
body.iq-dark-mode header .navbar ul li .sub-menu li a,
body.iq-dark-mode header .navbar ul li .sub-menu li a i,
body.iq-dark-mode header .navbar ul li:hover .sub-menu li>i {
  color: var(--white-color);
}

body.iq-dark-mode header .navbar ul li .sub-menu li:hover,
body.iq-dark-mode header .navbar ul li a:hover,
body.iq-dark-mode header .navbar ul li.current-menu-item a,
body.iq-dark-mode header .navbar ul li.current-menu-parent a,
body.iq-dark-mode header .navbar ul li.current-menu-parent i,
body.iq-dark-mode header .navbar ul li.current-menu-item i,
body.iq-dark-mode header .navbar ul li:hover>a,
body.iq-dark-mode header .navbar ul li:hover>i {
  color: var(--primary-color);
}

body.iq-dark-mode header .navbar ul li:hover .sub-menu,
body.iq-dark-mode header .navbar ul li .sub-menu li a,
body.iq-dark-mode header .navbar ul li .sub-menu li .sub-menu li.menu-item a {
  background: var(--secondary-color);
}

body.iq-dark-mode header .navbar ul li .sub-menu li a:hover,
header .navbar ul li .sub-menu li:hover>a,
body.iq-dark-mode header .navbar ul li .sub-menu li.current-menu-parent a,
body.iq-dark-mode header .navbar ul li .sub-menu li .sub-menu li.menu-item.current-menu-item a,
body.iq-dark-mode header .navbar ul li .sub-menu li .sub-menu li.menu-item:hover a,
body.iq-dark-mode header .navbar ul li .sub-menu li:hover>a {
  color: var(--white-color);
  background: var(--primary-color);
}

body.iq-dark-mode header .navbar ul li .sub-menu li .sub-menu li.menu-item a {
  background: var(--secondary-color);
  color: var(--white-color);
}

.text-routed {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

/*---------------------------------------------------------------------
						 owl carousel Dotes and arrow
  -----------------------------------------------------------------------*/
.owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-nav {
  display: block;
  position: absolute;
  text-indent: inherit;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  left: 0;
  width: 100%;
  cursor: pointer;
  z-index: 999;
}

.owl-carousel .owl-nav .owl-prev {
  outline: none;
  background: none;
  border: none;
  display: block;
  position: absolute;
  text-align: center;
  text-indent: inherit;
  top: -25px;
  left: -8%;
  width: auto;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
}

.owl-carousel .owl-nav .owl-next {
  outline: none;
  background: none;
  border: none;
  display: block;
  position: absolute;
  text-align: center;
  text-indent: inherit;
  top: -25px;
  right: -8%;
  width: auto;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
}

.owl-carousel .owl-nav i {
  font-size: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding-left: 0px;
  display: inline-block;
  color: var(--white-color);
  background: var(--primary-color);
  font-weight: normal;
  text-align: center;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 25px;
  font-family: FontAwesome;
}

.owl-carousel .owl-nav i:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Dots */
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-dots {
  margin-top: 15px;
  position: relative;
  width: 100%;
  display: inline-block;
  text-indent: inherit;
  text-align: center;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
  box-shadow: none;
  outline: none;
  background: var(--secondary-color);
  display: inline-block;
  border-radius: 0px;
  padding: 0;
  margin: 0px 3px;
  height: 10px;
  width: 10px;
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.owl-carousel .owl-dots .owl-dot.active {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.owl-carousel .owl-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  display: inline-block;
  line-height: normal;
}

.owl-carousel .owl-dots .owl-dot {
  background: transparent;
  border: 1px solid var(--primary-color);
}

/*---------------------------------------------------------------------
					   Section title slider
  -----------------------------------------------------------------------*/
.iq-title-box-slider.owl-carousel {
  background: var(--secondary-color);
  padding: 30px;
  margin-left: 20px;
}

.iq-title-box-slider.owl-carousel:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--primary-color) transparent;
  position: absolute;
  left: -20px;
}

.iq-title.iq-heading-title::before {
  content: '';
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  position: absolute;
  border-radius: 50%;
  z-index: 9;
  margin: 0px -23px;
}

.iq-title.iq-heading-title {
  z-index: 9;
}

.right-text {
  position: relative;
  z-index: 99;
}

.bg-color-title-style .iq-heading-title .left-text {
  color: var(--primary-color);
}

/*---------------------------------------------------------------------
							 Portfolio
  -----------------------------------------------------------------------*/
.isotope-filters {
  padding-top: 30px;
  display: table;
  margin: 0 auto 30px;
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.isotope-filters button {
  position: relative;
  margin: 0 4px;
  cursor: pointer;
  padding: 5px 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  color: var(--secondary-color);
  border: none;
  font-weight: normal;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.isotope-filters button:before {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  content: "";
  width: 0;
  height: 3px;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
  background: var(--primary-color);
}

.isotope-filters button.active,
.isotope-filters button:hover {
  background: transparent;
  color: var(--primary-color);
  position: relative;
}

.isotope-filters button.active:before,
.isotope-filters button:hover:before {
  width: 15px;
}

.isotope-filters button:focus {
  outline: none;
  outline-style: none;
  outline-offset: 0;
}

/* Grid And Masonry */
.isotope.no-padding .iq-grid-item {
  padding: 0 !important;
}

.iq-masonry.no-padding .iq-masonry-item {
  padding: 0 !important;
}

.isotope,
.iq-masonry {
  margin: 0 0 -15px 0;
  float: left;
  width: 100%;
}

.isotope,
.iq-masonry.no-padding {
  margin-bottom: 30px;
}

.isotope .iq-grid-item {
  padding: 15px;
}

.isotope .iq-grid-item img,
.iq-masonry .iq-masonry-item img {
  width: 100%;
}

/* Grid */
.isotope.iq-columns-1 .iq-grid-item {
  width: 100%;
}

.isotope.iq-columns-2 .iq-grid-item {
  width: 50%;
}

.isotope.iq-columns-3 .iq-grid-item {
  width: 33.33333333%;
}

.isotope.iq-columns-4 .iq-grid-item {
  width: 25%;
}

.isotope.iq-columns-5 .iq-grid-item {
  width: 20%;
}

/* Masonry */
.iq-masonry.iq-columns-2 .iq-masonry-item {
  width: 50%;
  padding: 15px;
  float: left;
}

.iq-masonry.iq-columns-3 .iq-masonry-item {
  width: 33.333333%;
  padding: 15px;
  float: left;
}

.iq-masonry.iq-columns-4 .iq-masonry-item {
  width: 25%;
  padding: 0px;
  float: left;
}

.iq-masonry.iq-columns-5 .iq-masonry-item {
  width: 20%;
  padding: 15px;
  float: left;
}

.iq-masonry-item .iq-portfolio:hover .iq-portfolio-content .consult-details .consult-effect:before {
  bottom: 98px;
}

.iq-masonry-item.style-two .iq-portfolio:hover .iq-portfolio-content .consult-details .consult-effect:before {
  bottom: 81px;
}

/* Grid Full Screen */
.isotope.full-grid,
.iq-masonry.full-grid {
  margin: 0 -30px 0 0;
}

.isotope.full-grid .iq-grid-item {
  padding: 0 30px 30px 0;
}

/* Grid Full Screen No Space*/
.isotope.full-grid.no-padding,
.iq-masonry.full-grid.no-padding {
  margin: 0;
}

.isotope.full-grid.no-padding .iq-grid-item {
  padding: 0 !important;
}

@media(max-width:1199px) {

  .isotope.iq-columns-4 .iq-grid-item,
  .iq-masonry.iq-columns-4 .iq-masonry-item {
    width: 33.3%
  }

  .isotope.iq-columns-5 .iq-grid-item,
  .iq-masonry.iq-columns-5 .iq-masonry-item {
    width: 25%;
  }

  .iq-title-box:before {
    display: none;
  }
}

@media(max-width:992px) {

  .isotope.iq-columns-4 .iq-grid-item,
  .iq-masonry.iq-columns-4 .iq-masonry-item {
    width: 50%;
  }

  .isotope.iq-columns-3 .iq-grid-item,
  .isotope.iq-columns-5 .iq-grid-item,
  .iq-masonry.iq-columns-3 .iq-masonry-item,
  .iq-masonry.iq-columns-5 .iq-masonry-item {
    width: 50%;
  }

}

@media(max-width:767px) {

  .isotope.iq-columns-4 .iq-grid-item,
  .isotope.iq-columns-2 .iq-grid-item,
  .isotope.iq-columns-3 .iq-grid-item,
  .isotope.iq-columns-5 .iq-grid-item,
  .iq-masonry.iq-columns-2 .iq-masonry-item,
  .iq-masonry.iq-columns-3 .iq-masonry-item,
  .iq-masonry.iq-columns-4 .iq-masonry-item,
  .iq-masonry.iq-columns-5 .iq-masonry-item {
    width: 100%
  }
}

/*---------------------------------------------------------------------
  Blog Masanory style
  -----------------------------------------------------------------------*/

/*hidden-items for loadmore option*/
.iq-masonry-block.iq-blog-masonary .loadmore-hidden-items {
  display: none;
}

.iq-masonry-block.iq-blog-masonary .iq-portfolio-2 .iq-masonry-item img {
  object-fit: cover;
}

.iq-masonry-block.iq-blog-masonary .iq-post-details a.iq-cat-name {
  text-transform: uppercase;
  display: inline-block;
  padding: 5px;
  line-height: normal;
  font-size: 14px;
  background: var(--primary-color);
  color: var(--white-color);
  margin-bottom: 15px;
}

.iq-masonry-block.iq-blog-masonary .iq-portfolio-2 .iq-portfolio .iq-post-details {
  padding: 30px;
}

.iq-masonry-block.iq-blog-masonary .iq-portfolio-2 .iq-portfolio .details-box .consult-details {
  border: none;
}

.iq-post-details .iq-btn-container {
  margin-top: 15px;
}

.iq-masonry-block.iq-blog-masonary .iq-portfolio-content .details-box,
.iq-portfolio-2 .iq-portfolio .details-box .consult-details {
  padding: 0;
}

.iq-blog-meta ul li a {
  color: var(--body-text);
}

.iq-blog-meta ul li i {
  color: var(--primary-color);
}

.iq-blog-meta ul li:hover i,
.iq-blog-meta ul li:hover a {
  color: var(--primary-color);
}

.iq-blog-meta .list-inline-item time,
.iq-blog-meta .list-inline-item .iq-user {
  color: var(--gray-text-color);
  text-transform: uppercase;
}

.iq-masonry-block.iq-blog-masonary .iq-portfolio {
  -webkit-box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
}

@media screen and (min-width:1200px) {
  .iq-masonry-block.iq-blog-masonary .iq-masonry.iq-columns-2 .iq-masonry-item:not(:nth-child(3n+1)) .iq-portfolio {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }

  .iq-masonry-block.iq-blog-masonary .iq-masonry.iq-columns-2 .iq-masonry-item:not(:nth-child(3n+1)) .iq-portfolio-img {
    width: 265px;
    height: 265px;
  }

  .iq-masonry-block.iq-blog-masonary .iq-masonry.iq-columns-2 .iq-masonry-item:not(:nth-child(3n+1)) .iq-portfolio .iq-post-details {
    width: 65%;
  }

  .iq-masonry-block.iq-blog-masonary .iq-portfolio a.iq-portfolio-img {
    height: 308px;
  }
}

.info-share {
  list-style: none;
  padding: 0;
}

.info-share li {
  display: inline-block;
}

.iq-blog-box .iq-btn-container .iq-btn-blog {
  line-height: 0;
}

/*Blog Style 2*/
.iq-default-blog-style-2 .iq-blog-article-style:nth-child(odd) .iq-blog-box {
  background: transparent;
}

.iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box .iq-blogtag {
  top: 15px;
  bottom: auto;
  position: absolute;
  margin: 0 -10px 0px;
}

.iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box .iq-blogtag li {
  float: none;
}

.iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box img {
  object-fit: cover;
}

.iq-default-blog-style-2 .iq-blog-article-style:last-child .iq-blog-box {
  border-bottom: none;
  margin-bottom: 0px;
}

.iq-default-blog-style-2 .iq-blog-box {
  display: flex;
  border: none;
  border-bottom: 0px solid var(--white-light-color);
  margin-bottom: 40px;
}

.iq-default-blog-style-2 .iq-blog-box .iq-blog-image img {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 0px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.iq-default-blog-style-2 .iq-blog-box .iq-blogtag {
  top: 15px;
  bottom: auto;
}

.iq-default-blog-style-2 .iq-blog-box .iq-blog-detail {
  background: var(--white-color);
  padding: 30px;
  box-shadow: 0px 10px 44px 0px rgba(0, 0, 0, 0.05);
  z-index: 9;
}

.iq-default-blog-style-2 .iq-blog-article-style .iq-blog-box {
  display: block;
}

/*/*Blog Style 2 Grid Css*/
.iq-default-blog-style-2-grid .iq-blog-box:before {
  display: none;
}

.iq-default-blog-style-2-grid .iq-blog-box {
  border: none;
}

.iq-default-blog-style-2-grid .iq-blog-box {
  display: block;
  border: none;
  padding: 30px;
}

.iq-default-blog-style-2-grid .iq-blog-box .iq-blog-image img {
  padding: 0;
  background: var(--light-pink-color);
}

.iq-default-blog-style-2-grid .iq-blog-box .iq-blogtag {
  bottom: auto;
  top: 15px;
}

.iq-default-blog-style-2-grid .iq-blog-box .iq-blog-detail {
  position: relative;
  background-color: var(--white-color);
  padding: 30px 0 0;
  z-index: 1;
}

.iq-default-blog-style-2-grid .iq-blog-box .iq-blog-detail .iq-blog-meta ul li {
  line-height: 28px;
}

.iq-default-blog-style-2-grid .iq-blog-box .iq-blog-detail .iq-blog-meta ul li a,
.iq-default-blog-style-2-grid .iq-blog-box .iq-blog-detail .iq-blog-meta ul li a {
  font-size: 14px;
}

.iq-default-blog-style-2-grid .iq-blog-box .iq-blog-detail .iq-blog-meta ul {
  margin: 0 0 10px;
}

/*Portfolio Style 1*/
.iq-mas-portfolio .owl-stage-outer {
  padding: 20px 0;
}

.iq-mas-portfolio .iq-item {
  margin: 0 15px;
  border-radius: 5px;
  overflow: hidden;
}

.iq_portfolio-1 {
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.05);
}

.iq_portfolio-1 .iq-content {
  position: relative;
  float: none;
  margin: 0px auto;
  width: 100%;
  text-align: center;
}

.iq_portfolio-1 .iq-content p {
  color: var(--body-text);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iq_portfolio-1 .iq-content .portfolio-content {
  padding: 26px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: var(--white-color);
  max-height: 72px;
  transition: all 0.5s linear;
  overflow: hidden;
  border-radius: 5px;
  width: calc(100% - 22px);
}

.iq_portfolio-1:hover .iq-content .portfolio-content {
  opacity: 1;
  transition: all 0.9s linear;
}

.iq_portfolio-1 .iq-content .portfolio-content h5 {
  color: var(--white-color);
  margin: 0;
}

.iq_portfolio-1 .iq-content .portfolio-content {
  opacity: 0;
  background: var(--black-transparent-bg);
  border: none;
  color: var(--primary-color);
  box-shadow: 0px 13px 45px 0px rgba(0, 0, 0, 0.05);
  max-height: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-content a:hover {
  color: var(--white-color);
}

.iq_portfolio-1 .effect-goliath .iq-image img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.iq-portfolio-style-3 .iq-portfolio .iq-portfolio-content .details-box {
  background: transparent;
}

.iq-portfolio-style-3 .iq-portfolio .iq-portfolio-content .details-box .text-hover {
  font-size: 26px;
  line-height: 34px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
}

.iq-portfolio-style-3 .iq-portfolio .iq-portfolio-content .details-box p {
  font-size: 18px;
  line-height: 28px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-portfolio-style-3 .iq-portfolio:hover .iq-portfolio-content .details-box .text-hover,
.iq-portfolio-style-3 .iq-portfolio:hover .iq-portfolio-content .details-box p {
  color: var(--white-color);
}

.iq-default-blog-style-2-grid .owl-carousel .iq-blog-box .iq-blog-detail {
  width: calc(100% - 60px);
}

.iq-default-blog-style-2-grid .owl-carousel .iq-blog-box:hover {
  box-shadow: none;
}

.iq-default-blog-style-2 .iq-blog-box:before {
  display: none;
}

.iq-default-blog-style-2 .iq-blog-box .iq-blog-detail:before {
  width: 0;
  height: 4px;
  content: "";
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-default-blog-style-2 .iq-blog-box .iq-blog-detail:hover:before {
  width: 100%;
}

@media(max-width:992px) {
  .iq-title-box-slider.owl-carousel:before {
    display: none;
  }

  .iq-title-box-slider.owl-carousel {
    margin-left: 0;
  }
}

@media(max-width:767px) {
  .iq-default-blog-style-2 .iq-blog-box {
    display: block;
    border-bottom: none;
    padding-bottom: 0px;
  }

  .iq-default-blog-style-2 .iq-blog-box .iq-blog-detail {
    margin-left: 0px;
    border-radius: 4px;
    border: 1px solid var(--white-light-color);
  }

  .iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box {
    display: block;
  }

  .iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box .iq-blog-detail {
    margin-left: 30px;
  }

  .iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box .iq-blogtag {
    margin: 0 0px 0px 15px;
  }

  .iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box .iq-blogtag li {
    float: left;
  }

  .iq-default-blog-style-2 .iq-blog-box .iq-blog-image img {
    height: auto;
  }

  .iq-default-blog-style-2 .iq-blog-box {
    margin-bottom: 0px;
    border: none;
  }

  .iq-default-blog-style-2 .iq-blog-box {
    display: block;
    border: none;
  }

  .iq-default-blog-style-2 .iq-blog-box .iq-blogtag {
    bottom: auto;
    top: 15px;
  }

  .iq-default-blog-style-2 .iq-blog-box .iq-blog-detail {
    position: relative;
    width: calc(100% - 60px);
    background-color: var(--white-color);
    margin: -100px 0 30px 30px;
    padding: 20px;
    z-index: 1;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  }
}

@media(max-width:480px) {
  .iq-blog-box .iq-blog-cat {
    position: relative;
    margin-bottom: 20px;
  }
}

.shap-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 100%;
  background: var(--primary-color);
}

.iq-title-box-slider.owl-carousel .owl-item img {
  width: auto;
}

.iq-title-box-slider.owl-carousel .owl-nav .owl-prev {
  top: -110px;
  left: auto;
  right: 60px;
  width: auto;
}

.iq-title-box-slider.owl-carousel .owl-nav .owl-next {
  top: -110px;
  right: 0px;
  width: auto;
}

/*----------------------------------------
  Marquee Text
   ----------------------------------------*/
.marquee {
  position: relative;
  width: 4px;
  height: 132px;
  margin: 0;
  line-height: 50px;
  text-align: center;
  -moz-transform: translatey(100%);
  -webkit-transform: translatey(100%);
  transform: translatey(100%);
  -moz-animation: scroll-left 2s linear infinite;
  -webkit-animation: scroll-left 2s linear infinite;
  animation: scroll-left 20s linear infinite;
  overflow: hidden;
}

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translatey(-100%);
  }

  100% {
    -moz-transform: translatey(100%);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translatey(100%);
  }

  100% {
    -webkit-transform: translatey(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -moz-transform: translatey(100%);
    -webkit-transform: translatey(100%);
    transform: translatey(100%);
  }

  100% {
    -moz-transform: translatey(-100%);
    -webkit-transform: translatey(-100%);
    transform: translatey(-100%);
  }
}

/*----------------------------------------
   Slider With Text
   ----------------------------------------*/
.iq-service-slider .slider-text {
  padding: 15px;
  position: relative;
  z-index: 2;
  background: var(--white-color);
  display: block;
}

.iq-service-slider .slider-info {
  display: inline-block;
}

.iq-service-slider .slider-text a i {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  text-align: center;
  line-height: 40px;
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.iq-service-slider {
  box-shadow: 0px 17px 13px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-bottom: 45px;
  margin: 0px 15px 35px 15px;
}

.iq-service-slider .slider-text a {
  position: absolute;
  top: 22px;
  right: 15px;
}

/*---------------------------------------------------------------------
						   Scroll Me Title
  -----------------------------------------------------------------------*/
.scrolling-text {
  font-size: 130px;
  line-height: 94px;
  font-family: 'Heebo', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white-light-color);
  z-index: -1;
}

.iq-team-style-1.detail-page .iq-team-blog .iq-team-info p {
  margin-top: 15px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.iq-team-style-1.iq-doctor-info .iq-team-blog .iq-team-info .iq-team-main-detail {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.iq-team-style-1.iq-doctor-info .iq-team-blog .iq-team-info:after {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.iq-team-style-1.detail-page .iq-team-blog {
  margin: 0;
}

/*---------------------------------------------------------------------
                    Circle Chart
-----------------------------------------------------------------------*/

.circle-chart {
  width: 150px;
  height: 150px;
}

.circle-chart__circle {
  stroke: #00acc1;
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  animation: circle-chart-fill 2s reverse;
  /* 1 */
  transform: rotate(-90deg);
  /* 2, 3 */
  transform-origin: center;
  /* 4 */
}

.circle-chart__circle--negative {
  transform: rotate(-90deg) scale(1, -1);
}

.circle-chart__background {
  stroke: #eff7ff;
  stroke-width: 2;
  fill: none;
}

.circle-chart__info {
  animation: circle-chart-appear 2s forwards;
  opacity: 0;
  transform: translateY(0.3em);
}

.circle-chart__percent {
  alignment-baseline: mathematical;
  text-anchor: middle;
  font-size: 8px;
  dominant-baseline: mathematical;
}

.circle-chart__subline {
  alignment-baseline: central;
  text-anchor: middle;
  font-size: 3px;
}

.success-stroke {
  stroke: #00C851;
}

.warning-stroke {
  stroke: #ffbb33;
}

.danger-stroke {
  stroke: #ff4444;
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
