/*---------------------------------------------------------------------
                        Color Set
-----------------------------------------------------------------------*/
:root {
	--primary-color:#f54114;
  --secondary-color:#131313;
	--light-pink-color:#fef5f5;
	--white-color:#ffffff;
	--white-light-color:#f7f8fa;
	--title-color:#131313;
	--sub-title-color:#f54114;
	--body-text:#768492; 
	--light-blue-color:#f7f8fa;
	--warning-color:#ff0000;
	--success-color:#398f14;
  }

  body:before { content: ""; position: fixed; z-index: -1; 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 { color: var(--primary-color); display: inline-block; text-transform: uppercase; font-size: 14px; letter-spacing: 0.25em; font-weight: 500; }
.iq-title-box .iq-title { margin-bottom: 0; }
.iq-title-box .iq-title-desc { margin-top: 15px; margin-bottom: 0; }
.iq-title-box { margin-bottom: 40px; }
.iq-title-box i { font-size: 30px; margin-bottom: 15px; }
.iq-title-box span.left-text { color: var(--primary-color); text-transform: uppercase; }

/* Title Box Text Left*/
.iq-title-box.text-center { margin-bottom: 75px; }
.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; }

/* ------------------------------
Button
---------------------------------*/
.iq-btn-container .iq-button { z-index: 1; font-size: 16px; font-weight: normal; position: relative; overflow: hidden; display: inline-block; vertical-align: middle; padding: 14px 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-container .iq-btn-semi-round { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }

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

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

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

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

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

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

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

/*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; font-size: 1em; font-weight: 500; background: transparent; padding: 0; color: var(--primary-color); }
.iq-btn.iq-btn-outline:before{display: none;}
.iq-btn.iq-btn-outline:hover{transform:inherit}
.iq-btn-container .iq-button.iq-btn-outline{background: transparent;}
.iq-btn.iq-btn-outline span, .iq-btn.iq-btn-outline i{color: var(--primary-color);}
.iq-btn.iq-btn-outline:hover span, .iq-btn.iq-btn-outline:hover i{color: var(--title-color);}
/*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; }
.iq-btn.iq-btn-link:hover span { color: var(--secondary-color); }

/*---------------------------------------------------------------------
          FAQ
-----------------------------------------------------------------------*/
.iq-accordion { z-index: 9; position: relative; }
.iq-accordion .iq-accordion-title { position: relative; font-family: 'Source Sans Pro', sans-serif; border-radius: 5px; padding: 15px 60px 15px 30px; background: var(--white-light-color); line-height: normal; cursor: pointer; display: flex; text-align: left; color: var(--white-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 30px 15px; background: var(--white-light-color); }
.iq-accordion .iq-accordion-details p { margin: 0; }
.iq-accordion .iq-accordion-block { margin-bottom: 30px; border: 1px solid var(--white-light-color); padding: 0; }
.iq-accordion .iq-accordion-block:last-child { margin-bottom: 0 !important; }
.iq-accordion .iq-accordion-block.iq-active .iq-accordion-title .iq-icon-right { top: 38%; }
.iq-accordion .iq-accordion-block .iq-accordion-title i { vertical-align: middle; }
.iq-accordion .iq-accordion-block .iq-accordion-title   .iq-icon-right { right: 30px; position: absolute; top: 50%; transform: translate(0, -50%); }
.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: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-accordion-round .iq-accordion-block { -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; }
.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 1*/
.iq-price-table { position: relative; display: inline-block; width: 100%; border: 1px solid var(--white-light-color); 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; }
.iq-price-table .iq-price-header { padding: 15px 30px; background: var(--primary-color); color: var(--white-color); border-radius: 4px; }
.iq-price-table .iq-price-header .iq-price { color: var(--white-color); }
.iq-price-table .iq-price-header .iq-price small { font-size: 16px; color: var(--white-color); vertical-align: super; padding: 0 5px; }
.iq-price-table .iq-price-header .iq-price small:first-child { font-size: 24px; }
.iq-price-table .iq-price-header .iq-price-label { letter-spacing: 6px; }
.iq-price-table .iq-price-header .iq-price-description { margin-bottom: 0; }
.iq-price-table ul { margin: 20px 0; list-style: none; }
.iq-price-table ul li { line-height: 50px; }
.iq-price-table .iq-price-footer { border-top: 1px solid var(--white-light-color); padding: 30px 15px; z-index: 9; position: relative; }
.iq-price-table.active, .iq-price-table:hover { -webkit-transform: translateY(-10px); transform: translateY(-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-price-table.active { -webkit-transform: scale(1.1); transform: scale(1.1); }
.iq-price-table.iq-box-shadow { box-shadow: none; }
.iq-price-table.iq-box-shadow:hover, .iq-price-table.iq-box-shadow.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; }

/*Style 2*/
.iq-price-table-1 { background: var(--white-color); overflow: hidden; border: 1px solid var(--white-light-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-1 .iq-price-header .iq-price-label { color: var(--secondary-color); padding: 10px 0px; background: var(--white-color); display: block; position: relative; }
.iq-price-table-1 .iq-price-header .iq-price-description { padding: 30px 0 10px; margin: 0; position: relative; }
.iq-price-table-1 .iq-price-header .iq-price { color: var(--white-color); display: inline-block; width: 100%; margin-bottom: 30px; }
.iq-price-table-1 .iq-price-header .iq-price small:first-child { font-size: 32px; font-weight: bold; display: inline-block; vertical-align: baseline; margin-right: 5px; }
.iq-price-table-1 .iq-price-header .iq-price { display: inline-block; }
.iq-price-table-1 .iq-price-header .iq-price small { font-size: 14px; font-weight: bold; }
.iq-price-table-1 .iq-price-body ul.iq-price-service { padding: 0; margin: 0; }
.iq-price-table-1 .iq-price-body ul.iq-price-service li { border-top: 1px solid var(--white-light-color); padding: 15px 0; margin: 0; list-style: none; }
.iq-price-table-1  .iq-price-footer { padding: 15px 30px 30px; }
.iq-price-table-1  .iq-price-header { background: var(--primary-color); position: relative; color: var(--white-color); }
.iq-price-table-1 .iq-price-label:before { content: ""; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 15px solid var(--white-color); position: absolute; z-index: 9; bottom: -15px; left: 50%; margin-left: -10px; }
.iq-price-table-1.active .price-head { padding: 20px 0; margin: 0; font-size: 18px; font-weight: 500; color: var(--primary-color); }
.iq-price-table-1.active .iq-price-header .iq-price-label { padding: 30px 15px; }
.iq-price-table-1.active  .iq-price-footer { padding-bottom: 60px; }
.iq-price-table-1.iq-box-shadow { box-shadow: none; }
.iq-price-table-1.iq-box-shadow:hover, .iq-price-table-1.iq-box-shadow.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; }

/*Style 3*/
.iq-price-table-2 { padding: 30px 15px; background: var(--white-color); z-index: 1; position: relative; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; margin-top: 0; border: 1px solid var(--white-light-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-2 .iq-price-header { color: var(--secondary-color); margin-bottom: 30px; }
.iq-price-table-2 .iq-price-header .iq-price-label { display: block; }
.iq-price-table-2 .iq-price-header .iq-price small:first-child { font-size: 16px; display: inline-block; vertical-align: super; margin-right: 5px; }
.iq-price-table-2 .iq-price-header .iq-price { display: inline-block; }
.iq-price-table-2 .iq-price-header .iq-price small { font-size: 14px; font-weight: bold; }
.iq-price-table-2 .iq-price-body ul.iq-price-service { padding: 0; margin: 30px 0; list-style: none; }
.iq-price-table-2 .iq-price-body ul.iq-price-service li { margin-bottom: 15px; }
.iq-price-table-2:hover, .iq-price-table-2.active { margin-top: -5px; border: 1px solid var(--primary-color); }
.iq-price-table-2.iq-box-shadow { box-shadow: none; }
.iq-price-table-2.iq-box-shadow:hover, .iq-price-table-2.iq-box-shadow.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; }

/*style 4*/
.iq-price-table-3 { margin-top: 30px; background: var(--white-color); overflow: hidden; padding: 30px; border-radius: 10px; position: relative; 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-3 .iq-price-header .iq-price-label, .iq-price-table-3 .iq-price-header .iq-price-desc { color: var(--primary-color); text-transform: uppercase; }
.iq-price-table-3 .iq-price-header .iq-price { color: var(--secondary-color); line-height: normal; }
.iq-price-table-3 .iq-price-header h2.iq-price { font-size: 60px; }
.iq-price-table-3 .iq-price-header h3.iq-price { font-size: 45px; }
.iq-price-table-3 .iq-price-header h4.iq-price { font-size: 36px; }
.iq-price-table-3 .iq-price-header h5.iq-price { font-size: 24px; }
.iq-price-table-3 .iq-price-header h6.iq-price { font-size: 16px; }
.iq-price-table-3 .iq-price-body ul.iq-price-service li { list-style: none; line-height: 45px; }
.iq-price-table-3 .iq-price-body ul.iq-price-service li  span::before { content: "-"; margin-right: 5px; }
.iq-price-table-3 .iq-price-header .iq-price-label { margin-bottom: 30px; }
.iq-price-table-3 .iq-price-body ul.iq-price-service { margin-bottom: 45px; padding: 0; }
.iq-price-table-3.active { margin-top: 0; }
.iq-price-table-3.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-3.active .iq-price-header .iq-price-label, .iq-price-table-3.active .iq-price-header .iq-price, .iq-price-table-3.active .iq-price-header .iq-price-desc { color: var(--white-color); }
.iq-price-table-3.active .iq-button { background: var(--white-color); color: var(--secondary-color); }
.iq-price-table-3.active .iq-button:hover, .iq-price-table-3.active .iq-button:focus { background: var(--secondary-color); color: var(--white-color); }
.iq-price-table-3.active::before { width: 0; height: 0; border-top: 60px solid var(--white-color); border-left: 60px solid transparent; content: ""; position: absolute; right: -1px; top: -1px; }

/*style 5*/
.iq-price-table-4 { float: left; width: 100%; border-radius: 10px; }
.iq-price-table-4 .iq-price-header { padding: 30px; border-bottom: 1px solid var(--white-light-color); }
.iq-price-table-4 .iq-price-header .iq-price-label { margin-bottom: 15px; font-size: 24px; color: var(--secondary-color); }
.iq-price-table-4 .iq-button { margin-bottom: 30px; }
.iq-price-table-4 .iq-price-header .iq-price-label-sub { display: none; }
.iq-price-table-4 .iq-price-header .price { margin-bottom: 0px; }
.iq-price-table-4 .iq-price-header h2.price { font-size: 48px; }
.iq-price-table-4 .iq-price-header h3.price { font-size: 40px; }
.iq-price-table-4 .iq-price-header h4.price { font-size: 32px; }
.iq-price-table-4 .iq-price-header h5.price { font-size: 24px; }
.iq-price-table-4 .iq-price-header h6.price { font-size: 16px; }
.iq-price-table-4 .iq-price-header .iq-price-label { margin-bottom: 0; }
.iq-price-table-4 .iq-price-body ul.iq-price-service { padding: 30px 45px; text-align: left; list-style: none; margin-bottom: 0; float: left; width: 100%; display: block; }
.iq-price-table-4 .iq-price-body ul.iq-price-service li i { float: right; line-height: normal; }
.iq-price-table-4 .iq-price-body ul.iq-price-service li.active i { color: var(--primary-color); }
.iq-price-table-4 .iq-price-body ul.iq-price-service li { float: left; clear: both; width: 100%; margin-bottom: 20px; }
.iq-price-table-4 .iq-price-body ul.iq-price-service li:last-child { margin-bottom: 0; }
.iq-price-table-4 .iq-price-body ul.iq-price-service li  span { float: left; }
.iq-price-table-4.iq-price-shadow { box-shadow: none; }
.iq-price-table-4.iq-price-shadow.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-price-table-4.active { border-bottom: 2px solid var(--primary-color); 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; }
.iq-price-table-4.active .iq-price-header .iq-price-label-sub { display: block; margin-bottom: 30px; color: var(--primary-color); }
.iq-price-table-4 .iq-button { display: inline-block; vertical-align: middle; margin-bottom: 45px; }

/*style 6*/
.iq-price-table-5 { margin-top: 0; background: var(--white-color); padding: 0px; border-radius: 10px; position: relative; }
.iq-price-table-5 .iq-price-header { padding: 45px 30px; border-bottom: 1px solid var(--white-light-color); }
.iq-price-table-5 .iq-price-header .iq-price-label { color: var(--secondary-color); }
.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 .iq-price-header .iq-price-label { margin-bottom: 15px; }
.iq-price-table-5 .iq-price-body ul.iq-price-service { padding: 30px 45px; }
.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(--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); }

/*style 7*/
.iq-price-table-6 { overflow: hidden; margin-top: 0; background: var(--white-color); padding: 0px; border-radius: 10px; position: relative; }
.iq-price-table-6::before { content: ""; display: block; position: absolute; bottom: 15px; right: -60px; background: var(--white-light-color); border-radius: 25px; height: 60%; transform: rotate(15deg); width: 60px; }
.iq-price-table-6 .iq-price-header { padding: 45px 30px; position: relative; border-top: 10px solid var(--secondary-color); }
.iq-price-table-6 .iq-price-header .iq-price-label { color: var(--secondary-color); text-transform: uppercase; font-weight: bold; }
.iq-price-table-6 .iq-price-header .price { color: var(--secondary-color); line-height: normal; text-transform: initial; }
.iq-price-table-6 .iq-price-header h2.iq-price { font-size: 60px; }
.iq-price-table-6 .iq-price-header h3.iq-price { font-size: 45px; }
.iq-price-table-6 .iq-price-header h4.iq-price { font-size: 36px; }
.iq-price-table-6 .iq-price-header h5.iq-price { font-size: 24px; }
.iq-price-table-6 .iq-price-header h6.iq-price { font-size: 16px; }
.iq-price-table-6 .iq-price-header .iq-price span { color: var(--secondary-color); }
.iq-price-table-6 .iq-price-body ul.iq-price-service li { list-style: none; line-height: 45px; font-size: 18px; color: var(--title-color); }
.iq-price-table-6 .iq-price-body ul.iq-price-service li:hover { color: var(--secondary-color); }
.iq-price-table-6 .iq-price-header .iq-price-label { margin-bottom: 10px; display: block; }
.iq-price-table-6 .iq-price-body ul.iq-price-service { padding: 30px 45px; border-top: 2px solid var(--white-light-color); }
.iq-price-table-6 .iq-button { margin-bottom: 45px; }
.iq-price-table-6 .iq-price-header  .iq-price-description { margin-bottom: 0; margin-top: 10px; }
.iq-price-table-6:hover .iq-price-header, .iq-price-table-6.active .iq-price-header { border-top-color: var(--primary-color); }
.iq-price-table-6:hover .iq-price-header .iq-price-label, .iq-price-table-6.active .iq-price-header .iq-price-label { color: var(--primary-color); }
.iq-price-table-6.active::before { background: var(--primary-color); }
.iq-price-table-6.active .iq-button { background: var(--secondary-color); color: var(--white-color); }
.iq-price-table-6.active .iq-button:hover, .iq-price-table-6.active .iq-button:focus { background: var(--secondary-color); color: var(--white-color); }

/*style 8*/
.iq-price-table-7 { position: relative; overflow: hidden; padding: 10px; border: 1px solid var(--primary-color); border-radius: 4px; 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; margin-bottom: 30px; }
.iq-price-table-7 .iq-price-header { background: rgba(100, 218, 193, 0.2); min-height: 150px; position: relative; }
.iq-price-table-7 .iq-price-header .iq-price-block { 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; padding-top: 15px; width: 120px; height: 120px; background-color: var(--white-color); border-radius: 50%; border-top-left-radius: 0; position: absolute; top: 0; left: 0; }
.iq-price-table-7 .iq-price-header .iq-price-block .iq-price { font-size: 38px; }
.iq-price-table-7 .iq-price-header  .iq-price-title { text-align: right; padding: 45px; }
.iq-price-table-7 .iq-price-body ul.iq-price-service { padding: 0; margin: 0; list-style: none; margin-top: 30px; }
.iq-price-table-7 .iq-price-body ul.iq-price-service  li { margin-bottom: 30px; }
.iq-price-table-7 .iq-price-body ul.iq-price-service li.inactive { text-decoration: line-through; }
.iq-price-table-7 .iq-price-footer { margin-bottom: 30px; }
.iq-price-table-7 .iq-price-footer .iq-button { padding: 10px 30px; position: relative; border-radius: 4px; }
.iq-price-table-7:hover, .iq-price-table-7.active { box-shadow: 0px 8px 57.4px 12.6px rgba(0, 0, 0, 0.08); border: solid 1px transparent; }
.iq-price-table-7:hover .iq-price-header .iq-price-block, .iq-price-table-7.active .iq-price-header .iq-price-block { color: var(--white-color); background-image: -moz-linear-gradient(0deg, rgb(108, 218, 193) 0%, rgb(144, 227, 209) 100%); background-image: -webkit-linear-gradient(0deg, rgb(108, 218, 193) 0%, rgb(144, 227, 209) 100%); background-image: -ms-linear-gradient(0deg, rgb(108, 218, 193) 0%, rgb(144, 227, 209) 100%); box-shadow: 0px 10px 20px 0px rgba(100, 218, 193, 0.6); }
.iq-price-table-7:hover .iq-price-header .iq-price-block .iq-price, .iq-price-table-7:hover .iq-price-header .iq-price-block .iq-time-period, .iq-price-table-7.active .iq-price-header .iq-price-block .iq-price, .iq-price-table-7.active .iq-price-header .iq-price-block .iq-time-period { color: var(--white-color); }

/*style 8*/
.iq-price-table-8 { background: var(--white-color); overflow: hidden; padding: 50px 20px; border-radius: 4px; box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.1); position: relative; 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-8 .iq-price-header { margin-bottom: 20px; }
.iq-price-table-8 .iq-price-header .iq-price-label, .iq-price-table-8 .iq-price-header .iq-price-desc { color: var(--secondary-color); }
.iq-price-table-8 .iq-price-header .iq-price { color: var(--secondary-color); line-height: normal; display: inline-block; }
.iq-price-table-8 .iq-price-header .iq-price-desc { display: inline-block; margin-bottom: 0; color: var(--text-color); }
.iq-price-table-8 .iq-price-header h2.iq-price { font-size: 60px; }
.iq-price-table-8 .iq-price-header h3.iq-price { font-size: 45px; }
.iq-price-table-8 .iq-price-header h4.iq-price { font-size: 36px; }
.iq-price-table-8 .iq-price-header h5.iq-price { font-size: 24px; }
.iq-price-table-8 .iq-price-header h6.iq-price { font-size: 16px; }
.iq-price-table-8 .iq-price-body { margin-bottom: 45px; background: var(--white-light-color); padding: 30px; border-radius: 4px; }
.iq-price-table-8 .iq-price-body ul.iq-price-service { padding: 0; margin: 0; }
.iq-price-table-8 .iq-price-body ul.iq-price-service li { list-style: none; line-height: 45px; color: var(--secondary-color); }
.iq-price-table-8 .iq-price-header .iq-price-label { margin-bottom: 30px; }
.iq-price-table-8.active { margin-top: 0; }
.iq-price-table-8.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-8.active .iq-price-header .iq-price-label, .iq-price-table-8.active .iq-price-header .iq-price, .iq-price-table-8.active .iq-price-header .iq-price-desc { color: var(--white-color); }
.iq-price-table-8.active .iq-button { background: var(--white-color); color: var(--secondary-color); }
.iq-price-table-8.active .iq-button:hover, .iq-price-table-8.active .iq-button:focus { background: var(--secondary-color); color: var(--white-color); }
.iq-price-table-8.active::before { width: 0; height: 0; border-top: 60px solid var(--white-color); border-left: 60px solid transparent; content: ""; position: absolute; right: -1px; top: -1px; }


/*style 9*/
.iq-price-table-9 { padding: 50px 30px; background: var(--white-color); margin: 0 5px 30px 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; text-align: left; border-radius: 10px; }
.iq-price-table-9 .iq-price-header .iq-price { font-weight: bold; display: inline-block; }
.iq-price-table-9 .iq-price-header .iq-price-desc { margin-bottom: 0; display: inline-block; }
.iq-price-table-9 .iq-price-header .iq-price-label { margin-bottom: 15px; }
.iq-price-table-9 .iq-price-body { padding: 30px 0; }
.iq-price-table-9 .iq-price-body .iq-price-service { padding: 0; margin: 0; list-style: none; }
.iq-price-table-9 .iq-price-body .iq-price-service li { margin-bottom: 8px; }
.iq-price-table-9 .iq-price-body .iq-price-service li i { margin-right: 5px; }
.iq-price-table-9.active { transform: scale(1.1); box-shadow: 0 20px 95px 0 rgba(0, 0, 0, .1); position: relative; z-index: 99; border-bottom: 2px solid var(--primary-color); }
.iq-price-table-9.active .iq-price-header .iq-price { color: var(--primary-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); }
.advance-feature [type="checkbox"]:checked, .advance-feature [type="checkbox"]:not(:checked) { position: absolute; left: -9999px; }
.advance-feature [type="checkbox"]:checked + label, .advance-feature [type="checkbox"]:not(:checked) + label { position: relative; padding-left: 28px; cursor: pointer; line-height: 20px; display: inline-block; color: #666; }
.advance-feature [type="checkbox"]:checked + label:before, .advance-feature [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; }
.advance-feature [type="checkbox"]:checked + label:after, .advance-feature  [type="checkbox"]:not(:checked) + label:after { content: ''; width: 4px; height: 4px; background: var(--primary-color); position: absolute; top: 8px; left: 8px; border-radius: 90px; -webkit-transition: all 0.2s ease; transition: all 0.2s ease; }
.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 .flipbox-title { }
.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
-----------------------------------------------------------------------*/
.iq-testimonial-2 { position: relative; }
.iq-testimonial-2  .slick-dotted.slick-slider { margin-bottom: 30px; text-align: center; }
.iq-testimonial-2 .slick-initialized .slick-slide p { font-size: 21px; font-style: italic; margin: 0; text-align: left; }
.iq-testimonial-2  .slick-dots { position: relative; display: block; width: 100%; padding: 0; margin: 0; list-style: none; text-align: center; }
.iq-testimonial-2  .slick-dots li { position: relative; display: inline-block; width: 35px; height: 3px; margin: 0 5px; padding: 0; cursor: pointer; }
.iq-testimonial-2  .slick-dots li button { font-size: 0; line-height: 0; display: block; width: 35px; height: 3px; padding: 0; cursor: pointer; color: transparent; border: 0; outline: none; background: transparent; }
.iq-testimonial-2  .slick-dots li button:hover, .iq-testimonial-2  .slick-dots li button:focus { outline: none; }
.iq-testimonial-2  .slick-dots li button:hover:before, .iq-testimonial-2  .slick-dots li button:focus:before { opacity: 1; }
.iq-testimonial-2  .slick-dots li button:before { background: var(--primary-color); font-family: 'slick'; font-size: 6px; position: absolute; top: 0; left: 0; width: 35px; height: 3px; content: ''; text-align: center; opacity: .25; color: var(--primary-color); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.iq-testimonial-2  .slick-dots li.slick-active button:before { opacity: .75; color: var(--primary-color); }
.iq-testimonial-2  .slick-slide img { display: inline-block !important; width: 90px; 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;    border-radius: 5px; }
.iq-testimonial-2  .slick-initialized .slick-slide { outline: none; }
.iq-testimonial-2  .slick-initialized .slick-slide { display: block; }
.iq-testimonial-2  .iq-slider.slick-slide { opacity: 0.5; padding: 80px 0 0; }
.iq-testimonial-2  .testimonial-slider { color: var(--body-text); }
.iq-testimonial-2  .iq-slider.slick-slide.slick-current.slick-active .iq-lead, .iq-testimonial-2  .slick-slide.slick-current.slick-active .iq-testimonial-user  .iq-designation { color: var(--title-color); }
.iq-testimonial-2  .iq-slider.slick-slide.slick-current.slick-active { opacity: 1; }
.iq-testimonial-2  .slick-prev:before, .iq-testimonial-2  .slick-next:before { color: var(--primary-color); }
.iq-testimonial-2  .slick-prev, .iq-testimonial-2  .slick-next { background: var(--white-color); width: 45px; height: 45px; color: var(--primary-color); border-radius: 3px; font-size: 0; border: 1px solid var(--white-color); position: absolute; top: 50%; transform: translate(0, -50%); cursor: pointer; -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); }
.iq-testimonial-2 .slick-list, .iq-testimonial-2 .slick-slider { position: inherit; text-align: center; }
.iq-testimonial-2  .slick-prev { left: -160px; }
.iq-testimonial-2  .slick-next { right: -160px; }
.iq-testimonial-2  .slick-next:before { content: "\f10a"; font-family: "Ionicons"; font-size: 20px; line-height: 42px; }
.iq-testimonial-2  .slick-prev:before { content: "\f107"; font-family: "Ionicons"; font-size: 20px; line-height: 42px; }
.iq-testimonial-2 .iq-slider .iq-lead { display: none; font-weight: 600; font-size: 20px; }
.iq-testimonial-2  .iq-slider.slick-slide.slick-current.slick-active .iq-lead { display: block; }
.iq-testimonial-2 .iq-testimonial-user { font-weight: 400; font-style: italic; display: none; }
.iq-testimonial-2 .iq-slider.slick-slide.slick-current.slick-active .iq-testimonial-user { display: block; }
.iq-testimonial-2 .iq-slider.slick-slide.slick-current.slick-active img { transform: scale(1.4); box-shadow: 0 15px 30px 0px rgba(0, 0, 0, 0.2); }
.iq-testimonial-2 .iq-slider.slick-slide[data-slick-index="-1"] img, .iq-testimonial-2 .iq-slider.slick-slide[data-slick-index="1"] img { transform: scale(1); }
.iq-testimonial-2 .iq-slider.slick-slide[data-slick-index="-2"] img, .iq-testimonial-2 .iq-slider.slick-slide[data-slick-index="2"] img { transform: scale(0.9); }
.slick-list.draggable { padding: 0 !important; }
.iq-testimonial-2 .iq-quote { display: inline-block; width: 60px; height: 60px; line-height: 60px; text-align: center; background: var(--primary-color); margin-bottom: 15px; color: var(--white-color); border-radius: 3px; position: absolute; top: 15px; left: 30px; }
.iq-testimonial-2  .iq-testimonial-info { padding: 90px 340px 80px 45px; }
.iq-testimonial-2 .testimonial-slider.slider-nav.center.slick-initialized.slick-slider { min-height: 275px; }

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

/*style 1*/

.iq-counter { padding: 30px; }
.iq-counter .iq-counter-icon { color: var(--secondary-color); margin-bottom: 15px; position: relative; z-index: 9;}
.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: 39px; color: var(--primary-color); }
.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: 10px 0 0; }
.iq-counter .counter-content .counter-title-text { color: var(--body-text); }
.iq-counter:hover .iq-counter-icon img { -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both; animation: pulsate-fwd 0.5s ease-in-out infinite both; }
.iq-counter.iq-counter-style-1 {background: var(--white-color); padding: 30px; border-radius: 5px;}
.counter-content{position: relative; z-index: 9;}
.iq-counter.iq-counter-style-1::after{ position: absolute; content: ""; top: 0; bottom: 0; left: 0; right: 0;}

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% { -webkit-transform: scale(1); transform: scale(1); }
  50% { -webkit-transform: scale(1.1); transform: scale(1.1); }
  100% { -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes pulsate-fwd {
  0% { -webkit-transform: scale(1); transform: scale(1); }
  50% { -webkit-transform: scale(1.1); transform: scale(1.1); }
  100% { -webkit-transform: scale(1); transform: scale(1); }
}

/*style 2*/
.iq-counter.iq-counter-style-2 { display: flex; align-items: start; }
.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.text-right, .iq-counter.iq-counter-style-2.text-center { 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; }
.iq-counter.iq-counter-style-2.text-center   .iq-counter-icon { margin: 0 auto 15px; width: auto; height: auto; }

/*style 3*/
.iq-counter.iq-counter-style-3 .iq-counter-info { display: block; font-size: 48px; margin: 10px 0; margin-bottom: 30px; line-height: 40px; }
.iq-counter.iq-counter-style-3 .counter-title-text { position: relative; }
.iq-counter.iq-counter-style-3 .counter-title-text:before { background: var(--white-color); content: ""; height: 3px; position: absolute; top: -10px; width: 50px; margin-left: -25px; left: 50%; margin-left: -25px; }
.iq-counter.iq-counter-style-3 { position: relative; z-index: 0; color: var(--white-color); }
.iq-counter.iq-counter-style-3 i { color: var(--white-color); font-size: 90px; opacity: 0.4; line-height: 90px; position: absolute; left: 0; top: 0; width: 100%; text-align: center; z-index: -1; }
.iq-counter.iq-counter-style-3 i:before { font-size: 90px; }

/*style 4*/
.iq-counter.iq-counter-style-4 { padding: 0; position: relative; margin-bottom: 30px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-counter.iq-counter-style-4 .counter-content { border: 1px solid  var(--white-light-color); padding: 45px 30px; background: var(--white-color); position: relative; z-index: 1; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-counter.iq-counter-style-4 .counter-content .iq-counter-icon { margin-bottom: 15px; font-size: 45px; line-height: 45px; }
.iq-counter.iq-counter-style-4 .counter-content .iq-counter-icon i::before { vertical-align: middle; }
.iq-counter.iq-counter-style-4 .counter-content .counter-title-text { font-weight: bold; }
.iq-counter.iq-counter-style-4 .iq-counter-info { font-weight: normal; }
.iq-counter.iq-counter-style-4 .counter-content .counter-content-text { margin-bottom: 0; }
.iq-counter.iq-counter-style-4:before { position: absolute; content: ""; opacity: 0; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-color); transform: rotate(0deg); z-index: -1; 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; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; transform: rotate(0deg); }
.iq-counter.iq-counter-style-4:hover:before, .iq-counter.iq-counter-style-4.active:before { opacity: 1; transform: rotate(12deg); }
.iq-counter.iq-counter-style-4:hover .counter-content .iq-counter-icon, .iq-counter.iq-counter-style-4.active .counter-content .iq-counter-icon { color: var(--primary-color); }

/*style 5*/
.iq-counter.iq-counter-style-5 .counter-content .counter-title-text { margin: 0 0 30px; display: block; font-weight: bold; }
.iq-counter.iq-counter-style-5  .iq-counter-info { font-weight: normal; }
.iq-counter.iq-counter-style-5  .counter-content-text { text-transform: uppercase; margin-top: 15px; }

/*style 6*/
.iq-counter.iq-counter-style-6 .counter-content .iq-counter-info { display: block; float: left; width: 100%; margin-bottom: 15px; font-weight: normal; font-size: 35px; color: var(--white-color); }
.iq-counter.iq-counter-style-6 .iq-counter-info .timer, .iq-counter.iq-counter-style-6 .iq-counter-info .counter-symbol, .iq-counter.iq-counter-style-6 .iq-counter-info .counter-after-content { font-size: 30px; color: var(--white-color); }
.iq-counter.iq-counter-style-6 .counter-content .counter-title-text { color: var(--white-color); }
.iq-counter.iq-counter-style-6 .counter-content { color: var(--white-color); }
.iq-counter.iq-counter-style-6 .counter-content .iq-border-effect { position: relative; display: inline-block; }
.iq-counter.iq-counter-style-6.text-center .counter-content .iq-counter-info { text-align: center; display: inline-block; float: none; margin: 0 auto 15px; }
.iq-counter.iq-counter-style-6 .counter-content .iq-border-effect .iq-effect { position: relative; background: var(--white-color); height: 30px; width: 2px; overflow: hidden; }
.iq-counter.iq-counter-style-6 .counter-content .iq-border-effect .iq-effect::after, .iq-counter.iq-counter-style-6 .counter-content .iq-border-effect .iq-effect::before { content: ""; position: absolute; background: var(--primary-color); width: 2px; height: 3px; left: 0; z-index: 1; -webkit-animation-duration: 3s; animation-duration: 3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-name: MOVE-BG; animation-name: MOVE-BG; }
@-webkit-keyframes MOVE-BG {
  from { -webkit-transform: translateY(0); transform: translateY(0); }
  to { -webkit-transform: translateY(60px); transform: translateY(60px); }
}
@keyframes MOVE-BG {
  from { -webkit-transform: translateY(0); transform: translateY(0); }
  to { -webkit-transform: translateY(60px); transform: translateY(60px); }
}

/*style 7*/
.iq-counter.iq-counter-style-7 { text-align: center; margin: 0 auto 30px; padding: 20px; border-radius: 4px; background: var(--primary-color); }
.iq-counter.iq-counter-style-7 .counter-content .iq-counter-info { display: inline-block; vertical-align: middle; margin-bottom: 0px; font-weight: normal; font-size: 35px; color: var(--secondary-color); }
.iq-counter.iq-counter-style-7 .iq-counter-info .timer, .iq-counter.iq-counter-style-7 .iq-counter-info .counter-symbol, .iq-counter.iq-counter-style-7 .iq-counter-info .counter-after-content { float: left; font-size: 35px; color: var(--secondary-color); }
.iq-counter.iq-counter-style-7 .counter-content .counter-title-text { color: var(--secondary-color); }
.iq-counter.iq-counter-style-7 .counter-content { color: var(--secondary-color); }
.iq-counter.iq-counter-style-7 .counter-content .iq-border-effect { position: relative; display: inline-block; vertical-align: middle; }
.iq-counter.iq-counter-style-7.text-center .counter-content .iq-counter-info { text-align: center; display: inline-block; float: none; margin: 0 auto 15px; }
.iq-counter.iq-counter-style-7 .counter-content .iq-border-effect .iq-effect { margin: 0 15px; position: relative; background: var(--secondary-color); height: 2px; width: 30px; overflow: hidden; vertical-align: middle; }
.iq-counter.iq-counter-style-7 .counter-content .iq-border-effect .iq-effect::after, .iq-counter.iq-counter-style-7 .counter-content .iq-border-effect .iq-effect::before { content: ""; position: absolute; background: var(--white-color); width: 2px; height: 3px; left: 0; z-index: 1; -webkit-animation-duration: 3s; animation-duration: 3s; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-name: H-MOVE-BG; animation-name: H-MOVE-BG; }
.iq-counter.iq-counter-style-7 .counter-content  .counter-title-text { display: inline-block; vertical-align: middle; margin: 0; }
@-webkit-keyframes H-MOVE-BG {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to { -webkit-transform: translateX(60px); transform: translateX(60px); }
}
@keyframes H-MOVE-BG {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to { -webkit-transform: translateX(60px); transform: translateX(60px); }
}

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

/*Style 1*/
.iq-progressbar-content { position: relative; margin-bottom: 30px; }
.iq-progressbar-content:last-child { margin-bottom: 0; }
.progress-value { float: right; border-radius: 0; color: var(--secondary-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: #6f6f6f none repeat scroll 0 0; box-shadow: 0 0 0; height: 8px; 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; }

/*Style-2*/
.iq-progressbar-style-2 .iq-progress-bar { height: 30px; color: var(--white-color); font-size: 14px; line-height: 30px; }
.iq-progressbar-style-2 .iq-progress-bar .progress-title { left: 15px; right: auto; position: absolute; }
.iq-progressbar-style-2  .progress-value { color: var(--white-color); right: 15px; }

/*Style-3*/
.iq-progressbar-style-3  .progress-value { display: inline-flex; padding: 6px 10px; margin-top: -50px; align-items: center; justify-content: center; background-color: #6f6f6f; line-height: 1.5em; color: var(--white-color); position: relative; border-radius: 5px; }
.iq-progressbar-style-3  .progress-value::before { content: ''; display: inline-block; width: 0; left: 0; position: absolute; bottom: -4px; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-style: solid; border-color: #6f6f6f transparent transparent; }

/*Circle Progressbar*/
.iq-radial-progress.text-center .tox-progress { margin: 0 auto 15px; text-align: center; color: var(--secondary-color); }
.iq-radial-progress .tox-progress-content .text-center { width: 100%; }
.iq-radial-progress .tox-progress { margin-bottom: 15px; }
.iq-radial-progress .tox-progress-content .text-center p { font-weight: bold; }
.iq-radial-progress p { margin-bottom: 0; color: var(--secondary-color); }

/*style 2*/
.iq-radial-progress.iq-radial-progress-2 .tox-progress-content .text-center p.iq-progress-value { font-size: 32px; color: var(--text-color); font-weight: 600; }
.progressbar-circle { display: inline-block; width: 100%; }
.progressbar-circle .circle { width: 100%; margin: 0 auto; margin-top: 10px; display: inline-block; position: relative; text-align: center; }
.progressbar-circle .circle canvas { vertical-align: middle; height: 160px !important; width: 160px !important; }
.progressbar-circle .circle div { position: absolute; top: 45px; left: 5px; width: 100%; text-align: center; line-height: 80px; font-size: 32px; color: #8e989f; font-weight: 900; }
.progressbar-circle .circle strong i { font-style: normal; font-size: 0.6em; font-weight: normal; }
.progressbar-circle .circle span { display: block; color: #aaa; margin-top: 12px; }
.progressbar-circle .circle p { color: var(--title-color); }

/*--------------------------------------------------------------
                 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;  border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 5px; background-color: var(--white-color); }
.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-team-style-1 .owl-carousel .owl-stage-outer { overflow: visible; }
.iq-overflow-h { overflow: hidden; }
.iq-team-style-1 .iq-team-main-detail:after { background-size: cover; content: ""; position: absolute; width: 100%; height: 100%; left: 0; opacity: 0.08; -webkit-filter: grayscale(100%); filter: grayscale(100%); z-index: -1; }
.iq-team-blog .iq-team-info .iq-team-main-detail::before { background-size: cover; content: ""; position: absolute; width: 100%; height: 100%; left: 0; opacity: 0; z-index: 0; animation: 1s iq-down-leave; 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-team-blog:hover .iq-team-info .iq-team-main-detail::before { animation: 1s iq-down-enter; filter: none; opacity: 1; }
.iq-team-style-1 .iq-team-info { z-index: 2; -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; position: relative; display: block; width: 100%; }
.iq-team-style-1 .iq-team-blog .iq-team-info .iq-team-main-detail { background: var(--white-color); padding: 30px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; z-index: 1; position: relative; }
.iq-team-style-1 .iq-team-info  span { font-weight: normal; font-size: 14px; color: var(--secondary-text); text-transform: uppercase;  color: var(--primary-color); position: relative; z-index: 3; }
.iq-team-style-1 .iq-team-blog .iq-team-info .iq-team-main-detail a { position: relative; z-index: 3; }
.iq-team-style-1 .iq-team-blog:hover .iq-team-info:after { clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); -webkit-transition: -webkit-clip-path .2s ease; transition: -webkit-clip-path .2s ease; -o-transition: clip-path .2s ease; transition: clip-path .2s ease; transition: clip-path .2s ease, -webkit-clip-path .2s ease; }
.iq-team-style-1 .share { padding-top: 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-right: 10px; }
.iq-team-style-1 .share ul li:last-child { margin-right: 0; }
.iq-team-style-1 .share ul li a { text-align: center; display: block; color: var(--white-color); position: relative; width: 35px; height: 35px; line-height: 35px; text-decoration: none; background: var(--white-light-color); font-size: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; 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-team-style-1 .share ul li a::after { content: ''; position: absolute; left: 0; bottom: 0; display: block; width: 100%; height: 2px; background: var(--primary-color); border-radius: 3px }
.iq-team-style-1 .share ul li a i { vertical-align: middle; color: var(--secondary-color); }
.iq-team-style-1 .share ul li a:hover { background: var(--primary-color); color: var(--white-color); }
.iq-team-style-1 .share ul li a:hover i { color: var(--white-color); }
.iq-team-style-1 .iq-team-img { border-radius: 0px; overflow: hidden;border-top-left-radius: 5px;
  border-top-right-radius: 5px;}
.iq-team-style-1 .iq-team-blog .iq-team-img img { width: 100%;  -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out; }
.iq-team-style-1 .iq-team-blog:hover .iq-team-img img { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); }
.iq-team-style-1 .share ul { list-style: none; padding: 0; margin-top: 10px; margin-bottom: 0; }
.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-blog .iq-team-info .iq-team-main-detail::after { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-transition: all 0.3s; -o-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; }
.down-enter-active { animation: 1s iq-down-enter; }
.down-leave-active { animation: 1s iq-down-leave; }
.top-enter-active { animation: 3s iq-down-enter;animation-delay: 0.8s; }
.banner-enter-active{animation: 3s iq-down-enter;animation-delay: 2s;}
@keyframes iq-down-enter {
  0% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0); }
}
@keyframes iq-down-leave {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(100% 0 0 0); }
}
@media(max-width: 1024px){
  .iq-team.iq-team-style-grid.iq-team-style-1 .iq-team-blog{margin: 0 0 15px 0;}
}
/*---------------------------------------------------------------------
                              Banner
-----------------------------------------------------------------------*/
/*Style 2*/
.iq-team-style-2 .iq-team-blog { text-align: center; }
.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(--primary-color); }
.iq-team-style-2 .iq-team-info .designation-text { margin-bottom: 0; }

/*Style 3*/
.iq-team-style-3 .iq-team-blog { text-align: center; }
.iq-team-style-3 .iq-team-img { border: 1px solid #00cb69; width: 220px; height: 220px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; padding: 10px; overflow: hidden; display: inline-block; box-shadow: 5px 5px 0px rgba(2, 195, 102, 1.0); -webkit-box-shadow: 5px 5px 0px rgba(2, 195, 102, 1.0); -moz-box-shadow: 5px 5px 0px rgba(2, 195, 102, 1.0); -ms-box-shadow: 5px 5px 0px rgba(2, 195, 102, 1.0); -o-box-shadow: 5px 5px 0px rgba(2, 195, 102, 1.0); -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 { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; width: 200px; height: 200px; -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 { margin-top: 15px; }
.iq-team-style-3  .iq-team-info .member-text { color: var(--white-color); }
.iq-team-style-3  .iq-team-info .designation-text { margin-bottom: 0; color: var(--white-color); }
.iq-team-style-3 .iq-team-social { position: relative; margin-top: 10px; }
.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: 0 5px; }
.iq-team-style-3 .iq-team-social li a { padding: 0 5px; font-size: 15px; background: rgba(255, 255, 255, 1.0); width: 36px; height: 36px; line-height: 36px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; display: block; color: var(--primary-color); border: 1px solid var(--white-color); }
.iq-team-style-3 .iq-team-social li a:hover { color: var(--white-color); background: rgba(255, 255, 255, 0); }
.iq-team-style-3 .avtar-name a:hover { color: var(--secondary-color); }

/*style 4*/
.iq-team-style-4 .iq-team-img { position: relative; overflow: hidden; }
.iq-team-style-4 .iq-team-img:before { position: absolute; top: 0; left: 0; height: 100%; width: 100%; content: ""; opacity: 0; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(37, 177, 95, 1) 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(37, 177, 95, 1) 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(37, 177, 95, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f0f9ff', endColorstr='var(--primary-color)', GradientType=0); /* IE6-9 */ -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-4 .iq-team-blog:hover .iq-team-img:before { opacity: 1; }
.iq-team-style-4 .iq-team-img img { width: 100%; vertical-align: bottom; }
.iq-team-style-4 .iq-team-social { background: var(--white-color); position: absolute; left: 0; right: 0; bottom: -60px; -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-4 .iq-team-blog:hover .iq-team-social { bottom: 0; -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-4 .iq-team-social ul { margin-left: 0; text-align: center; padding: 0; list-style: none; }
.iq-team-style-4 .iq-team-social ul li { margin: 0; padding: 0; width: 25%; display: inline-block; vertical-align: middle; }
.iq-team-style-4 .iq-team-social ul li a { background: var(--white-color); color: var(--primary-color); height: 40px; width: 100%; line-height: 40px; display: inline-block; text-align: center; }
.iq-team-style-4 .iq-team-social ul li:hover a { background: var(--secondary-color); color: var(--white-color); }
.iq-team-style-4 .iq-team-info { padding: 15px; text-align: center; }
.iq-team-style-4 .iq-team-info .member-text:hover { color: var(--primary-color); }
.iq-team-style-4 .iq-team-info .designation-text { margin-bottom: 0; }

/*Style 5*/
.iq-team-style-5 .iq-team-blog { text-align: center; }
.iq-team-style-5 .iq-team-blog  .iq-team-info { margin-top: 15px; }
.iq-team-style-5 .iq-team-blog  .iq-team-info .member-text:hover { color: var(--primary-color); }
.iq-team-style-5 .iq-team-blog .team-blog { position: relative; text-align: center; overflow: hidden; }
.iq-team-style-5 .iq-team-blog .team-blog img { width: 100%; vertical-align: bottom; }
.iq-team-style-5 .iq-team-blog .team-blog:before { position: absolute; content: ""; width: 100%; height: 100%; left: 0; top: 0; background: rgba(37, 177, 95, 0.9); opacity: 0; }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-contact { position: absolute; width: 100%; top: -10%; left: 0; color: var(--white-color); margin-top: -20px; padding: 0; opacity: 0; -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-5 .iq-team-blog .team-blog  .iq-team-contact a:hover { color: var(--secondary-color); }
.iq-team-style-5 .iq-team-blog:hover .team-blog:before { opacity: 1; }
.iq-team-style-5 .iq-team-blog:hover .team-blog .iq-team-contact { top: 60%; opacity: 1; }
.iq-team-style-5 .iq-team-blog:hover .team-blog .iq-team-social { bottom: 40px; opacity: 1; }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-social { position: absolute; left: 0; bottom: -10%; width: 100%; opacity: 0; }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-social  ul { background: var(--white-color); width: 100%; display: inline-block; vertical-align: middle; padding: 0; margin: 0; }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-social  ul li { display: inline-block; }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-social  ul li a { color: var(--primary-color); }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-social  ul li a:hover { color: var(--secondary-color); }
.iq-team-style-5 .iq-team-blog .team-blog .iq-team-social  ul li a i { font-size: 16px; width: 45px; height: 45px; display: inline-block; float: none; line-height: 45px; text-align: center; background: transparent; }
.iq-team-style-5, .iq-team-style-5 .iq-team-blog .team-blog:before, .iq-team-style-5 .iq-team-blog:hover .team-blog:before, .iq-team-style-5 .iq-team-blog:hover .team-blog .iq-team-contact, .iq-team-style-5 .iq-team-blog:hover .team-blog .iq-team-social, .iq-team-style-5 .team-blog .iq-team-social { -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-5 .iq-team-info .designation-text { margin-bottom: 0; }

/*Style 6*/
.iq-team-style-6 .iq-team-blog { position: relative; overflow: hidden; }
.iq-team-style-6 .iq-team-blog:hover .team-blog:before { opacity: 1; }
.iq-team-style-6, .iq-team-style-6 .iq-team-blog .team-blog:before, .iq-team-style-6 .iq-team-blog:hover .team-blog:before, .iq-team-style-6 .iq-team-blog:hover .iq-team-description, .iq-team-style-6 .iq-team-blog:hover .iq-team-social, .iq-team-style-6 .iq-team-blog .iq-team-social { -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-6 .iq-team-description h5 { position: absolute; color: var(--white-color); left: -50%; bottom: 20%; opacity: 0; z-index: 9; 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-team-style-6 .iq-team-blog:hover .iq-team-description h5 { opacity: 1; left: 5%; }
.iq-team-style-6 .iq-team-description p { margin: 0; position: absolute; color: var(--white-color); left: -50%; bottom: 10%; opacity: 0; z-index: 9; transition: all 0.8s ease-in-out; transition: all 0.8s ease-in-out; -moz-transition: all 0.8s ease-in-out; -ms-transition: all 0.8s ease-in-out; -o-transition: all 0.8s ease-in-out; -webkit-transition: all 0.8s ease-in-out; }
.iq-team-style-6 .iq-team-blog:hover .iq-team-description p { opacity: 1; left: 5%; }
.iq-team-style-6 .iq-team-description .line { background: var(--white-color); height: 1px; width: 0; position: absolute; left: 0; bottom: 30%; z-index: 9; opacity: 0; transition: all 0.8s ease-in-out; transition: all 0.8s ease-in-out; -moz-transition: all 0.8s ease-in-out; -ms-transition: all 0.8s ease-in-out; -o-transition: all 0.8s ease-in-out; -webkit-transition: all 0.8s ease-in-out; }
.iq-team-style-6 .iq-team-blog:hover .iq-team-description .line { opacity: 1; width: 150px; }
.iq-team-style-6 .iq-team-blog .iq-team-social { position: absolute; right: -50%; bottom: 5%; opacity: 0; z-index: 9; }
.iq-team-style-6 .iq-team-blog:hover .iq-team-social { opacity: 1; right: 5%; }
.iq-team-style-6 .iq-team-blog .iq-team-social ul { width: 100%; display: inline-block; margin: 0; padding: 0; }
.iq-team-style-6 .iq-team-blog .iq-team-social ul li { display: inline-block; }
.iq-team-style-6 .iq-team-blog .iq-team-social ul li a { color: var(--white-color); padding: 10px; }
.iq-team-style-6 .iq-team-blog .iq-team-social ul li a:hover { color: var(--primary-color); }
.iq-team-style-6 .iq-team-blog .iq-team-social ul li a i { font-size: 20px; display: inline-block; float: none; text-align: center; background: transparent; }
.iq-team-style-6 .iq-team-img:before { position: absolute; top: 0; left: 0; height: 100%; width: 100%; content: ""; opacity: 0; z-index: 1; background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 1) 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 1) 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f0f9ff', endColorstr='var(--primary-color)', GradientType=0); /* IE6-9 */ -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-6 .iq-team-blog:hover .iq-team-img:before { opacity: 1; }

/*Style 7*/
.iq-team-style-7 .iq-team-blog { position: relative; overflow: hidden; }
.iq-team-style-7 .iq-team-description { background: var(--primary-color); color: var(--white-color); width: 100%; padding: 20px; bottom: -100px; opacity: 0; position: absolute; 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; }
.iq-team-style-7 .iq-team-description .iq-team-info .member-text { color: var(--white-color); }
.iq-team-style-7 .iq-team-description:after { bottom: -32px; left: 50%; margin-left: -20px; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-top-color: var(--primary-color); border-width: 20px; }
.iq-team-style-7 .iq-team-description.none:after { content: none; }
.iq-team-style-7 .iq-team-blog:hover .iq-team-description { bottom: 53px; opacity: 1; -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-7 .iq-team-blog:hover .iq-team-description.little { bottom: 0px; }
.iq-team-style-7 .iq-team-description a { color: var(--white-color); }
.iq-team-style-7 .iq-team-description a:hover { color: var(--secondary-color); }
.iq-team-style-7 .iq-team-description span { width: 100%; display: inline-block; }
.iq-team-style-7 .iq-team-description ul { display: inline-block; margin: 0; padding: 0; }
.iq-team-style-7 .iq-team-description ul li { padding: 0 5px; display: inline-block; }
.iq-team-style-7 .iq-team-description ul li a { font-size: 18px; }
.iq-team-images .iq-tooltip-item { top: 97%; margin: -15px 0 0 -10px; }
.iq-team-style-7 .iq-team-description .iq-team-info .content-text { margin-bottom: 15px; }

/* Trigger item */
.iq-team-style-7 .iq-tooltip-item { width: 20px; height: 20px; left: 50%; bottom: 10px; margin: -15px 0 0 -10px; position: absolute; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; border: 5px solid var(--primary-color); background: var(--white-color); -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, .5); -moz-box-shadow: 0 0 0 5px rgba(255, 255, 255, .5); box-shadow: 0 0 0 5px rgba(255, 255, 255, .5); -webkit-animation: pulse 0.6s infinite alternate; animation: pulse 0.6s infinite alternate; }
@-webkit-keyframes pulse {
  from { -webkit-transform: scale3d(0.5, 0.5, 1); }
  to { -webkit-transform: scale3d(1, 1, 1); }
}
@keyframes pulse {
  from { -webkit-transform: scale3d(0.5, 0.5, 1); transform: scale3d(0.5, 0.5, 1); }
  to { -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
}
.iq-team-style-7 .iq-team-images { position: relative; }
.iq-team-style-7 .iq-team-images img { width: 100%; }

/*Style 8*/
.iq-team-style-8 .iq-team-blog { text-align: center; }
.iq-team-style-8 .iq-team-blog .iq-team-img { width: 220px; height: 220px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; border: 5px solid #d7d7d7; position: relative; margin: 0 auto; transition: all .5s ease 0s; }
.iq-team-style-8 .iq-team-blog .iq-team-img img { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; width: 100%; height: 100%; }
.iq-team-style-8 .iq-team-blog .iq-team-info { padding: 30px 0 0; }
.iq-team-style-8 .iq-team-blog .iq-team-info .member-text, .iq-team-style-8 .iq-team-blog .iq-team-info .designation-text, .iq-team-style-8 .iq-team-blog .iq-team-info .content-text { color: var(--white-color); }
.iq-team-style-8 .iq-team-blog .iq-team-info .content-text { margin: 0; }
.iq-team-style-8 .iq-team-blog  .iq-team-social { margin: 0; padding: 0; list-style: none; width: 100%; position: absolute; bottom: -15px; opacity: 0; transform: scale(0); transition: all .5s ease 0s; }
.iq-team-style-8 .iq-team-blog  .iq-team-social ul li  a { display: block; width: 50px; height: 50px; line-height: 46px; border-radius: 50%; background-color: var(--white-color); font-size: 18px; color: var(--primary-color); border: 3px solid var(--primary-color); }
.iq-team-style-8 .iq-team-blog  .iq-team-social ul { list-style: none; padding: 0; margin: 0; }
.iq-team-style-8 .iq-team-blog:hover .iq-team-social { opacity: 1; transform: scale(1); }
.iq-team-style-8 .iq-team-blog  .iq-team-social ul li:first-child { margin-left: -30px; margin-top: 0; }
.iq-team-style-8 .iq-team-blog  .iq-team-social ul li { display: inline-block; border-radius: 50%; vertical-align: middle; margin: 45px 5px 0 0; }
.iq-team-style-8 .iq-team-blog  .iq-team-social ul li:last-child { margin-right: -30px; margin-top: 0; }

/*Style 9*/
.iq-team-style-9 .iq-team-blog:hover .iq-team-info { bottom: 0; }
.iq-team-style-9 .iq-team-blog { position: relative; overflow: hidden; }
.iq-team-style-9 .iq-team-info { padding: 10px 15px; text-align: center; background: none; position: absolute; bottom: -84px; background: var(--white-light-color); left: 0; display: inline-block; width: 100%; -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; border: 1px solid #e8f8f2 }
.iq-team-style-9 .iq-team-info span { font-size: 14px; display: inline-block; width: 100%; float: left; }
.iq-team-style-9 .iq-team-social { background: none; position: absolute; left: -65px; top: 10px; width: 45px; -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-9 .iq-team-blog:hover .iq-team-social { left: 15px; }
.iq-team-style-9 .iq-team-social ul li { margin: 5px 0; }
.iq-team-style-9 .iq-team-social ul li a { color: var(--white-color); width: 45px; height: 45px; line-height: 45px; background: var(--white-color); color: #46c894; border-radius: 90px; text-align: center; display: inline-block; }
.iq-team-style-9 .iq-team-social ul li a:hover { color: var(--white-color); background: rgba(37, 177, 95, 1); background: var(--primary-color); }
.iq-team-style-9 .iq-team-img { position: relative; }
.iq-team-style-9 .iq-team-img img { width: 100%; }
.iq-team-style-9 .iq-team-img:before { content: ""; bottom: 0; opacity: 0; left: 0; position: absolute; width: 100%; height: 100%; background: rgba(71, 38, 205, 0); background: -moz-linear-gradient(top, rgba(71, 38, 205, 0) 0%, rgba(117, 205, 111, 1) 100%); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71, 38, 205, 0)), color-stop(100%, rgba(117, 205, 111, 1))); background: -webkit-linear-gradient(top, rgba(71, 38, 205, 0) 0%, rgba(117, 205, 111, 1) 100%); background: -o-linear-gradient(top, rgba(71, 38, 205, 0) 0%, rgba(117, 205, 111, 1) 100%); background: -ms-linear-gradient(top, rgba(71, 38, 205, 0) 0%, rgba(117, 205, 111, 1) 100%); background: linear-gradient(to bottom, rgba(71, 38, 205, 0) 0%, rgba(117, 205, 111, 1) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46c894', endColorstr='#46c894', GradientType=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-9 .iq-team-blog:hover .iq-team-img:before { opacity: 1; }
.iq-team-style-9 .iq-team-social ul { list-style: none; padding: 0; margin: 0; }

/*style 10*/
.iq-team-style-10 .iq-team-blog { position: relative; -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1); -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1); box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1) }
.iq-team-style-10 .iq-team-blog:before { position: absolute; content: ""; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; transition: all .5s ease-in-out; transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out; background: var(--primary-color); opacity: 0 }
.iq-team-style-10  .iq-team-blog .iq-team-info { text-align: center; width: 100%; display: inline-block; color: var(--white-color); opacity: 0; transition: all .5s ease-in-out; transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out; z-index: 9; position: absolute; top: 55%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%) }
.iq-team-style-10  .iq-team-blog .iq-team-info .member-text { color: #fff }
.iq-team-style-10  .iq-team-blog  .iq-team-info .designation-text { margin: 0 0 10px; display: inline-block; width: 100%; font-weight: 600 }
.iq-team-style-10 .iq-team-social { position: relative; width: 100% }
.iq-team-style-10 .iq-team-social span { display: inline-block; font-weight: 600; text-transform: uppercase; opacity: 1; pointer-events: none; position: absolute; top: 0; left: 50%; margin-left: -82px; border-radius: 90px; padding: 10px 30px; background: var(--white-color); color: var(--primary-color); transition: all .5s ease-in-out; transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out }
.iq-team-style-10 .iq-team-social ul { margin: 0; padding: 0; }
.iq-team-style-10 .iq-team-social ul li { list-style: none; display: inline-block; }
.iq-team-style-10 .iq-team-social ul li a { line-height: 45px; width: 45px; text-align: center; display: inline-block; color: var(--primary-color); overflow: hidden; opacity: 1; margin: 0 -20px; background: var(--white-color); transition: all .5s ease-in-out; transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -ms-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; -webkit-transition: all .5s ease-in-out }
.iq-team-style-10 .iq-team-social ul li:nth-child(1) a { margin-left: 0 }
.iq-team-style-10 .iq-team-social ul li:nth-child(4)  a { margin-right: 0 }
.iq-team-style-10 .iq-team-social:hover span, .iq-team-style-10 .iq-team-social.hover span { opacity: 0 }
.iq-team-style-10 .iq-team-social:hover a { border-radius: 50%; margin: 0 5px; color: var(--primary-color); font-size: 16px }
.iq-team-style-10 .iq-team-social:hover a:hover, .iq-team-style-10 .iq-team-social.hover a:hover { color: var(--white-color); background: var(--secondary-color); }
.iq-team-style-10 .iq-team-blog:hover:before { opacity: .8 }
.iq-team-style-10 .iq-team-blog:hover .iq-team-info { opacity: 1 }
.iq-team-style-10 .iq-team-social span i { margin-right: 10px; }

/*style 11*/
.iq-team-style-11 .iq-team-blog { position: relative; text-align: center; overflow: hidden; }
.iq-team-style-11 .iq-team-blog:before { position: absolute; content: ""; width: 100%; height: 100%; left: 0; top: 0; background-image: -webkit-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%); background-image: -moz-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); opacity: 0; }
.iq-team-style-11 .iq-team-blog .iq-team-info { position: absolute; width: 100%; bottom: 0%; left: 0; color: var(--white-color); margin-top: -20px; padding: 0; opacity: 0; font-size: 16px; display: inline-block; }
.iq-team-style-11 .iq-team-blog .iq-team-info .member-text { color: var(--white-color); }
.iq-team-style-11 .iq-team-blog .iq-team-info a:hover { color: var(--title-color); }
.iq-team-style-11 .iq-team-blog:hover:before { opacity: 0.9; }
.iq-team-style-11 .iq-team-blog .iq-team-social { position: absolute; left: 0; bottom: 0%; width: 100%; opacity: 0; display: inline-block; }
.iq-team-style-11 .iq-team-blog .iq-team-social ul { width: 100%; display: inline-block; padding: 0px 10px; }
.iq-team-style-11 .iq-team-blog .iq-team-social ul li { display: inline-block; width: auto; float: inherit; padding: 5px; }
.iq-team-style-11 .iq-team-blog .iq-team-social ul li a { color: var(--white-color); padding: 4px; }
.iq-team-style-11 .iq-team-blog .iq-team-social ul li a:hover { color: var(--secondary-color); }
.iq-team-style-11 .iq-team-blog .iq-team-social ul li a i { font-size: 18px; display: inline-block; float: none; text-align: center; background: transparent; }
.iq-team-style-11 .iq-team-blog:before, .iq-team-style-11 .iq-team-blog:hover:before, .iq-team-style-11 .iq-team-blog:hover .iq-team-info, .iq-team-style-11 .iq-team-blog:hover .iq-team-social, .iq-team-style-11 .iq-team-blog .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-11 .iq-team-blog:hover .iq-team-info { bottom: 30%; opacity: 1; }
.iq-team-style-11 .iq-team-blog:hover .iq-team-social { bottom: 6%; opacity: 1; }
.iq-team-style-11  li:first-child .team-blog:hover  .team-description { bottom: 20%; }
.iq-team-style-11 .iq-team-blog .iq-team-info .team-post { margin-bottom: 0; font-size: 14px; }
.iq-team-style-11 .iq-team-blog .iq-team-img img { width: 100%; webkit-filter: grayscale(100%); filter: grayscale(100%); }
.iq-team-style-11 .iq-team-blog:hover .iq-team-img img { -webkit-filter: none; filter: none; }

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

/*column*/
.iq-client-grid { list-style: none; padding: 0; border-top: 1px solid #f2f2f2; border-right: 1px solid #f2f2f2; margin: 0; float: left; width: 100%; }
.iq-client-grid li { border-left: 1px solid #f2f2f2; border-bottom: 1px solid #f2f2f2; padding: 15px; text-align: center; float: left; background: var(--white-color); }
.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 .item { padding: 15px; 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 .owl-carousel .owl-item img { width: auto; 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: auto; 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: auto; -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; }

/*--------------------------------------------------------------
                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; }
.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; }
@media(max-width: 479px){
  .iq-list.iq-two-column{columns: 1; -webkit-columns: 1; -moz-columns: 1;}
}
/*--------------------------------------------------------------
              Pricing  Lists
--------------------------------------------------------------*/
.iq-price-list { display: flex; position: relative; margin-bottom: 15px; }
.iq-price-list .iq-price-list-img img { width: 100px; }
.iq-price-list-title { position: relative; width: 100%; text-align: left; margin-top: 15px; font-weight: 600; }
.iq-price-list-title a { position: relative; padding-right: 30px; text-decoration: none; }
.iq-price-list-title a:hover { color: var(--primary-color); }
.iq-price-list .iq-price-list-text { text-align: left; font-size: 16px; padding-right: 45px }
.iq-price-list .list-price { font-size: 24px; display: inline-grid; text-align: left; position: absolute; top: 10px; right: 0; padding-left: 30px; }
.iq-price-list  .iq-price-list-img { margin-right: 20px; text-align: center; }
.iq-price-list .iq-price-list-tag { position: absolute; left: 0; z-index: 9; background: var(--warning-color); border-radius: 10px; font-size: 12px; padding: 5px 15px; color: var(--white-color); line-height: 12px; top: -10px; }
.iq-price-list .clearfix { position: relative; flex: 1; }

/*--------------------------------------------------------------
           Process Steps
--------------------------------------------------------------*/

/*style 1*/
.iq-process-step .iq-before-img { position: absolute; right: -20%; top: 15%; }
.text-left .iq-process-step  .iq-before-img { right: 15%; }
.text-right .iq-process-step  .iq-before-img { left: 10%; right: auto; }
.iq-before-img { position: absolute; right: -20%; top: 15%; }
.iq-process-step-style-1 .iq-process-step { position: relative; display: block; }
.iq-process-step-style-1 .iq-process-step .iq-step-content { margin-bottom: 30px; text-align: center; background: var(--white-color); height: 110px; width: 110px; -webkit-border-radius: 110px; -moz-border-radius: 110px; border-radius: 110px; position: relative; top: 0; display: inline-block; -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; -webkit-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; }
.iq-process-step-style-1 .iq-process-step:hover .iq-step-content { top: -8px; }
.iq-process-step-style-1 .iq-process-step .iq-step-content i { font-size: 50px; line-height: 110px; color: var(--primary-color); }
.iq-process-step-style-1 .iq-process-step .step-number { font-size: 18px; background: var(--primary-color); -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; color: var(--white-color); width: 36px; height: 36px; line-height: 36px; text-align: center; position: absolute; top: 0; right: 0; }
.iq-process-step-style-1 .iq-process-step h5 span { height: 6px; width: 6px; background: var(--primary-color); -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; display: inline-block; margin-left: 6px; }
.iq-process-step-style-1 .iq-process-step .iq-step-text-area .iq-step-title { margin-bottom: 10px; }
.iq-process-step-style-1 .iq-process-step .iq-step-text-area .iq-step-desc { display: block; }

/*style 2*/
.iq-process-step-style-2 .iq-process-step { position: relative; display: block; }
.iq-process-step-style-2 .iq-process-step .iq-step-content { position: relative; overflow: hidden; padding: 30px 30px 0; background: var(--white-color); transition: all 0.5s ease-in-out; -webkit-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; }
.iq-process-step-style-2 .iq-process-step .iq-step-content .step-number { font-size: 48px; color: var(--primary-color); line-height: normal; font-weight: bold; margin-bottom: 10px; transition: all 0.5s ease-in-out; -webkit-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; }
.iq-process-step-style-2 .iq-process-step .iq-step-content .iq-step-title { margin: 0 0 10px; transition: all 0.5s ease-in-out; -webkit-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; }
.iq-process-step-style-2 .iq-process-step .iq-step-content .iq-step-text-area .iq-step-desc { margin-bottom: 10px; display: block; transition: all 0.5s ease-in-out; -webkit-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; }
.iq-process-step-style-2 .iq-process-step .iq-step-content .iq-step-text-area .iq-button { opacity: 0; transition: all 0.5s ease-in-out; -webkit-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; }
.iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-text-area .iq-button { opacity: 1; transition: all 0.5s ease-in-out; -webkit-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; }
.iq-process-step-style-2 .iq-process-step:hover .iq-step-content .step-number { opacity: 0; }
.iq-process-step-style-2 .iq-process-step:hover .iq-step-content { -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-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-title, .iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-text-area .iq-step-desc, .iq-process-step-style-2 .iq-process-step:hover .iq-step-content .iq-step-text-area .iq-button { -moz-transform: translateY(-35px); -ms-transform: translateY(-35px); -webkit-transform: translateY(-35px); transform: translateY(-35px); }
.iq-process-step-style-2 .iq-process-step .iq-step-content: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; left: 0; right: 0; bottom: 0px; }
.iq-process-step-style-2 .iq-process-step:hover .iq-step-content:before { width: 100%; }

/*style 3*/
.iq-process-step-style-3 .iq-process-step { position: relative; display: block; }
.iq-process-step-style-3 .iq-process-step .iq-step-content { margin-bottom: 30px; text-align: center; background: var(--white-color); height: 110px; width: 110px; -webkit-border-radius: 110px; -moz-border-radius: 110px; border-radius: 110px; position: relative; top: 0; display: inline-block; -webkit-box-shadow: 4.871px 34.659px 30px 0px rgba(70, 200, 148, 0.06); -moz-box-shadow: 4.871px 34.659px 30px 0px rgba(70, 200, 148, 0.06); box-shadow: 4.871px 34.659px 30px 0px rgba(70, 200, 148, 0.06); transition: all 0.5s ease-in-out; -webkit-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; border-bottom-right-radius: 0px; }
.iq-process-step-style-3 .iq-process-step:hover .iq-step-content { top: -8px; }
.iq-process-step-style-3 .iq-process-step .iq-step-content i { font-size: 50px; line-height: 110px; color: var(--primary-color); }
.iq-process-step-style-3 .iq-process-step .step-number { font-size: 18px; position: absolute; top: 0; right: 0; }
.iq-process-step-style-3 .iq-process-step .iq-step-text-area .iq-step-title { margin-bottom: 10px; }

/*style 4*/
.iq-process-step-style-4 .iq-process-step { position: relative; display: block; padding: 0 15px; }
.iq-process-step-style-4 .iq-process-step .iq-step-content { background: var(--white-color); margin-bottom: 30px; text-align: center; border: 2px dashed var(--secondary-color); height: 110px; width: 110px; -webkit-border-radius: 110px; -moz-border-radius: 110px; border-radius: 110px; position: relative; top: 0; display: inline-block; transition: all 0.5s ease-in-out; -webkit-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-box-shadow: 0 -15px 15px 10px rgba(255, 255, 255, 0.9); -moz-box-shadow: 0 -15px 15px 10px rgba(255, 255, 255, 0.9); box-shadow: 0 -15px 15px 10px rgba(255, 255, 255, 0.9); }
.iq-process-step-style-4 .iq-process-step:hover .iq-step-content { top: -8px; }
.iq-process-step-style-4 .iq-process-step .iq-step-content i { font-size: 50px; line-height: 110px; color: var(--primary-color); }
.iq-process-step-style-4 .iq-process-step .step-number { color: var(--primary-color); font-size: 90px; position: absolute; top: -100%; right: 0; left: 0; font-weight: bold; margin: 0 auto; z-index: -1; }
.iq-process-step-style-4 .iq-process-step .iq-step-text-area .iq-step-title { margin-bottom: 10px; }

/*style 5*/
.iq-process-step-style-5 .iq-process-step { position: relative; display: block; padding: 70px  15px 0; }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area { background: var(--secondary-color); border: 1px solid var(--white-light-color); padding: 60px 30px 60px; position: relative; overflow: hidden; z-index: 1; }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area i::before { vertical-align: middle; }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area i { font-size: 45px; margin-bottom: 30px; display: block; color: var(--white-color); }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-step-title { margin-bottom: 15px; color: var(--white-color); }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-step-desc { color: var(--white-color); }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-button { position: absolute; right: 16px; font-size: 0; line-height: 40px; bottom: 10px; color: var(--white-color); opacity: 0; z-index: 1; -webkit-transform: translate3d(20px, 20px, 0); transform: translate3d(20px, 20px, 0); -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear; }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area .iq-button i { line-height: 40px; font-size: 40px; margin-bottom: 0; }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area::before { position: absolute; right: -30px; bottom: -35px; width: 100px; height: 100px; background: #191a20; border-radius: 100%; content: ''; opacity: 0; -webkit-transform: scale3d(0.5, 0.5, 1); transform: scale3d(0.5, 0.5, 1); -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; }
.iq-process-step-style-5 .iq-process-step:hover .iq-step-text-area .iq-button { opacity: 1; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
.iq-process-step-style-5 .iq-process-step:hover .iq-step-text-area::before { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
.iq-process-step-style-5 .iq-process-step .iq-step-text-area::after { 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; left: 0; right: 0; bottom: 0; }
.iq-process-step-style-5 .iq-process-step:hover .iq-step-text-area::after { width: 100%; }
.iq-process-step-style-5 .iq-process-step .iq-step-content .step-number { -webkit-transition: all 0.5s linear; -moz-transition: all 0.5s linear; -o-transition: all 0.5s linear; transition: all 0.5s linear; font-size: 140px; font-family: 'Montserrat', sans-serif; font-weight: bold; position: absolute; text-align: center; top: 120px; margin: 0 auto; left: 0; right: 0; line-height: 140px; color: var(--primary-color); }
.iq-process-step-style-5 .iq-process-step:hover .iq-step-content .step-number { top: -30px; }

/*style 6*/
.iq-process-step-style-6 .iq-process-step { position: relative; display: block; padding: 0 15px; }
.iq-process-step-style-6 .iq-process-step  .iq-step-content .step-number { background: var(--white-color); border-radius: 100px; box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.15); color: var(--secondary-color); width: 40px; height: 40px; line-height: 40px; text-align: center; position: absolute; font-weight: 600; top: 15px; right: 30%; z-index: 1; }
.iq-process-step-style-6 .iq-process-step  .iq-step-content { margin-bottom: 30px; }
.text-left.iq-process-step-style-6 .iq-process-step  .iq-step-content .step-number { left: 0; right: auto; }
.text-right.iq-process-step-style-6 .iq-process-step  .iq-step-content .step-number { right: 0; left: auto; }
.iq-process-step-style-6 .iq-process-step .iq-step-text-area .iq-step-title { margin-bottom: 10px; }

/*style 7*/
.iq-process-step-style-7 .iq-process-step { background: var(--white-color); border-radius: 4px; min-height: 160px; margin: 0px 0 30px; padding: 30px 15px; z-index: 0; box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1); position: relative; display: block; 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-process-step-style-7 .iq-step-title, .iq-process-step-style-7 .iq-step-text-area { 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-process-step-style-7 .iq-process-step  .iq-step-content .step-number { background: var(--white-color); border-radius: 100px; color: var(--primary-color); width: 35px; height: 35px; line-height: 35px; text-align: center; position: absolute; font-weight: 600; top: -15px; right: -15px; z-index: 1; background: rgba(111, 115, 240, 0.20); }
.text-right.iq-process-step-style-7 .iq-process-step  .iq-step-content .step-number { left: -15px; right: auto; }
.iq-process-step-style-7 .iq-process-step  .iq-step-content i { font-size: 45px; 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-process-step-style-7 .iq-process-step  .iq-step-content { margin-bottom: 10px; display: inline-block; line-height: normal; vertical-align: middle; }
.iq-process-step-style-7 .iq-process-step .iq-step-text-area .iq-step-desc { margin-top: 10px; margin-bottom: 15px; display: block; }
.iq-process-step-style-7 .iq-process-step { 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-process-step-style-7:hover .iq-process-step { box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4); background: var(--primary-color); }
.iq-process-step-style-7:hover .iq-process-step  .iq-step-content .step-number { background: var(--white-color); box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4); }
.iq-process-step-style-7:hover .iq-process-step  .iq-step-content i, .iq-process-step-style-7:hover .iq-step-title, .iq-process-step-style-7:hover .iq-step-desc { color: var(--white-color); }

/*--------------------------------------------------------------
           Event Schedule
--------------------------------------------------------------*/
.iq-event-schedule { border: 1px solid #f5f5f5; margin-bottom: 30px; }
.iq-event-schedule .iq-event-title { padding: 15px 30px; background: #f5f5f5; }
.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; margin-top: -1px; }

/*--------------------------------------------------------------
        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: #545454; }
.iq-tooltip-style-2 .tooltip::after { content: ''; position: absolute; top: -10px; left: 30px; margin-left: -10px; border-bottom: 10px solid #fff1d3; 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 #545454; }
.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: red; 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 #f00; }
.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 1*/
.iq-fancy-box-style-1 { overflow: hidden; background: #242424; position: relative; height: 411px; padding: 130px 20px; -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-fancy-box-style-1:before { position: absolute; opacity: 0; width: 100%; height: 100%; top: 0px; left: 0px; z-index: 99; background: var(--primary-color); content: ""; display: inline-block; }
.iq-fancy-box-style-1 .iq-fancy-box-content { position: relative; z-index: 99; color: var(--white-color); }
.iq-fancy-box-style-1 .iq-fancy-box-content i { font-size: 70px; }
.iq-fancy-box-style-1 .iq-fancy-box-content .special-content { display: none; -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-fancy-box-style-1 .iq-fancy-read-more { position: absolute; bottom: 0; left: 0px; width: 100%; padding: 10px; opacity: 0; z-index: 99; line-height: 26px; background: rgba(255, 255, 255, 0.4); color: #222222; }
.iq-fancy-box-style-1 .iq-fancy-read-more i { padding-left: 5px; }
.iq-fancy-box-style-1 .iq-special-img { position: absolute; bottom: 0; right: 0; top: 0; left: 0; opacity: 0; z-index: 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; background-size: cover; background-position: center center; }
.iq-fancy-box-style-1 .iq-fancy-box-content .iq-fancy-title { margin-top: 30px; margin-bottom: 15px; color: var(--white-color); }
.iq-fancy-box-style-1:hover, .iq-fancy-box-style-1.active { padding: 86px 20px 86px; }
.iq-fancy-box-style-1:hover:before, .iq-fancy-box-style-1.active:before { opacity: 0.8; }
.iq-fancy-box-style-1:hover .iq-fancy-read-more:hover, .iq-fancy-box-style-1.active .iq-fancy-read-more:hover { color: var(--secondary-color); }
.iq-fancy-box-style-1:hover .special-content, .iq-fancy-box-style-1.active .special-content { display: block; -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-fancy-box-style-1:hover .iq-fancy-read-more, .iq-fancy-box-style-1 .iq-box.active .iq-fancy-read-more, .iq-fancy-box-style-1:hover .iq-special-img, .iq-fancy-box-style-1.active .iq-special-img { opacity: 1; }
.iq-fancy-box-style-1 .iq-btn-container { position: relative; z-index: 99; }

/*style 2*/
.iq-fancy-box-style-2 { position: relative; overflow: hidden; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-fancy-box-style-2 .iq-img-area { position: absolute; width: 100%; height: 100%; top: 0; left: 0; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-fancy-box-style-2 .iq-img-area img { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-fancy-box-style-2 .iq-fancy-box-content { -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); padding: 30px; background: var(--white-color); position: relative; -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; left: 0; width: auto; right: 0; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; margin: 150px 30px 60px; }
.iq-fancy-box-style-2 .iq-fancy-box-content .fancy-box-content { margin-bottom: 0; }
.iq-fancy-box-style-2 .iq-fancy-box-content .iq-fancy-title { margin-bottom: 10px; }
.iq-fancy-box-style-2:hover .iq-fancy-box-content, .iq-fancy-box-style-2.active .iq-fancy-box-content { transform: translateY(-10px); -webkit-transform: translateY(-10px); transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; }

/*style 3*/
.iq-fancy-box-style-3 { overflow: hidden; position: relative; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-fancy-box-style-3::before { content: ""; position: absolute; background: rgba(0, 0, 0, 0.7); height: 100%; width: 100%; top: 0; left: 0; opacity: 0; -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-fancy-box-style-3:hover::before, .iq-fancy-box-style-3.active::before { opacity: 1; }
.iq-fancy-box-style-3 .iq-fancy-box-content { position: absolute; bottom: 30px; left: 30px; right: 30px; opacity: 0; -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-fancy-box-style-3 .iq-fancy-box-content .iq-fancy-title { margin-bottom: 15px; }
.iq-fancy-box-style-3 .iq-fancy-box-content .fancy-box-content { margin-bottom: 0; }
.iq-fancy-box-style-3 .iq-fancy-box-content .iq-fancy-title, .iq-fancy-box-style-3 .iq-fancy-box-content .fancy-box-content { color: var(--white-color); opacity: 0; transform: translateY(30px); -webkit-transform: translateY(30px); -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-fancy-box-style-3:hover .iq-fancy-box-content, .iq-fancy-box-style-3.acitve .iq-fancy-box-content { opacity: 1; }
.iq-fancy-box-style-3:hover .iq-fancy-box-content .iq-fancy-title, .iq-fancy-box-style-3:hover .iq-fancy-box-content .fancy-box-content, .iq-fancy-box-style-3.active .iq-fancy-box-content .iq-fancy-title, .iq-fancy-box-style-3.active .iq-fancy-box-content .fancy-box-content { opacity: 1; transform: translateY(0px); -webkit-transform: translateY(0px); }

/*style 4*/
.iq-fancy-box-style-4 .iq-bottom-img img {    width: 100%; z-index: 1; bottom: 0px; 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; position: absolute; animation: 1s down-leave; }
.iq-fancy-box-style-4:hover .iq-bottom-img img { opacity: 1; animation: 1s down-enter; }
.iq-fancy-box-style-4 .iq-counter-number { right: 20px; position: absolute; top: 20px; transition: transform .5s; font-weight: 600; transform: scale(1); }
.iq-fancy-box-style-4 { position: relative; box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.1); margin-bottom: 30px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; overflow: hidden; }
.iq-fancy-box-style-4 .iq-fancy-box-content { padding: 30px 15px; background: var(--white-color); position: relative; z-index: 1; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
.iq-fancy-box-style-4 .iq-fancy-box-content .iq-img-area { margin-bottom: 25px; font-size: 45px; line-height: normal; }
.iq-fancy-box-style-4 .iq-fancy-box-content .iq-img-area i::before { vertical-align: middle; }
.iq-fancy-box-style-4 .iq-fancy-box-content .iq-fancy-title { margin-bottom: 15px; }
.iq-fancy-box-style-4 .iq-fancy-box-content .fancy-box-content { margin-bottom: 0; }
.iq-fancy-box-style-4:hover:before, .iq-fancy-box-style-4.active:before { transform: rotate(12deg); }
.iq-fancy-box-style-4:hover .iq-fancy-box-content .iq-img-area, .iq-fancy-box-style-4.active .iq-fancy-box-content .iq-img-area { color: var(--primary-color); }
.iq-fancy-box.iq-fancy-box-style-4.text-right  .iq-img-area { text-align: right; }
.iq-fancy-box.iq-fancy-box-style-4.text-left  .iq-img-area { text-align: left; }
.iq-fancy-box.iq-fancy-box-style-4.text-center  .iq-img-area { text-align: center; }
.iq-fancy-box-style-4:hover .iq-counter-number { transform: scale(1.5); color: var(--primary-color); }
.iq-fancy-box-style-4 .iq-bottom-img { text-align: left; }
.down-enter-active { animation: 1s down-enter; }
.down-leave-active { animation: 1s down-leave; }
.road-effect { position: relative; width: 100%; }
.road-effect:after { content: ""; width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0;}
.road-effect.animated:after { animation: 2s down-enter; }
.road-effect img { animation: 2s down-enter; }
@keyframes down-enter {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0); }
}
@keyframes down-leave {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(0 0 0 100%); }
}

/**
 * ----------------------------------------
 * animation slide-out-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-out-left {
  0% { -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; }
  100% { -webkit-transform: translateX(-1000px); transform: translateX(-1000px); opacity: 0; }
}
@keyframes slide-out-left {
  0% { -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; }
  100% { -webkit-transform: translateX(-1000px); transform: translateX(-1000px); opacity: 0; }
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% { -webkit-transform: translateX(-1000px); transform: translateX(-1000px); opacity: 0; }
  100% { -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; }
}
@keyframes slide-in-left {
  0% { -webkit-transform: translateX(-1000px); transform: translateX(-1000px); opacity: 0; }
  100% { -webkit-transform: translateX(0); transform: translateX(0); opacity: 1; }
}

/*style 5*/
.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 { padding: 45px 15px; 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-fancy-box-style-5:hover  img, .iq-fancy-box-style-5.active  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: 1s; animation-duration: 1s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; }
.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-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; border-radius: 10px; }
.iq-fancy-box-style-5:hover:before, .iq-fancy-box-style-5.active: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, .iq-fancy-box-style-5.active i, .iq-fancy-box-style-5.active .iq-fancy-title, .iq-fancy-box-style-5.active  .fancy-box-content, .iq-fancy-box-style-5.active  .iq-fancy-read-more { color: var(--white-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); }
}

/*style 6*/
.iq-fancy-box-style-6 { position: relative; }
.iq-fancy-box-style-6.text-left .iq-fancy-box-content .iq-fancy-read-more { right: inherit; }
.iq-fancy-box-style-6.text-right .iq-fancy-box-content .iq-fancy-read-more { left: inherit; }
.iq-fancy-box-style-6 .iq-fancy-box-content .iq-fancy-read-more i { font-size: 24px; color: var(--white-color); margin: 0; }
.iq-fancy-box-style-6 .iq-fancy-box-content .iq-fancy-read-more i:before { vertical-align: middle; }
.iq-fancy-box-style-6:hover .iq-fancy-box-content .iq-fancy-read-more, .iq-fancy-box-style-6.active .iq-fancy-box-content .iq-fancy-read-more { background: var(--white-color); }
.iq-fancy-box-style-6:hover .iq-fancy-box-content .iq-fancy-read-more i, .iq-fancy-box-style-6.active .iq-fancy-box-content .iq-fancy-read-more i { color: #4e7afc; }
.iq-fancy-box-style-6 .iq-fancy-box-content .iq-fancy-read-more { width: 45px; height: 45px; display: inline-block; line-height: 45px; border-radius: 90px; background: #4e7afc; text-align: center; left: 0; position: absolute; right: 0; margin: 0 auto; padding: 0; vertical-align: middle; }
.iq-fancy-box-style-6 { box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.1); top: 0; position: relative; }
.iq-fancy-box-style-6:hover, .iq-fancy-box-style-6.active { top: -10px; }
.iq-fancy-box-style-6 .iq-fancy-box-content .media-body { margin-top: 15px; }
.iq-fancy-box-style-6 .iq-fancy-box-content { display: block; z-index: 1; position: relative; }
.iq-fancy-box-style-6:hover, .iq-fancy-box-style-6.active { background: transparent; }
.iq-fancy-box-style-6 .iq-img-area i:before { font-size: 40px; vertical-align: middle; }
.iq-fancy-box-style-6:before { z-index: 1; }
.iq-fancy-box-style-6 { padding: 30px; border-radius: 4px; -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); border: 1px solid  var(--white-light-color); position: relative; background: var(--white-color); }
.iq-fancy-box-style-6 .iq-img-area { overflow: hidden; }
.iq-fancy-box-style-6, .iq-fancy-box-style-6 .iq-img-area, .iq-fancy-box-style-6 .iq-fancy-title, .iq-fancy-box-style-6 .fancy-box-content { 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-6:before { border-radius: 4px; 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-fancy-box-style-6:hover:before, .iq-fancy-box-style-6.active:before { opacity: 1; }
.iq-fancy-box-style-6:hover .iq-img-area:before, .iq-fancy-box-style-6.active .iq-img-area:before { opacity: 0.4; }
.iq-fancy-box-style-6 .iq-img-area:before { background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); border-radius: 90px; line-height: 80px; width: 80px; height: 80px; text-align: center; content: ""; position: absolute; left: 0; top: 0; opacity: 0.2; 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-6 .iq-img-area { vertical-align: middle; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; display: inline-block; z-index: 0; width: 80px; height: 80px; color: var(--white-color); position: relative; line-height: 80px; text-align: center; }
.iq-fancy-box-style-6 .iq-img-area i { line-height: 80px; }
.iq-fancy-box-style-6:hover .iq-fancy-title, .iq-fancy-box-style-6.active .iq-fancy-title { color: var(--white-color); }
.iq-fancy-box-style-6:hover .fancy-box-content, .iq-fancy-box-style-6.active .fancy-box-content { color: var(--white-color); }
.main-bg { background-image: -moz-linear-gradient(0deg, rgb(78, 122, 252) 0%, rgb(78, 122, 252) 100%); background-image: -webkit-linear-gradient(0deg, rgb(78, 122, 252) 0%, rgb(78, 122, 252) 100%); background-image: -ms-linear-gradient(0deg, rgb(78, 122, 252) 0%, rgb(78, 122, 252) 100%); }
.iq-fancy-box-style-6:before { background-image: -moz-linear-gradient(0deg, rgb(78, 122, 252) 0%, rgb(78, 122, 252) 100%); background-image: -webkit-linear-gradient(0deg, rgb(78, 122, 252) 0%, rgb(78, 122, 252) 100%); background-image: -ms-linear-gradient(0deg, rgb(78, 122, 252) 0%, rgb(78, 122, 252) 100%); }
.iq-fancy-box-style-6 .iq-img-area { color: #6e73ef; }
.iq-fancy-box-style-6:hover .iq-img-area, .iq-fancy-box-style-6.active .iq-img-area { color: var(--white-color); }

/*style 7*/
.iq-fancy-box-style-7 { top: 0; background: var(--white-color); -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); position: relative; z-index: 1; display: block; padding: 0 30px 30px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; 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-7 .iq-img-area i { font-size: 60px; color: var(--primary-color); }
.iq-fancy-box-style-7 .iq-img-area { display: inline-block; vertical-align: middle; }
.iq-fancy-box-style-7 .iq-fancy-box-content .iq-fancy-title { display: block; }
.iq-fancy-box-style-7 .iq-img-area { margin-bottom: 30px; }
.iq-fancy-box-style-7 .iq-fancy-box-content .fancy-box-content { margin-top: 15px; margin-bottom: 0; }
.iq-fancy-box-style-7 .iq-fancy-box-content  .iq-button { margin-top: 30px; }
.iq-fancy-box-style-7:hover, .iq-fancy-box-style-7.active { margin-top: -5px; }
.iq-fancy-box-style-7 .iq-img-area i, .iq-fancy-box-style-7 .iq-img-area img { margin-top: -30px; 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.text-center .iq-img-area { margin: 0 auto 30px; }
.iq-fancy-box-style-7:hover .iq-img-area i, .iq-fancy-box-style-7:hover .iq-img-area img, .iq-fancy-box-style-7.active .iq-img-area i, .iq-fancy-box-style-7.active .iq-img-area img { margin-top: -50px; }

/*styale 8*/
.iq-fancy-box-style-8 { position: relative; display: block; padding: 15px; }
.iq-fancy-box-style-8 .iq-img-area { border-radius: 100%; position: relative; border: 20px solid #f3f7fd; background: #e7effa; text-align: center; height: 200px; width: 200px; margin: 0 auto 30px; line-height: 160px; }
.iq-fancy-box-style-8 .iq-img-area .iq-icon { color: var(--white-color); position: absolute; height: 37px; width: 37px; border-radius: 90px; right: 0; top: -20px; font-size: 16px; line-height: 37px; background: var(--primary-color); }
.iq-fancy-box-style-8 .iq-img-area .iq-icon img { width: 15px; }
.iq-fancy-box-style-8 .iq-fancy-box-content  .fancy-box-content { margin-bottom: 0; }

/*style 9*/
.iq-fancy-box-style-9 { border-radius: 5px; border: 1px solid #f4f8ff; box-shadow: 4.871px 34.659px 30px 0px rgba(0, 0, 0, 0.06); margin-bottom: 60px; padding: 0; display: block; float: left; width: 100%; position: relative; z-index: 1; background: var(--white-color); }
.iq-fancy-box-style-9 .iq-fancy-box-content { float: left; width: 100%; position: relative; overflow: hidden; z-index: 1; background: #ffffff; }
.iq-fancy-box-style-9 .iq-fancy-info { float: left; width: 70%; padding: 30px; }
.iq-fancy-box-style-9 .iq-img-area { position: absolute; right: -70px; bottom: -50px; width: 50%; float: left; }
.iq-fancy-box-style-9  .iq-fancy-title { margin-bottom: 15px; }
.iq-fancy-box-style-9 .iq-special-img { z-index: -1; opacity: 0; position: absolute; right: -10px; top: -26px; -webkit-transition: all 0.5s ease-in-out; -webkit-animation: bounces 2s infinite alternate; 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-9:hover .iq-special-img { opacity: 1; }

/*style 10*/
.iq-fancy-box-style-10 { box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.2); padding: 30px; margin-bottom: 30px; border-radius: 8px; }
.iq-fancy-box-style-10 .fancy-box-content { color: var(--primary-color); margin-bottom: 15px; }
.iq-fancy-box-style-10 .iq-fancy-title { color: var(--secondary-color); }
.iq-fancy-box-style-10 .iq-img-area { position: relative; right: -30px; bottom: -40px; }
.iq-fancy-box-style-10 .iq-img-area i { font-size: 60px; color: var(--primary-color); }

/*style 11*/
.iq-fancy-box-style-11 { padding: 30px; 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; margin-bottom: 30px; border-radius: 4px; background: #f7fafd; }
.iq-fancy-box-style-11 .iq-img-area { margin-bottom: 15px; }
.iq-fancy-box-style-11 .iq-img-area i { font-size: 60px; color: var(--primary-color); }
.iq-fancy-box-style-11:hover { box-shadow: 0 44px 98px 0 rgba(0, 0, 0, .12); 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; }
.iq-fancy-box-style-11 .iq-btn-container { margin-top: 20px; }
.iq-fancy-box-style-11 .iq-fancy-title { margin-bottom: 10px; }
.iq-fancy-box.iq-fancy-box-style-11.text-center .iq-img-area { margin: 0 auto 15px; }

/*--------------------------------------------------------------
         Icon Box
--------------------------------------------------------------*/

/*style 1*/
.iq-icon-box-style-1 { position: relative; padding: 30px; 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: 0px; -moz-border-radius: 0px; border-radius: 5px; overflow: hidden; }
.iq-icon-box-style-1 .icon-box-img i { font-size: 45px; color: var(--primary-color); }
.iq-icon-box-style-1 .icon-box-img { line-height: normal; display: inline-block; }
.iq-icon-box-style-1 .icon-box-content .icon-box-title a { margin: 15px 0 0; display: inline-block; }
.iq-icon-box-style-1 .icon-box-content .icon-box-desc { margin: 0; }
.iq-icon-box-style-1::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; left: 0; right: 0; bottom: 0px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-icon-box-style-1:hover::before, .iq-icon-box-style-1.active::before { width: 100%; }
.iq-icon-box-style-1:hover, .iq-icon-box-style-1.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); }

/* .iq-icon-box-style-1:hover .iq-button ,.iq-icon-box-style-1:hover .iq-btn-link i {color: #fff !important;} */

/*style 2*/
.iq-icon-box-style-2 { 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: normal; font-size: 60px; color: var(--primary-color); }
.iq-icon-box-style-3 .icon-box-img .img-style-3 { margin-right: 15px; display: inline-block; vertical-align: middle; }
.iq-icon-box-style-3 .icon-box-img .icon-box-title a { display: inline-block; vertical-align: middle; }
.iq-icon-box-style-3 .icon-box-img { margin-bottom: 10px; }
.iq-icon-box-style-3 .icon-box-content .icon-box-desc { margin: 0; }
.iq-icon-box-style-3:hover, .iq-icon-box-style-3.active { margin-top: -10px; -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); border-bottom: 2px solid var(--primary-color); }

/*style 4*/
.iq-icon-box-style-4 { display: block; }
.iq-icon-box-style-4 img { width: 60px; }
.iq-icon-box-style-4 { padding: 30% 45px; overflow: hidden; position: relative; }
.iq-icon-box-style-4 .icon-box-img i:before { font-size: 60px; }
.iq-icon-box-style-4 .icon-box-img i, .iq-icon-box-style-4 .icon-box-title a, .iq-icon-box-style-4 h6, .iq-icon-box-style-4 .icon-box-content .icon-box-desc { color: var(--white-color); }
.iq-icon-box-style-4 .icon-box-title a { margin-bottom: 15px; }
.iq-icon-box-style-4 .icon-box-img i { line-height: 60px; display: inline-block; vertical-align: middle; margin-bottom: 10px; }
.iq-icon-box-style-4 .icon-box-subtitle { font-weight: normal; }
.iq-icon-box-style-4 .effect-box { width: 40px; height: 40px; bottom: 0; left: 0; position: absolute; z-index: 9; padding: 0; transition: all .7s; background: var(--secondary-color); text-align: left; }
.iq-icon-box-style-4 .effect-btn i { color: var(--white-color); }
.iq-icon-box-style-4 .effect-btn i { width: 40px; height: 40px; font-size: 24px; cursor: pointer; text-align: center; line-height: 40px; }
.iq-icon-box-style-4 .effect-btn .icon-box-desc { text-align: left; }
.iq-icon-box-style-4 { background: var(--primary-color); }
.iq-icon-box-style-4 .icon-box-content.main .effect-btn { right: 28px; }
.iq-icon-box-style-4 .icon-box-content.main { bottom: 0; left: 0; height: 100%; width: 100%; padding: 30% 45px; background: var(--secondary-color); }
.iq-icon-box-style-4 .icon-box-content.main .effect-btn { text-align: right; position: absolute; top: 15px; right: 15px; }
.iq-icon-box-style-4 img { width: 100%; }

/*styale 5*/
.iq-icon-box-style-5 { background: rgba(112, 147, 229, 0.25); position: relative; z-index: 9; border-radius: 8px; border-top-right-radius: 30px; border-bottom-left-radius: 30px; margin-bottom: 30px; padding: 45px; 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-5:hover, .iq-icon-box-style-5.active { margin-top: -15px; box-shadow: 0px 1px 30px 0px rgba(112, 147, 229, 0.25); background: var(--primary-color); color: var(--white-color); z-index: 9; }
.iq-icon-box-style-5 .icon-box-img i, .iq-icon-box-style-5 .icon-box-title a, .iq-icon-box-style-5 .icon-box-desc { 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; display: inline-block; }
.iq-icon-box-style-5 .icon-box-content { position: absolute; right: 0; bottom: 0; color: var(--white-color); z-index: 0; opacity: 0; font-size: 150px; line-height: 150px; 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-5:hover .icon-box-content, .iq-icon-box-style-5.active .icon-box-content { opacity: 0.2; }
.iq-icon-box-style-5 .icon-box-desc { margin-bottom: 0; }
.iq-icon-box-style-5 .icon-box-img i { color: var(--primary-color); }
.iq-icon-box-style-5 .popup-image { overflow: hidden; position: relative; z-index: -9; display: none; opacity: 0; 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; }
.iq-icon-box-style-5:hover .popup-image, .iq-icon-box-style-5.active .popup-image { position: absolute; bottom: -30px; display: inline-block; left: 0; right: 0; text-align: center; margin: auto; opacity: 1; z-index: -4; display: block; }
.iq-icon-box-style-5:hover .icon-box-img i, .iq-icon-box-style-5:hover .icon-box-title a, .iq-icon-box-style-5:hover .icon-box-desc, .iq-icon-box-style-5.active .icon-box-img i, .iq-icon-box-style-5.active .icon-box-title a, .iq-icon-box-style-5.active .icon-box-desc { color: var(--white-color); }
.iq-icon-box-style-5 .icon-box-img i { font-size: 60px; line-height: 60px; display: inline-block; }

/*style 6*/
.iq-icon-box-style-6 { display: block; position: relative; background: var(--white-color); border-radius: 4px; min-height: 160px; padding: 20px; z-index: 0; box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1); }
.iq-icon-box-style-6 { min-height: 160px; }
.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(--primary-color); }
.iq-icon-box-style-6 .icon-box-img i { color: var(--primary-color); font-size: 45px; }
.iq-icon-box-style-6:before { border-radius: 4px; 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); }

/*style 7*/
.iq-icon-box-style-7 { position: relative; }
.iq-icon-box-style-7 .img-bg { width: 80px; text-align: center; position: relative; height: 80px; border-radius: 900px; background: rgba(37, 177, 95, 0.2); }
.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: 50px; margin-top: 15px; }
.iq-icon-box-style-7 .main-img { position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); }
@-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 { width: 180px; height: 180px; border-radius: 900px; border: 1px solid var(--primary-color); position: absolute; -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; }
.iq-icon-box-style-7 .icon-box-img { position: relative; width: 180px; height: 180px; display: inline-block; margin-bottom: 30px; }
.iq-icon-box-style-7 .effect-circle:before { width: 10px; height: 10px; top: -5px; background: var(--white-color); border: 1px solid var(--primary-color); border-radius: 90px; display: inline-block; position: absolute; content: ""; opacity: 1; -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%;    /* left: 70%; */ 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: #e7eaf3; 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: #e7eaf3; 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: #e7eaf3; 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 { position: relative; padding: 45px 30px; border-radius: 5px; border: 1px solid #e6e7eb; 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: 45px; color: var(--primary-color); }
.iq-icon-box-style-8 .icon-box-content .icon-box-title a { margin: 30px 0 0; }
.iq-icon-box-style-8 .icon-box-content .icon-box-desc { margin: 15px 0 0; }
.iq-icon-box-style-8:hover, .iq-icon-box-style-8.active { border-color: var(--primary-color); }

/*style 9*/
.iq-icon-box-style-9 { z-index: 1; border-radius: 4px; min-height: 160px; margin: 0px 0 30px; padding: 20px 15px; text-align: center; box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1); position: relative; background: var(--white-color); }
.iq-icon-box-style-9 .icon-box-img i { font-size: 45px; 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-9:after { z-index: -1; content: ""; width: 70px; height: 70px; background-image: radial-gradient(var(--primary-color) 1px, transparent 1px); background-size: 10px 10px; 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-9:hover:after, .iq-icon-box-style-9.active:after { opacity: 1; }
.iq-icon-box-style-9 .icon-box-content { position: relative; z-index: 1; }
.iq-icon-box-style-9:hover, .iq-icon-box-style-9.active { background: var(--primary-color); }
.iq-icon-box-style-9:hover .icon-box-img i, .iq-icon-box-style-9.active .icon-box-img i { color: var(--white-color); }
.iq-icon-box-style-9:hover .icon-box-title a, .iq-icon-box-style-9.active .icon-box-title a { color: var(--white-color); }

/*style 10*/
.iq-icon-box-style-10 { display: flex; margin: 0px 0 45px; position: relative; }
.iq-icon-box-style-10 .icon-box-content { flex: 1; }
.iq-icon-box-style-10 .icon-box-img { margin-right: 30px; }
.iq-icon-box-style-10 .icon-box-img img { width: 100px; height: 100px; }
.iq-icon-box-style-10 .icon-box-img i { color: var(--primary-color); font-size: 45px; }
.iq-icon-box-style-10 .icon-box-content .icon-box-desc { margin-bottom: 0; }

/*style 11*/
.iq-icon-box-style-11 { border-radius: 4px; box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.1); position: relative; margin-bottom: 30px; background: var(--white-color); padding: 30px; }
.iq-icon-box-style-11 .icon-box-img { text-align: center; height: 120px; width: 120px; line-height: 120px; position: absolute; left: 0; top: 0; background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); border-radius: 90px; border-top-left-radius: 6px; }
.iq-icon-box-style-11 .icon-box-img i { color: var(--primary-color); font-size: 40px; }
.iq-icon-box-style-11 .icon-box-content { margin-top: 120px; }
.iq-icon-box-style-11 .icon-box-content .icon-box-desc { margin-bottom: 0; }
.iq-icon-box-style-11 .hover-img { display: inline-block; position: absolute; right: 10px; width: 95px; height: 95px; bottom: 10px; }
.iq-icon-box-style-11:hover, .iq-icon-box-style-11.active { background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4); }
.iq-icon-box-style-11:hover .icon-box-img i, .iq-icon-box-style-11.active .icon-box-img i { color: var(--white-color); }
.iq-icon-box-style-11:hover .icon-box-content .icon-box-title a, .iq-icon-box-style-11.active .icon-box-content .icon-box-title a { color: var(--white-color); }
.iq-icon-box-style-11:hover .icon-box-content .icon-box-desc, .iq-icon-box-style-11.active .icon-box-content .icon-box-desc { color: var(--white-color); }

/*style 12*/
.iq-icon-box-style-12 { display: flex; border-radius: 4px; box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.1); position: relative; margin-bottom: 30px; background: var(--white-color); padding: 30px; }
.iq-icon-box-style-12 .icon-box-img { text-align: center; height: 80px; width: 80px; line-height: 80px; position: relative; background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); border-radius: 90px; margin-right: 30px; }
.iq-icon-box-style-12 .icon-box-img i { color: var(--primary-color); font-size: 40px; }
.iq-icon-box-style-12 .icon-box-content { padding: 0px; flex: 1; }
.iq-icon-box-style-12 .icon-box-content .icon-box-desc { margin-bottom: 0; }
.iq-icon-box-style-12 .hover-img { display: inline-block; position: absolute; right: 10px; width: 95px; height: 95px; bottom: 10px; }
.iq-icon-box-style-12:hover, .iq-icon-box-style-12.active { background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(23, 51, 195) 100%); box-shadow: 0px 10px 20px 0px rgba(139, 118, 246, 0.4); }
.iq-icon-box-style-12:hover .icon-box-img i, .iq-icon-box-style-12.active .icon-box-img i { color: var(--white-color); }
.iq-icon-box-style-12:hover .icon-box-content .icon-box-title a, .iq-icon-box-style-12.active .icon-box-content .icon-box-title a { color: var(--white-color); }
.iq-icon-box-style-12:hover .icon-box-content .icon-box-desc, .iq-icon-box-style-12.active .icon-box-content .icon-box-desc { color: var(--white-color); }

/*style 13*/
.iq-icon-box-style-13 { position: relative; right: 0; background: var(--white-color); box-shadow: 0px 15px 38px 0px rgba(0, 0, 0, 0.1); display: flex; padding: 30px; border: 1px solid transparent; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; 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-13 .icon-box-img { margin-right: 30px; }
.iq-icon-box-style-13 .icon-box-img i { font-size: 45px; color: var(--primary-color); }
.iq-icon-box-style-13 .icon-box-content { flex: 1; }
.iq-icon-box-style-13 .icon-box-content .icon-box-title a { margin: 0 0 0px; display: inline-block; }
.iq-icon-box-style-13 .icon-box-content .icon-box-desc { margin: 0; }
.iq-icon-box-style-13:hover, .iq-icon-box-style-13.active { right: 20px; }

/*style 2*/
.iq-icon-box-style-14 { position: relative; padding: 55px 15px 55px 65px; box-shadow: 5px 9px 60px 0px rgba(82, 119, 229, 0.05); margin: 0px 15px 50px; border: 1px solid transparent; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; 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-14 .icon-box-img { text-align: center; background: var(--primary-color); margin-right: 30px; height: 70px; width: 70px; line-height: 70px; border-radius: 100px; position: absolute; left: -30px; }
.iq-icon-box-style-14 .icon-box-img i { font-size: 36px; color: var(--white-color); }
.iq-icon-box-style-14 .icon-box-content .icon-box-title a { margin: 0 0 10px; display: inline-block; }
.iq-icon-box-style-14 .icon-box-content .icon-box-desc { margin: 0; }
.iq-icon-box-style-14:hover, .iq-icon-box-style-14.active { background: var(--white-color); -webkit-box-shadow: 5px 9px 60px 0px rgba(82, 119, 229, 0.22); -moz-box-shadow: 5px 9px 60px 0px rgba(82, 119, 229, 0.22); box-shadow: 5px 9px 60px 0px rgba(82, 119, 229, 0.22); }

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

/*Horizontal style 1*/
.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: block; width: 100%; margin-bottom: 30px; -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); overflow: hidden; border-radius: 10px; }
.iq-tabs .nav.nav-pills li { display: inline-block; width: 25%; vertical-align: middle; }
.iq-tabs .nav-pills .nav-link .tab-title { display: inline-block; vertical-align: middle; }
.iq-tabs .nav-pills .nav-link i { height: 80px; width: 80px; text-align: center; font-size: 45px; }
.iq-tabs .nav-pills .nav-link i::before { vertical-align: middle; line-height: 80px; }
.iq-tabs .nav-pills .nav-link { padding: 0px 15px; 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.active .tab-title, .iq-tabs .nav-pills .nav-link:hover .tab-title, .iq-tabs .nav-pills .nav-link.active i, .iq-tabs .nav-pills .nav-link:hover i { color: var(--primary-color); }
.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; padding: 30px 15px; }
.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 .media-body .tab-title-desc { display: none; color: #838383; 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; opacity: 0; transform: translateY(35px); color: #838383; 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.active .tab-title-desc { display: none; 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; }

/*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: 25px; 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: 4px; }
.iq-tabs.iq-tab-horizontal-1 .nav.nav-pills li { width: auto; margin-right: 5px; }
.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link { padding: 10px 15px; border-radius: 4px; }
.iq-tabs.iq-tab-horizontal-1 .nav-pills .nav-link.active: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(--primary-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); }

/*--------------------------------------------------------------
      Image Gallery
--------------------------------------------------------------*/
.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: #313e5b; 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%; }
.iq-masonry.iq-columns-3 .iq-masonry-item { width: 33.333333%; }
.iq-masonry.iq-columns-4 .iq-masonry-item { width: 25%; }
.iq-masonry.iq-columns-5 .iq-masonry-item { width: 20%; }
.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%; }
}
@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% }
}
.iq-masonry-item .iq-gallery { position: relative; overflow: hidden; }
.iq-masonry-item .iq-gallery .iq-gallery-img img { -o-transform: scale(1.0); -ms-transform: scale(1.0); -moz-transform: scale(1.0); -webkit-transform: scale(1.0); transform: scale(1.0); -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; }
.iq-masonry-item .iq-gallery:hover .iq-gallery-img img { -o-transform: scale(1.09); -ms-transform: scale(1.09); -moz-transform: scale(1.09); -webkit-transform: scale(1.09); transform: scale(1.09); }
.iq-masonry-item .iq-gallery .iq-overbg { font-size: 32px; line-height: 32px; position: absolute; width: 100%; height: 100%; left: 0; top: 0; }
.iq-masonry-item .iq-gallery .iq-overbg { background: none; width: 100%; height: 100%; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
.iq-masonry-item .iq-gallery .iq-overbg .iq-gallery-content { position: absolute; opacity: 0; display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; z-index: 9; }
.iq-masonry-item .iq-gallery .iq-overbg::before { border-bottom: 1px solid var(--white-color); border-top: 1px solid var(--white-color); -o-transform: scale(0, 1); -webkit-transform: scale(0, 1); -moz-transform: scale(0, 1); transform: scale(0, 1); }
.iq-masonry-item .iq-gallery .iq-overbg::after { border-left: 1px solid var(--white-color); border-right: 1px solid var(--white-color); -o-transform: scale(1, 0); -webkit-transform: scale(1, 0); -moz-transform: scale(1, 0); transform: scale(1, 0); }
.iq-masonry-item .iq-gallery .iq-overbg::before, .iq-masonry-item .iq-gallery .iq-overbg::after { bottom: 15px; content: ""; left: 15px; opacity: 0; position: absolute; right: 15px; top: 15px; -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s; -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s; -moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s; transition: opacity 0.35s ease 0s, transform 0.35s ease 0s; z-index: 1; }
.iq-masonry-item .iq-gallery:hover .iq-overbg { background: rgba(2, 216, 113, 0.80); }
.iq-masonry-item .iq-gallery:hover .iq-overbg::before, .iq-masonry-item .iq-gallery:hover .iq-overbg::after { opacity: 1; -o-transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1); transform: scale(1); }
.iq-masonry-item .iq-gallery:hover .iq-overbg .iq-gallery-content { left: 0; opacity: 1; }
.iq-masonry-item .iq-gallery  a { color: var(--white-color); position: relative; overflow: hidden; display: block; }
.iq-masonry-item .iq-gallery  a .iq-overbg i::before { display: inline-block; vertical-align: middle; }
.iq-masonry-item .iq-gallery  a .iq-overbg img { width: auto; }
.iq-masonry-item .iq-gallery a:hover { color: var(--secondary-color); }

/*---------------------------------------------------------------------
     Image  Background Effext
-----------------------------------------------------------------------*/
.iq_background_list_wrapper { position: relative; width: 100%; overflow: hidden; display: flex; background: #000 }
.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; }

/*---------------------------------------------------------------------
Feature Circle
-----------------------------------------------------------------------*/
.iq-feature-circle { margin: 0 auto; position: relative; display: inline-block; width: 550px; height: 550px; }
.iq-feature-circle .iq-img::before { content: ""; border: 2px dotted  var(--white-light-color); -webkit-animation: anti-clockwise 25s linear 100000; animation: anti-clockwise 25s linear 100000; width: 500px; height: 500px; border-radius: 900px; display: inline-block; }
.iq-feature-circle .iq-img { margin: 0 auto; width: 500px; height: 500px; position: relative; transition: all .4s ease; transform-origin: center center }
.iq-feature-circle .circle-bg { background: -moz-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%); background: -webkit-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%); background: -ms-linear-gradient(0deg, var(--linear-color-1) 0%, var(--linear-color-2) 100%); background: 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); width: 140px; text-align: center; position: relative; height: 140px; line-height: 140px; border-radius: 900px; }
.iq-feature-circle .dot-circle { position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); }
.iq-feature-circle .effect-circle:before { background: url('../img/circle.png'); width: 210px; height: 210px; display: inline-block; content: ""; }
.iq-feature-circle .effect-circle { width: 210px; height: 210px; border-radius: 900px; border: 1px solid rgba(255, 106, 92, 1); -webkit-animation: rotate-center 25s linear 100000; animation: rotate-center 25s linear 100000; }
.iq-feature-circle .main-circle { position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; margin-right: -50%; }
.iq-feature-circle .iq-img ul li .feature-info { position: absolute; margin: 0 auto; text-align: center; }
.iq-feature-circle .iq-img ul li .feature-info .feature-img { font-size: 30px; color: var(--white-color); height: 75px; width: 75px; line-height: 75px; border-radius: 90px; background: var(--white-color); text-align: center; margin: 0 auto 5px; }
.iq-feature-circle .iq-img ul li .feature-info .feature-img img { width: 100%; border-radius: 90px; border: 2px solid var(--white-color); }
.iq-feature-circle .iq-img ul li:nth-child(1) .feature-info { top: -38px; left: -16px; right: 0; }
.iq-feature-circle .iq-img ul li:nth-child(2) .feature-info { top: 10%; left: 4%; }
.iq-feature-circle .iq-img ul li:nth-child(3) .feature-info { top: 10%; right: 4%; }
.iq-feature-circle .iq-img ul li:nth-child(4) .feature-info { top: 44%; right: -6%; }
.iq-feature-circle .iq-img ul li:nth-child(5) .feature-info { top: 44%; left: -6%; }
.iq-feature-circle .iq-img ul li:nth-child(6) .feature-info { top: 78%; left: 8%; }
.iq-feature-circle .iq-img ul li:nth-child(7) .feature-info { top: 78%; right: 8%; }
.iq-feature-circle .iq-img ul li:nth-child(8) .feature-info { bottom: -6%; left: 43%; }

/*style 2*/

/*feature circle*/
.iq-feature-circle-2 { position: relative; overflow: hidden; }
.iq-feature-circle-2 .main-circle { margin: 0 auto; text-align: center; }
.iq-feature-circle-2 .main-circle .circle-bg { margin-top: 25%; text-align: center; border-radius: 90px; }
.iq-feature-circle-2 .main-circle .circle-bg .fancy-list-img { border-radius: 90px; }
.iq-feature-circle-2 .dot-circle { border-radius: 100%; height: 950px; width: 950px; margin: 0 auto; text-align: center; position: absolute; top: 10%; left: 0; right: 0; border: 1px solidvar(--white-color); opacity: 0.3; }
.iq-feature-circle-2  .effect-circle { border-radius: 100%; height: 600px; width: 600px; margin: 0 auto; text-align: center; position: absolute; top: 20%; left: 0; right: 0; border: 1px solidvar(--white-color); opacity: 0.3; }
.iq-feature-circle-2  .iq-img ul li .feature-info { text-align: center; height: 136px; border-radius: 100%; background: var(--white-color); width: 136px; padding: 20px; }
.iq-feature-circle-2  .iq-img ul li { position: absolute; }
.iq-feature-circle-2  .iq-img ul li:nth-child(1) { left: 3%; top: 50%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(2) { left: 20%; top: 15%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(3) { right: 20%; top: 15%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(4) { right: 3%; top: 58%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(5) { left: 20%; bottom: 15%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(6) { left: 24%; top: 40%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(7) { right: 40%; top: 25%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(8) { right: 20%; top: 45%; }
.iq-feature-circle-2  .iq-img ul li:nth-child(9) { right: 20%; bottom: 10%; }
.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: 120px; width: 120px; }
.iq-feature-circle-2  .iq-img ul li .feature-info .feature-img { margin-bottom: 10px; display: inline-block; vertical-align: middle; line-height: initial; }
@keyframes circle {
  0% { transform: rotate(0deg) }
  15% { transform: rotate(2deg) }
  33% { transform: rotate(4deg) }
  66% { transform: rotate(2deg) }
  100% { transform: rotate(0deg) }
}

/*----------------------------------------
    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); }
}

/*----------------------------------------
   Fancy Box with List
----------------------------------------*/

/*style 1*/
.iq-fancy-box-list-1 { position: relative; padding: 30px; 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-fancy-box-list-1 .iq-img-area i { font-size: 45px; color: var(--primary-color); }
.iq-fancy-box-list-1 .iq-img-area { margin-bottom: 30px }
.iq-fancy-box-list-1 .iq-fancy-details .iq-fancy-title { margin: 0 0 .5rem; }
.iq-fancy-box-list-1 .iq-fancy-details .fancy-box-content { margin: 0; }
.iq-fancy-box-list-1  .iq-fancy-details .iq-list { margin-top: 15px; }
.iq-fancy-box-list-1::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; left: 0; right: 0; bottom: 0px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
.iq-fancy-box-list-1:hover::before, .iq-fancy-box-list-1.active::before { width: 100%; }
.iq-fancy-box-list-1.iq-shadow:hover, .iq-fancy-box-list-1.iq-shadow.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); border: 1px solid  var(--white-light-color); }
.iq-fancy-box-list-1:hover .iq-img-area i, .iq-fancy-box-list-1.active .iq-img-area i { color: var(--secondary-color); }
.iq-fancy-box-list-1 .iq-list .iq-list-with-icon li, .iq-fancy-box-list-1 .iq-list  li { color: var(--secondary-color); font-weight: 500; }

/*style 2*/
.iq-fancy-box-list-2 { position: relative; padding: 30px 15px; border: 1px solid var(--white-light-color); 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; background: var(--white-color); -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; overflow: hidden; }
.iq-fancy-box-list-2  .iq-fancy-box-content { display: flex; }
.iq-fancy-box-list-2 .iq-img-area i { font-size: 45px; color: var(--primary-color); line-height: 70px; }
.iq-fancy-box-list-2 .iq-img-area { width: 70px; height: 70px; margin-right: 15px; }
.iq-fancy-box-list-2 .iq-fancy-details { flex: 1; }
.iq-fancy-box-list-2 .iq-fancy-details .iq-fancy-title { margin: 0 0 .5rem; }
.iq-fancy-box-list-2 .iq-fancy-details .fancy-box-content { margin: 0; }
.iq-fancy-box-list-2  .iq-fancy-details .iq-list { margin-top: 15px; }
.iq-fancy-box-list-2.iq-shadow:hover, .iq-fancy-box-list-2.iq-shadow.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); }
.iq-fancy-box-list-2:hover .iq-img-area i, .iq-fancy-box-list-2.active .iq-img-area i { color: var(--secondary-color); }
.iq-fancy-box-list-2 .iq-list .iq-list-with-icon li, .iq-fancy-box-list-2 .iq-list  li { color: var(--secondary-color); font-weight: 500; }
.iq-fancy-box-list-2 .iq-list .iq-list-with-icon li i, .iq-fancy-box-list-2 .iq-list  li i { color: var(--primary-color); }

/*style 3*/
.iq-fancy-box-list-3 { margin-bottom: 45px; position: relative; 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; }
.iq-fancy-box-list-3  .iq-fancy-box-content { display: flex; }
.iq-fancy-box-list-3 .iq-img-area i { font-size: 30px; color: var(--white-color); line-height: 80px; }
.iq-fancy-box-list-3 .iq-img-area { background-image: -moz-linear-gradient(90deg, rgb(135, 154, 251) 0%, rgb(23, 51, 195) 100%); background-image: -webkit-linear-gradient(90deg, rgb(135, 154, 251) 0%, rgb(23, 51, 195) 100%); background-image: -ms-linear-gradient(90deg, rgb(135, 154, 251) 0%, rgb(23, 51, 195) 100%); border-radius: 90px; border-top-left-radius: 0px; margin-right: 30px; width: 80px; height: 80px; line-height: 80px; color: var(--white-color); position: relative; display: inline-block; vertical-align: middle; text-align: center; font-size: 30px; }
.iq-fancy-box-list-3 .iq-fancy-details { flex: 1; }
.iq-fancy-box-list-3 .iq-fancy-details .iq-fancy-title { margin: 0 0 .5rem; }
.iq-fancy-box-list-3 .iq-fancy-details .fancy-box-content { margin: 0; }
.iq-fancy-box-list-3  .iq-fancy-details .iq-list { margin-top: 15px; }
.iq-fancy-box-list-3.iq-shadow:hover, .iq-fancy-box-list-3.iq-shadow.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); }
.iq-fancy-box-list-3:hover .iq-img-area i, .iq-fancy-box-list-3.active .iq-img-area i { color: var(--secondary-color); }
.iq-fancy-box-list-3 .iq-list .iq-list-with-icon li, .iq-fancy-box-list-3 .iq-list  li { color: var(--secondary-color); font-weight: 500; }
.iq-fancy-box-list-3 .iq-list .iq-list-with-icon li i, .iq-fancy-box-list-3 .iq-list  li i { color: var(--primary-color); }
.iq-fancy-box-list-3  .iq-fancy-details .iq-btn-container .iq-button { margin-top: 30px; padding: 10px 30px; }

/*----------------------------------------
  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: #6f73f0; 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 #fff601; 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-icon { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
.iq-popup-video .iq-video { position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); background: var(--white-color); width: 100px; height: 100px; text-align: center; border-radius: 90px; }
.iq-popup-video .iq-video { display: inline-block; width: 80px; height: 80px; line-height: 80px; border-radius: 0px; background: var(--white-color); text-align: center; position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); z-index: 9; }
.iq-popup-video .iq-video i { line-height: 80px; font-size: 20px; color: var(--primary-color); }
.iq-popup-video i { margin-left: 5px; font-family: FontAwesome; }
.iq-popup-video:hover i { color: var(--secondary-color); }
.iq-popup-video .iq-waves { width: 250px; height: 250px; z-index: 2; }
.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: 0px; 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; }
.iq-popup-video .iq-video-img{height: 300px;}
@-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)"; }
}

@media(max-width: 1024px){
  .iq-popup-video .iq-video-img {height: 40px;}
}

@media(max-width: 767px){
  .iq-popup-video .iq-video-img {height: auto;}
}


/*Contact Us*/
.contact-box  ul li:hover { background: var(--white-color); }
.contact-box  ul li:hover a { color: #6f73f0; }
.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: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 { margin-bottom: 30px; }

  /*faq*/
  .iq-accordion-round .iq-accordion-block { -webkit-border-radius: 25px; -moz-border-radius: 25px; border-radius: 25px; }
  .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; }
}
@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; }

  /*process Step*/
  .iq-process-step .iq-before-img { display: none; }
  .iq-process-step-style-1 .iq-process-step li { width: 50%; margin-bottom: 45px; }
  .iq-process-step-style-1 .iq-process-step li:last-child { margin-bottom: 0; }
  .iq-process-step-style-2 .iq-process-step li { width: 50%; margin-bottom: 30px; }
  .iq-process-step-style-2 .iq-process-step li:last-child { margin-bottom: 0; }
  .iq-process-step-style-3 .iq-process-step li { width: 50%; margin-bottom: 30px; }
  .iq-process-step-style-3 .iq-process-step li:last-child { margin-bottom: 0; }
  .iq-process-step-style-4 .iq-process-step li { width: 50%; margin-bottom: 75px; }
  .iq-process-step-style-4 .iq-process-step li:last-child { margin-bottom: 0; }
  .iq-process-step-style-5 .iq-process-step li { width: 50%; margin-bottom: 30px; }
  .iq-process-step-style-5 .iq-process-step li:last-child { margin-bottom: 0; }
  .iq-process-step-style-6 .iq-process-step li { width: 50%; margin-bottom: 30px; }
  .iq-process-step-style-6 .iq-process-step li:last-child { margin-bottom: 0; }

  /*tab*/
  .iq-tabs .nav-pills .nav-link { padding-left: 15px; padding-right: 15px; }
  .iq-tabs .nav.nav-pills li { width: auto; }
  .advance-feature .pricing-table { left: 60px; }
}
@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; }

  /*process step*/
  .iq-process-step-style-1 .iq-process-step li { width: 100%; }
  .iq-process-step-style-2 .iq-process-step li { width: 100%; }
  .iq-process-step-style-3 .iq-process-step li { width: 100%; }
  .iq-process-step-style-4 .iq-process-step li { width: 100%; }
  .iq-process-step-style-5 .iq-process-step li { width: 100%; }
  .iq-process-step-style-6 .iq-process-step li { width: 100%; }

  /*tabs*/
  .iq-tabs .nav.nav-pills li { width: 100%; }

  /*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:479px) {
  .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; }

  /*Feature Circle*/
  .iq-feature-circle { height: 300px; width: 300px; }
  .iq-feature-circle .iq-img::before, .iq-feature-circle .iq-img { height: 250px; width: 250px; }
  .iq-feature-circle .dot-circle { display: none; }
  .iq-feature-circle .iq-img ul li .feature-info .feature-img { height: 45px; width: 45px; line-height: 45px; font-size: 24px; }
  .iq-feature-circle .circle-bg { height: 100px; line-height: 100px; width: 100px; }
  .iq-feature-circle .circle-bg img { width: 60px; }
  .iq-feature-circle .iq-img ul li:nth-child(1) .feature-info { top: -24px; }
  .iq-feature-circle .iq-img ul li:nth-child(2) .feature-info { left: -15px; }
  .iq-feature-circle .iq-img ul li:nth-child(3) .feature-info { right: -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; }

  /*price list*/
  .iq-price-list { display: block; }
  .iq-price-list .iq-price-list-tag { position: relative; top: 0; margin-top: 15px; display: inline-block; vertical-align: middle; }

  /*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%; }
}

/*---------------------------------------------------------------------
sidebar button
-----------------------------------------------------------------------*/
.menu-btn .line { width: 25px; height: 2px; background-color: var(--white-color); display: block; margin: 7px 0; }
.iq-sidearea-btn-container .menu-btn { vertical-align: middle; }
.iq-sidearea-btn-container { display: inline-block; background: var(--primary-color); margin-left: 15px; padding: 6px; border-radius: 0px; width: 46px; text-align: center; cursor: pointer; }
body.side-bar-open .iq-sidearea-btn-container.btn-container-close { background: var(--primary-color); }
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:hover { background: var(--secondary-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(9px); -ms-transform: translateY(9px); -o-transform: translateY(9px); transform: translateY(9px); }
#menu-btn-side-close .is-active .line:nth-child(3) { -webkit-transform: translateY(-9px) rotate(90deg); -ms-transform: translateY(-9px) rotate(90deg); -o-transform: translateY(-9px) rotate(90deg); transform: translateY(-9px) rotate(90deg); }
.iq-sidearea-btn-container.btn-container-close { position: absolute; top: 26px; right: 50px; }
.side-bar-close .iq-menu-side-bar { right: -475px; }
.side-bar-open .iq-menu-side-bar { right: 0; }
.iq-menu-side-bar { background: var(--white-color); width: 475px; top: 0; right: -475px; position: fixed; height: 100%; z-index: 9999; overflow: hidden; 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; 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
-----------------------------------------------------------------------*/
::-webkit-scrollbar-thumb { background: var(--primary-color); }
._horizontal-scroll { scrollbar-color: var(--primary-color)  white; scrollbar-width: thin; }
._horizontal-scroll::-webkit-scrollbar { width: 5px !important; }
._horizontal-scroll::-webkit-scrollbar-track { background: white !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: #f0f2f3; 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: #f0f2f3; 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 ul.info-share li a { width: 45px; height: 45px; line-height: 45px; display: inline-block; color: var(--white-color); border-radius: 0px; 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(--secondary-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: 3px; font-family: FontAwesome; }
.owl-carousel .owl-nav i:hover {  color: var(--white-color);background: var(--primary-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; }

/*---------------------------------------------------------------------
          Swiper Slider
-----------------------------------------------------------------------*/

/*style 1*/

.iq-testimonial .iq-testimonial-info .iq-testimonial-avtar { margin-right: 15px; width: 60px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
.iq-testimonial .iq-testimonial-info .iq-testimonial-avtar img { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
.iq-testimonial .iq-testimonial-info .title { font-size: 18px; }
.iq-testimonial .iq-testimonial-info  .iq-testimonial-quote{    font-size: 70px; color: var(--primary-color); opacity: 0.4;}
.iq-testimonial .iq-testimonial-info .avtar-name  span { font-size: 14px; text-transform: uppercase; }
.iq-testimonial .iq-testimonial-info p { margin-bottom: 0px; margin-top: 0; font-size: 21px; font-style: italic; }
.iq-testimonial .iq-testimonial-info .iq-lead { font-size: 18px; line-height: 20px; font-family: 'Heebo', sans-serif; font-weight: 600; color: var(--title-color); }
.iq-testimonial .iq-testimonial-info .iq-testimonial-content { margin-bottom: 30px; }
.iq-testimonial.text-right .iq-testimonial-info .iq-testimonial-content:before { right: 5%; left: auto; }
.iq-testimonial.text-right .iq-testimonial-info .iq-testimonial-member { float: right; display: block }
.iq-testimonial.text-right .iq-testimonial-info .iq-testimonial-avtar { margin-right: 0; margin-left: 15px; float: right; }
.iq-testimonial.text-center .iq-testimonial-info .iq-testimonial-content:before { right: 0; left: 0; margin: 0 auto; }
.iq-testimonial.text-center .iq-testimonial-info .iq-testimonial-member { display: block; text-align: center; }
.iq-testimonial.text-center .iq-testimonial-info .iq-testimonial-avtar { display: inline-block; vertical-align: middle; }
.iq-testimonial.text-center .iq-testimonial-info .avtar-name { display: inline-block; text-align: left; vertical-align: middle; }
.iq-swiper-line { position: relative; }
.iq-swiper-line:before { content: '/'; width: 50px; height: 2px; opacity: .6; margin: 0 5px 0 5px; display: inherit; color: var(--primary-color); }
.iq-testimonial .swiper-pagination { position: relative; margin-top: 15px; padding: 0 20px; display: inline-block; top: -3px; color: var(--primary-color); margin: 0 auto; }
.iq-testimonial  .iq-swiper-arrow { width: 105px; position: relative; display: inline-block; margin-top: 20px; margin-left: 15px; }
.iq-testimonial .swiper-button-prev:after, .iq-testimonial .swiper-container-rtl .swiper-button-next:after { content: "\f0d9"; font-family: "FontAwesome"; font-size: 24px; color: var(--body-text); }
.iq-testimonial .swiper-button-prev, .iq-testimonial .swiper-container-rtl .swiper-button-next, .iq-testimonial .swiper-button-next, .iq-testimonial .swiper-container-rtl .swiper-button-prev { height: auto; text-align: center; }
.iq-testimonial .swiper-button-next, .iq-testimonial .swiper-button-prev { top: inherit; bottom: 0; }
.iq-testimonial .swiper-button-next:after, .iq-testimonial .swiper-container-rtl .swiper-button-prev:after { content: "\f0da"; font-family: "FontAwesome"; font-size: 24px; color: var(--body-text); }
.iq-testimonial .swiper-button-next { right: 0; width: auto; }
.iq-testimonial .swiper-button-prev, .iq-testimonial .swiper-container-rtl .swiper-button-next { left: 0px; width: auto; }
.iq-testimonial .swiper-button-next, .iq-testimonial .swiper-button-prev, .iq-testimonial .swiper-container-rtl .swiper-button-next { background-image: none; outline: none; background: transparent; }
.iq-testimonial .iq-post-ratings { position: absolute; bottom: -45px; 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-testimonial .iq-post-ratings i { color: var(--title-color); }
.iq-testimonial .swiper-slide.swiper-slide-active .iq-post-ratings { opacity: 1; }
.iq-testimonial-info { padding: 0 15px;}
.iq-testimonial-info-inner {background: var(--white-color); padding: 30px; border-radius: 5px; }
.iq-testimonial-bg-hidden .iq-testimonial-info-inner { background: transparent; box-shadow: none; padding: 0;}

/*style 2*/
.iq-testimonial-slick.iq-testimonial-slick-2 .iq-testimonial-info .iq-testimonial-member { margin: 0; display: block; }
.iq-testimonial-slick.iq-testimonial-slick-2 .iq-testimonial-info .iq-testimonial-avtar { margin-bottom: 15px; }
.iq-testimonial-slick-2 .iq-testimonial-info { display: flex; }
.iq-testimonial-slick-2 .iq-testimonial-content { margin-left: 15px; }
.iq-testimonial-slick.iq-testimonial-slick-2 .iq-testimonial-info .iq-testimonial-avtar { width: 118px; }
@media(max-width:767px) {
  .iq-testimonial-1 .iq-swiper-arrow .swiper-button-prev{left: 0; right: inherit;}
  .iq-testimonial-slick-2 .iq-testimonial-info { display: block; }
  .iq-testimonial-slick.iq-testimonial-slick-2 .iq-testimonial-info .iq-testimonial-avtar { display: block; width: 100%; }
  .iq-testimonial-slick-2 .iq-testimonial-content { margin: 0; }
  .iq-testimonial-slick .swiper-button-next, .iq-testimonial-slick  .swiper-button-prev { display: inline-block; }
  .iq-testimonial-slick .iq-swiper-arrow { position: relative; right: inherit; bottom: inherit; margin: 0 auto; text-align: center; }
  .iq-swiper-arrow .swiper-button-next, .iq-swiper-arrow .swiper-button-prev { right: 0; margin-top: 15px; }
  .iq-testimonial-slick .iq-swiper-arrow .swiper-button-next:after, .iq-testimonial-slick .iq-swiper-arrow  .swiper-button-prev:after { left: 0; right: 0; margin: 0 auto; line-height: 45px; text-align: center; display: list-item; }
}
@media(max-width: 479px){
  .iq-testimonial .iq-testimonial-info .iq-testimonial-quote{display: none;}
}
/*---------------------------------------------------------------------
               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; }
.iq-masonry.iq-columns-3 .iq-masonry-item { width: 33.333333%; padding: 15px; }
.iq-masonry.iq-columns-4 .iq-masonry-item { width: 25%; padding: 15px; }
.iq-masonry.iq-columns-5 .iq-masonry-item { width: 20%; padding: 15px; }
.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%; }
}
@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% }
}

/*---------------------------------------------------------------------
Portfolio style-one
-----------------------------------------------------------------------*/
.single-portfolio .site-content-contain .content-area .site-main { padding-bottom: 0px; }
.single-portfolio-border .iq-portfolio { border: 2px solid var(--white-color); }
.iq-portfolio img { background: var(--white-light-color); }
.iq-portfolio a.iq-portfolio-img { display: inherit; overflow: hidden; }
.iq-portfolio { border: 1px solid var(--white-light-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-portfolio:hover { box-shadow: 0.557px 3.961px 40px 0px rgba(0, 0, 0, 0.08); }
.iq-portfolio:hover:before { opacity: 1; }
.iq-portfolio:hover .iq-portfolio-content { z-index: 9; }
.iq-portfolio { position: relative; overflow: hidden; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; }
.iq-portfolio:hover .iq-portfolio-content .consult-details .consult-effect:before { bottom: 80px; }
.iq-portfolio img { -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out; }
.iq-portfolio:hover img { -webkit-transform: scale(1.1); transform: scale(1.1); -ms-transform: scale(1.1); }
.iq-portfolio-content .details-box { overflow: hidden; padding: 15px; }
.iq-portfolio:hover .iq-portfolio-content { opacity: 1; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); }
.iq-portfolio-content  .consult-details .consult-effect:before { content: ""; transition: all 5s ease-in-out; transition: all 5s ease-in-out; -moz-transition: all 5s ease-in-out; -ms-transition: all 5s ease-in-out; -o-transition: all 5s ease-in-out; -webkit-transition: all 5s ease-in-out; opacity: 1; opacity: 1; z-index: 1; height: 100px; width: 100%; position: absolute; bottom: 110px; left: 0; -ms-transform: skewY(-2deg); -webkit-transform: skewY(-2deg); transform: skewY(-2deg); background: var(--primary-color); content: ""; z-index: 1; 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 .iq-portfolio-content  .consult-details p { color: var(--body-text); }
.isotope-filters button .post_no { display: none; opacity: 0; 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; }
.iq-columns-4 .iq-portfolio .iq-portfolio-content .details-box, .iq-columns-5 .iq-portfolio .iq-portfolio-content .details-box, .iq-columns-3 .iq-portfolio .iq-portfolio-content .details-box { padding: 15px; z-index: 2; }
.iq-columns-4 .iq-portfolio-content .consult-details .consult-effect:before, .iq-columns-5 .iq-portfolio-content .consult-details .consult-effect:before, .iq-columns-3 .iq-portfolio-content .consult-details .consult-effect:before { bottom: 90px; }
.iq-columns-4 .iq-portfolio:hover .iq-portfolio-content .consult-details .consult-effect:before, .iq-columns-3 .iq-portfolio:hover .iq-portfolio-content .consult-details .consult-effect:before, .iq-columns-5 .iq-portfolio:hover .iq-portfolio-content .consult-details .consult-effect:before { bottom: 81px; }
.iq-portfolio-content .details-box a { text-decoration: none; }
.iq-portfolio-content .details-box a:hover .text-hover { color: var(--primary-color); }
.iq-columns-2 .iq-portfolio .iq-portfolio-content .consult-details .consult-effect:before { top: -86px }
.iq-columns-4 .iq-portfolio-content .details-box a, .iq-columns-5 .iq-portfolio-content .details-box a { line-height: 60px; z-index: 3; position: relative; }
.iq-columns-4 .iq-portfolio-content .details-box a i, .iq-columns-5 .iq-portfolio-content .details-box a i { width: 30px; height: 30px; line-height: 30px; }

.iq-amazing-tab .iq-portfolio-2 .iq-portfolio .iq-portfolio-content .details-box { padding: 0; }
.iq-portfolio-2  .iq-portfolio .details-box .consult-details { padding: 30px; border-bottom: 2px solid var(--white-light-color); }
.iq-portfolio-2  .iq-portfolio .details-box .portfolio-tag { padding: 15px 30px; color: var(--secondary-color); }
.iq-portfolio-2  .iq-portfolio .details-box .portfolio-tag ul { list-style: none; padding: 0; margin: 0; }
.iq-portfolio-2  .iq-portfolio .details-box .portfolio-tag ul li { padding: 0 10px; background: var(--white-light-color); display: inline-block; margin-right: 5px; }
.iq-portfolio-2  .iq-portfolio .details-box .portfolio-tag ul li:last-child { margin-right: 0; }
.iq-amazing-tab .nav.justify-content-start.justify-content-lg-end{  margin-bottom: 15px;}
/*---------------------------------------------------------------------
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-masonry-block.iq-blog-masonary .iq-portfolio { -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06); box-shadow: 0px 0px 40px 0px 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; }

/*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 { margin-bottom: 0px; display: flex; align-items: center; flex-direction: row-reverse; margin-bottom: 40px; }
.iq-default-blog-style-2 .iq-blog-article-style:nth-child(even) .iq-blog-box .iq-blog-image { text-align: right; }
.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:nth-child(even) .iq-blog-box .iq-blog-detail { margin-left: 45px; margin-right: -100px; }
.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: 1px solid var(--white-light-color); padding-bottom: 40px; margin-bottom: 40px; }
.iq-default-blog-style-2 .iq-blog-box .iq-blog-image img { position: relative; text-align: center; display: inline-block; float: left; width: 100%; margin-bottom: 0px;   /* max-width: 440px;*/ height: auto; height: 350px; 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 { align-self: center; margin-left: -100px; margin-right: 45px; background: var(--white-color); padding: 30px; box-shadow: 0px 10px 44px 0px rgba(0, 0, 0, 0.05); z-index: 9; }

/*/*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 { margin-bottom: 0px; border: none; }
.iq-default-blog-style-2-grid .iq-blog-box { display: block; border: none; }
.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; 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); }
.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 2*/
.iq-portfolio-style-3 .iq-portfolio { position: relative; overflow: hidden; }
.iq-portfolio-style-3 .iq-portfolio:before { height: 100%; width: 100%; content: ""; background: rgb(36, 38, 43, 0.9); position: absolute; left: 0; top: 0; opacity: 0; visibility: hidden; -webkit-transition: all 0.3s ease-in-out; z-index: 1; }
.iq-portfolio-style-3 .iq-portfolio:hover::before { opacity: 1; visibility: visible; }
.iq-portfolio-style-3 .iq-portfolio .iq-portfolio-content { display: inline-block; width: 100%; position: absolute; left: 50%; top: 70%; transform: translate(-50%, -50%); opacity: 0; transition: all 0.7s ease-in-out; }
.iq-portfolio-style-3 .iq-portfolio:hover .iq-portfolio-content { top: 50%; opacity: 1; }

/*.iq-portfolio-style-3 .iq-portfolio:hover .iq-portfolio-content{opacity: 1;}*/
.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:1200px) {
  .iq-testimonial-2 .iq-testimonial-info { padding: 90px 30px 80px 30px; }
  .iq-testimonial-2 .iq-testimonial-bg { background-image: none !important; }
}
@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: #020d1e; 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; }

/*---------------------------------------------------------------------
               Scrollme 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; }

/*---------------------------------------------------------------------
               Owl slider
-----------------------------------------------------------------------*/

/* Owl slider Style one */
.owl-carousel.vrooom-slider .owl-stage-outer { overflow: visible; }
.owl-carousel.vrooom-slider.owl-drag .owl-item, .owl-carousel.vrooom-slider .owl-item.active .iq-slider, .owl-carousel.vrooom-slider .owl-item.active .iq-content { opacity: 1; }
.owl-carousel.vrooom-slider .owl-item .iq-content { opacity: 0;}
.owl-carousel.vrooom-slider .owl-item.active .iq-slider { padding: 0; }
.owl-carousel.vrooom-slider .owl-item .iq-slider { opacity: 0.4; padding: 100px; 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; }
.owl-carousel.vrooom-slider .iq-btn-container { margin-top: 30px; }
.owl-carousel.vrooom-slider .iq-vrooom-genuine-price, .owl-carousel.vrooom-slider .iq-vrooom-price { color: var(--primary-color); }
.owl-carousel.vrooom-slider .iq-vrooom-price { text-decoration: line-through; color: var(--body-text); margin-left: 5px;}
@media(max-width:1024px) {
  .owl-carousel.vrooom-slider .owl-item .iq-slider { padding: 0; }
}

/* Owl slider Style two */
.owl-carousel.vrooom-slider.style-two .owl-nav { top: 40%; }
.owl-carousel.vrooom-slider.style-two .owl-nav .owl-prev { left: -71px; }
.owl-carousel.vrooom-slider.style-two .owl-nav .owl-next { right: -71px; }
.owl-carousel.vrooom-slider.style-two  .owl-item .iq-slider { padding: 0; border-radius: 5px; overflow: hidden; }
.owl-carousel.vrooom-slider.style-two .owl-item .iq-slider { transform: scale(0.95); }
.owl-carousel.vrooom-slider.style-two .owl-item.active .iq-slider { transform: scale(1); }
.owl-carousel.vrooom-slider.style-two .iq-content { text-align: left; left: 30px; position: absolute; top: 40%; transform: translate(0, -50%); }
.owl-carousel.vrooom-slider.style-two .iq-content .iq-vrooom-price-title { color: var(--white-color); }
.owl-carousel.vrooom-slider.style-two .iq-content .iq-heading-title { color: var(--white-color); margin-bottom: 30px; }
.owl-carousel.vrooom-slider.style-two  .iq-detail-inner .media { align-items: center; }
.owl-carousel.vrooom-slider.style-two .owl-item .iq-detail-inner .media img { width: 50px; height: 50px; position: relative; padding: 10px; background: var(--primary-color); border-radius: 3px; }
.owl-carousel.vrooom-slider.style-two .iq-car-details { padding: 30px; }
.owl-carousel.vrooom-slider.style-two .iq-detail-inner .media p { margin: 0; }
.owl-carousel.vrooom-slider.style-two .iq-slider { -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); border-radius: 5px; }
.owl-carousel.vrooom-slider.style-two .iq-detail-inner .media h6 { text-transform: uppercase; font-weight: 600; }
.slider-bg-text .iq-vrooom-slider::before { position: absolute; content: "cars"; top: 0; bottom: 0; left: 0; right: 0; font-size: 250px; height: 100px; z-index: 9; color: rgba(0,0,0,0.5); opacity: 0.2; text-align: center; font-weight: 700; letter-spacing: 20px; font-family: 'Rajdhani',sans-serif;}

@media(max-width:1299px) {
  .owl-carousel.vrooom-slider.style-two .iq-car-details { display: none; }
  .owl-carousel.vrooom-slider.style-two .iq-content{top: 50%;}
}
.stm-thumbs-car-gallery  .stm-single-image img{border-radius: 5px;}
/*---------------------------------------------------------------------
               Car plugin
-----------------------------------------------------------------------*/

/* Checkbox Start */
.stm-single-feature.iq-check{margin-bottom: 30px;}
.stm-single-feature.iq-check .checkmark{top:6px;cursor: pointer;} 
.stm-single-feature label { position: relative; }
.stm-single-feature input[type=checkbox] { position: relative; position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.stm-single-feature input:checked ~ .checkmark { background-color: var(--primary-color); }
.stm-single-feature .checkmark:after { content: ""; position: absolute; display: none; }
.stm-single-feature input:checked ~ .checkmark:after { display: block; }
.stm-single-feature .checkmark:after { left: 4px; top: 0; width: 5px; height: 10px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); border-radius: 3px; }
.stm-single-feature span { padding-left: 25px; }
.stm-single-feature .checkmark { position: absolute; top: 13px; left: 0; height: 15px; width: 15px; padding: 0; background-color: var(--white-light-color); border-radius: 3px; border: 1px solid rgba(134, 140, 156, 0.18);}
.stm-login-form .stm-single-feature .checkmark { top: 5px; }
.stm-login-form .stm-single-feature .checkmark { background: var(--white-color); border: 1px solid rgba(134, 140, 156, 0.18); }
.stm-login-register-form.vrooom-reg-login .form-control { border: 1px solid rgba(134, 140, 156, 0.18); }
.stm-login-register-form.vrooom-reg-login .form-control:hover, .stm-login-register-form.vrooom-reg-login .form-control:focus { border-color: var(--primary-color); }
.stm-login-register-form.vrooom-reg-login .form-control:hover, .stm-login-register-form.vrooom-reg-login .form-control:focus { border-color: var(--primary-color) !important; }
.stm_add_car_form .stm-history-popup .inner:after{box-shadow: none;}
.stm_add_car_form .stm-form-2-features .stm-single-feature .heading-font { margin-bottom: 14px; position: relative; color: var(--title-color); font-weight: 500; display: inline-block; padding-right: 20px;}
.stm_add_car_form .stm-form-2-features .stm-single-feature .heading-font::after{ content: "\f0da"; font-family: 'FontAwesome'; position: absolute;  right: 0; font-size: 22px; top: -1px; color: var(--primary-color);}
.stm_add_car_form .stm-form-2-features .stm-single-feature .feature-single label{padding: 4px 0;}
.stm_add_car_form .stm-form-3-photos .stm-add-media-car .stm-media-car-main-input .button{color: var(--body-text)}


/* Checkbox  End */
.listing-list-loop .content .meta-top:after{display: none !important;}
.stm_add_car_form.stm_add_car_form_ .stm-form-3-photos .stm-add-media-car .stm-media-car-main-input { margin-bottom: 30px; border-radius: 5px; }
.stm_add_car_form.stm_add_car_form_ .stm-form-3-photos .stm-add-media-car .stm-media-car-gallery .stm-placeholder .inner { border-radius: 5px; }
.archive-listing-page .stm-sort-by-options { display: flex; align-items: center; }
.stm_add_car_form.stm_add_car_form_ .stm_add_car_form_1 .stm-form-1-end-unit .stm-form-1-quarter:hover i { color: var(--primary-color); }
.stm_add_car_form .stm-form-4-videos .stm-border-top-unit  .step_number { top: 16px; }
.filter.filter-sidebar.ajax-filter .form-group { margin: 10px 0; display: block; float: left; width: 100%; }
.filter.filter-sidebar.ajax-filter .sidebar-action-units .button { margin-bottom: 0; }
.stm_add_car_form .stm_add_car_form_1 .stm-form-1-end-unit .stm-form-1-quarter .stm-label { display: inline-block; }
#stm_user_info .stm-add-a-car-user .left-info { display: flex; align-items: center; }
#stm_user_info .stm-add-a-car-user .left-info .user-info h4 { margin: 0; }
.stm-isotope-sorting .listing-list-loop .content .meta-top .price { border-radius: 3px; background-color: var(--primary-color); color: var(--white-color); }
.listing-list-loop .content .title a { color: var(--title-color); }
.listing-list-loop .content .title a:hover { color: var(--primary-color); }
.listing-list-loop .single-car-actions .stock-num { display: inline-block; border-radius: 3px; background-color: transparent; color: var(--title-color); border: 1px solid rgba(82, 95, 129, 0.09); }
.listing-list-loop .single-car-actions .stock-num > span { color: var(--body-text); }
.listing-list-loop .car-action-unit { color: var(--body-text); border-radius: 3px; }
.stm-register-form .stm-show-password i { margin: 0; top: 18px; }
.stm_add_car_form .stm-border-top-unit { display: inline-block; width: 100%; }
.iq-sell-a-car .stm_add_car_form .stm-border-top-unit{padding: 0; margin-bottom: 25px;}
.iq-sell-a-car .stm-form-price-edit{margin-bottom: 30px;}
.filter.filter-sidebar .sidebar-action-units .button { background-color: var(--secondary-color); }
.filter.filter-sidebar .sidebar-action-units .button:hover { background: var(--primary-color); }
.sidebar-entry-header .h4 { font-family: 'Rajdhani', sans-serif; color: var(--title-color); -ms-word-wrap: break-word; word-wrap: break-word; font-weight: 600; margin-bottom: 15px; display: inline-block; position: relative; padding-right: 20px; }
.stm_add_car_form_ .stm_add_car_form .stm-form-4-videos { margin: 0; }
.stm_add_car_form .stm_add_car_form_1 .stm-form-1-end-unit { margin-top: 0 !important; margin-bottom: 0 !important; }
.stm_add_car_form.stm_add_car_form_ .stm-form-3-photos .stm-add-media-car .stm-media-car-gallery { margin-bottom: 0; }
.stm_add_car_form .stm-history-popup { right: 0; }
.stm_add_car_form.stm_add_car_form_ .stm-border-top-unit .step_number, .stm_add_car_form.stm_add_car_form_ .stm-form-3-photos .stm-add-media-car .stm-media-car-main-input .stm-placeholder.hasPreviews .fa-camera { color: var(--primary-color); }
.stm_add_car_form.stm_add_car_form_  .stm-form-3-photos .stm-add-media-car .stm-media-car-main-input:hover .hasPreviews .fa-camera:after { background: var(--white-color); }
.stm-media-car-main-input:hover .stm-add-media-car .stm-media-car-main-input .stm-placeholder.hasPreviews .fa-camera { color: var(--white-color); }
.stm_add_car_form.stm_add_car_form_ .title.heading-font, .stm_add_car_form.stm_add_car_form_ .stm-video-link-unit-wrap .video-label { color: var(--title-color); text-transform: capitalize; font-weight: 600; }
.stm_add_car_form.stm_add_car_form_  .stm-form-3-photos .stm-add-media-car .stm-media-car-gallery .stm-placeholder:hover .inner { border-color: var(--primary-color); }
.stm_add_car_form .stm_add_car_form_1 .stm-form-1-end-unit .stm-form-1-quarter .stm-label { display: none; }
.stm_add_car_form.stm_add_car_form_ .stm-form-checking-user { padding-bottom: 0; padding-top: 0;}
.stm_add_car_form.stm_add_car_form_ .stm-form-3-photos .stm-add-media-car .stm-media-car-gallery .stm-placeholder .inner .stm-image-preview.ui-draggable:before, .stm_add_car_form.stm_add_car_form_ .stm-form-3-photos .stm-add-media-car .stm-media-car-gallery .stm-placeholder .inner .stm-image-preview .fa { background: var(--primary-color); }
.stm_add_car_form.stm_add_car_form_ .stm-user-registration-unit .stm-login-register-form .stm-register-form form { padding: 0px; box-shadow: none; border: none; }
.stm_add_car_form.stm_add_car_form_ .stm-login-register-form .stm-register-form form .stm-message-ajax-validation { background: transparent; color: var(--warning-color); border: 1px solid var(--warning-color); }
.stm_add_car_form.stm_add_car_form_ .stm-login-register-form .stm-register-form form .form-group h4 { display: none; }
.stm-form-checking-user .stm-add-a-car-message { background: transparent; border: 1px solid var(--warning-color); color: var(--warning-color) !important; }
.stm_add_car_form.stm_add_car_form_ .stm_add_car_form_1 .stm-form-1-end-unit .stm-form-1-quarter { min-height: 85px; }
.stm_add_car_form.stm_add_car_form_ .stm-add-a-car-user .right-info { float: right; margin-top: 10px; }
.stm-add-a-car-user .left-info .user-info h4 { text-transform: capitalize; }
input:checked ~ .checkmark { background-color: var(--primary-color); }
.stm_add_car_form.stm_add_car_form_  .stm-form-4-videos { margin: 0; }
.stm-user-registration-unit .stm-login-register-form .stm-register-form form, .stm-form-inner .stm-user-registration-unit, .stm-user-registration-unit, .stm_add_car_form.stm_add_car_form_ .stm-history-popup .inner { -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); border-top: 4px solid var(--primary-color); border-radius: 5px; }
.stm-form-checking-user .stm-add-a-car-user{border-top: none;border-radius: 5px;
  border: 1px solid rgba(82, 95, 129, 0.09); box-shadow: none;}
, .stm-add-a-car-user .stm-sort-by-options.clearfix { display: flex; align-items: center; }
.stm-sort-by-options.clearfix span { margin-right: 10px; }
.stm_add_car_form.stm_add_car_form_ .stm-user-registration-unit { padding-top: 45px; }
.site-content .stm-user-public-profile .stm-user-public-profile-top {     border-color: var(--primary-color);
  border: 1px solid rgba(82, 95, 129, 0.09);
  padding: 30px;
  border-top: 4px solid var(--primary-color); -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);border-radius: 5px; }
.stm-sort-by-options.clearfix .nice-select.wide { width: auto; }
.sidebar-entry-header .h4:before { content: "\f0da"; font-family: 'FontAwesome'; position: absolute; right: 0; font-size: 22px; top: 2px; color: var(--primary-color); }
.filter.filter-sidebar.ajax-filter { border: 1px solid rgba(82, 95, 129, 0.09); padding: 30px; border-radius: 5px; border-top: 4px solid rgba(209, 208, 207, 0.6); border-top-color: var(--primary-color); -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);}
.stm-login-register-form.vrooom-reg-login .stm-login-form form { background-color: var(--white-light-color); border-radius: 5px; }
.stm-login-register-form.vrooom-reg-login .stm-login-form form input[type="password"], .stm-login-register-form.vrooom-reg-login .stm-login-form form input[type="text"] { background-color: var(--white-color) !important; }
.stm-login-register-form.vrooom-reg-login .stm-login-form form input[type="password"]:focus, .stm-login-register-form.vrooom-reg-login .stm-login-form form input[type="text"]:focus { border-color: var(--primary-color); }
.stm-login-register-form.vrooom-reg-login .stm-login-form form .stm-message-ajax-validation { color: var(--warning-color); }

.stm-login-register-form.vrooom-reg-login .stm-register-form { margin-bottom: 0; }
.stm-login-register-form.vrooom-reg-login .stm-login-form form .form-group { float: left; width: 100%; }
.stm-login-register-form.vrooom-reg-login .stm-login-form form h4 { color: var(--title-color); font-size: 16px; }
.vrooom .stm-login-register-form.vrooom-reg-login h3 { margin-bottom: 30px; }
.stm-login-register-form.vrooom-reg-login .stm-register-form form{padding: 0;}
.stm-login-register-form.vrooom-reg-login { margin-top: 0; -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); border-radius: 5px; padding: 30px 30px 0; border-top: 4px solid  var(--primary-color); ;}
.stm-login-register-form.vrooom-reg-login .stm-register-form form { border-top: none; box-shadow: none; }
.iq-sell-a-car ul li .nav-link p { color: var(--body-text); }
.iq-sell-a-car ul.nav.justify-content-start li { display: block; width: 100%; margin-bottom: 30px; border: 1px solid rgba(134, 140, 156, 0.18); border-radius: 5px; overflow: hidden; }
.iq-sell-a-car ul li .nav-link.active { -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); background: var(--primary-color);}
.iq-sell-a-car ul li .nav-link { background: var(--white-color); color: var(--title-color); padding: 30px; position: relative; }
.iq-sell-a-car{-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);
  border-radius: 5px;
  padding: 30px 15px;
  border-top: 4px solid var(--primary-color);}
.iq-sell-a-car ul li .nav-link h4 ,.iq-sell-a-car ul li .nav-link p{color: var(--title-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;}
.iq-sell-a-car ul li .nav-link.active h4 ,.iq-sell-a-car ul li .nav-link.active p ,.iq-sell-a-car ul li .nav-link:hover h4 ,.iq-sell-a-car ul li .nav-link:hover p{ color:var(--white-color); }
.iq-sell-a-car ul li .nav-link:hover{background-color: var(--primary-color);}
.stm-user-registration-unit .stm-login-register-form .stm-register-form{margin-bottom: 0;}
.stm-login-register-form .stm-register-form form .form-group.form-group-submit{margin-bottom: 0;}

.stm-login-register-form.vrooom-reg-login .stm-register-form form .stm-message-ajax-validation { background-color: transparent; color: var(--warning-color); border: 1px solid var(--warning-color); }

@media(max-width: 1024px){
  .stm-login-register-form.vrooom-reg-login{padding: 15px 15px 0;}
}
@media(max-width:992px) {
  .stm_add_car_form .stm_add_car_form_1 .stm-form-1-end-unit .stm-form-1-quarter { width: 100% !important; }
}

/* USer Profile */
.container.stm-user-public-profile .stm-user-data-right .stm-user-email{background-color: var(--white-light-color);}
.stm-user-private.iq-override-user-private  .stm-user-private-sidebar .stm-user-avatar .stm-empty-avatar-icon{background-color: var(--white-color);border: 1px solid rgba(82, 95, 129, 0.09);}
.iq-override-user-private  .iq-private{    -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);border-radius: 5px;padding: 30px 30px 0;border-top: 4px solid var(--primary-color);}
.stm-user-private.iq-override-user-private .stm-user-private-sidebar { padding: 30px; background-color: var(--white-light-color); border-radius: 5px; margin-bottom: 30px;}
.stm-user-private.iq-override-user-private .archive-listing-page { margin: 0; }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-user-top { display: flex; align-items: center; }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-actions-list a i, .stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-dealer-mail i { color: var(--primary-color); }
.stm-user-private .stm-user-private-sidebar .stm-actions-list a, .stm-user-private .stm-user-private-sidebar .mail-label.heading-font, .stm-user-private.iq-override-user-private .heading-font { font-family: 'Rajdhani', sans-serif; color: var(--title-color); font-weight: 600; }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .show-my-profile a { background: var(--primary-color); color: var(--white-color); }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .show-my-profile a:hover { background: var(--secondary-color); }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-actions-list { padding-bottom: 0; }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-dealer-mail { margin-top: 0; }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-dealer-mail { padding-bottom: 0; }
.stm-user-private.iq-override-user-private .stm-my-profile-settings .form-group { float: left; width: 100%; }
.stm-user-private.iq-override-user-private .stm-my-profile-settings .stm-change-block .title { border-color: var(--primary-color); }
.stm-user-private.iq-override-user-private .form-group .stm-label { font-size: 14px; color: var(--title-color); }
.stm-user-private.iq-override-user-private .stm-settings-confirm-password { background-color: var(--white-light-color); border-radius: 5px; float: left; width: 100%; padding: 30px; margin-bottom: 0; }
.stm-user-private.iq-override-user-private .stm-settings-confirm-password .stm-show-password { float: left; }
.stm-user-private.iq-override-user-private .stm-my-profile-settings .stm-image-unit .stm-upload-new-avatar .stm-new-upload-area input[name="stm-avatar"] { cursor: pointer; }
.stm-user-private.iq-override-user-private .stm-my-profile-settings .stm-image-unit .stm-upload-new-avatar .stm-new-upload-area .button { background-color: var(--secondary-color); }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-user-avatar .stm-empty-avatar-icon, .stm-user-private.iq-override-user-private .stm-my-profile-settings .stm-image-unit .image .stm-empty-avatar-icon { border-radius: 5px; }
.stm-user-private.iq-override-user-private .stm-settings-confirm-password input[name="stm_confirm_password"] { margin-bottom: 0; }
.stm-user-private.iq-override-user-private .stm-settings-confirm-password .stm-show-password .fa { margin-top: -10px; right: 25px; }
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-dealer-mail .mail a { word-break: break-all; }
.stm-user-private.iq-override-user-private .stm-my-profile-settings .stm-image-unit .stm-upload-new-avatar .stm-new-upload-area .stm-new-file-label { margin-top: 10px; }
.stm-user-private.iq-override-user-private .stm-my-profile-settings .stm-image-unit .stm-upload-new-avatar .stm-new-upload-area .button { padding: 10px 30px; }
.container.stm-user-public-profile .stm-user-data-right .stm-user-email .fa{color: var(--primary-color);}
/* Archive-listing-page */
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit .icon{position: static; transform:none;}
.archive-listing-page .stm_compare_unit a { bottom: inherit; left: 15px; right: inherit; top: 15px; background: var(--white-color); border-radius: 3px; height: 30px; width: 30px; text-align: center; line-height: 30px; padding: 0; }
.elementor-widget-container  .archive-listing-page { margin: 0; }
.archive-listing-page .stm_compare_unit i { color: var(--primary-color); display: inline-block; line-height: normal; vertical-align: middle; }
.archive-listing-page .stm_compare_unit a:hover { background: var(--primary-color); }
.archive-listing-page .stm_compare_unit a:hover i { color: var(--white-color); }
.archive-listing-page .listing-list-loop .image { max-width: 325px; padding: 0; }
.archive-listing-page .listing-list-loop .image .image-inner img { width: 325px; height: 290px; object-fit: cover; }
.archive-listing-page .listing-list-loop { padding: 0; display: flex; align-items: center; border: 1px solid var(--white-light-color); overflow: hidden; border-radius: 5px;     -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);}
.stm_compare_cars_footer_modal .stm-compare-list-wrap .stm-mc-items-wrap li.stm-mc-item-wrap a.stm-compare-btn { background-color: var(--primary-color); border-radius: 3px; font-family: 'Rajdhani', sans-serif; box-shadow: none; }
.archive-listing-page .stm_listing_edit_controls{display: flex; margin-bottom: 15px;}
.archive-listing-page  .listing-list-loop .content { width: calc(100% - 380px); position: relative;}
.stm_compare_cars_footer_modal {border-top-left-radius: 5px;overflow: hidden; }
.stm_compare_cars_footer_modal .stm-compare-list-wrap .stm-mc-items-wrap li.stm-mc-item-wrap a.stm-compare-btn:hover { background-color: var(--secondary-color); }
.archive-listing-page .listing-list-loop .content .title a { font-size: 34px; line-height: 44px; }
.archive-listing-page .listing-list-loop .video-preview { background-color: var(--secondary-color); border-radius: 3px; padding: 5px 11px 5px 30px; line-height: 20px; }
.archive-listing-page .listing-list-loop .video-preview i { left: 12px; }
.archive-listing-page .listing-list-loop .video-preview:hover { background-color: var(--primary-color); }

/* Archive-listing-page  style*/
.iqonic-stabdard-listings .single-car-actions > ul li, .iqonic-stabdard-listings .single-car-actions > ul { margin-bottom: 0; }
.single-car-actions > ul li{margin-right: 28px !important;}
.iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price.discounted-price .regular-price, .iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price.discounted-price .sale-price .label-price, .iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price .normal-price .label-price { display: none; }
.archive-listing-page .listing-list-loop .content{position: relative;}
.iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price.discounted-price, .iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price { padding: 0; text-align: center; margin: 0; display: inline-block; line-height: normal; background-color: transparent; text-align: right; }

.iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price.discounted-price .sale-price, .iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price .normal-price { padding: 0; left: 0; }
.archive-listing-page .iqonic-stabdard-listings .listing-list-loop .content { position: relative; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price .heading-font { color: var(--primary-color); }
.iqonic-stabdard-listings .stm-isotope-sorting .listing-list-loop .content .meta-bottom .price { background: transparent; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit.font-exists .value { padding: 0; display: inline-block; }
body .stm_compare_cars_footer_modal .stm-mc-header-wrap .stm-mc-header-icon-wrap.ico-speed .stm-compare-badge { background-color: var(--primary-color); }
body  .stm_compare_cars_footer_modal.stm-open .stm-compare-list-wrap { overflow-y: scroll; height: 200px; }
body .stm_compare_cars_footer_modal { z-index: 99; }
body .stm_compare_cars_footer_modal .stm-compare-list-wrap { 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; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit.font-exists .value span { background: var(--title-color); color: var(--white-color); padding: 5px 10px; border-radius: 3px; margin-right: 5px; font-size: 14px; }
/* .iqonic-stabdard-listings .meta-middle-unit.font-exists.ca-year { position: absolute; right: 0; bottom: 1px; margin: 10px; } */
body .stm_compare_cars_footer_modal .iq-btn:hover .iq-btn-text { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
.modal-content .modal-header-iconed i { color: var(--primary-color); }
.modal-content .modal-header { align-items: center; }
.modal-content .modal-header-iconed h3 { margin: 0; }
.archive-listing-page  .stm-sort-by-options { margin-bottom: 30px; }
.archive-listing-page  .listing-list-loop .video-preview { right: 15px; top: 15px; }
.iqonic-stabdard-listings .iq-emi-calc a { position: relative; padding-bottom: 5px; }
.iqonic-stabdard-listings .iq-emi-calc a:after { position: absolute; width: 25px; bottom: 0; background-color: var(--primary-color); height: 2px; left: 0; content: ""; 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;}
.iqonic-stabdard-listings .iq-emi-calc a:hover::after{background-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;}
.iqonic-stabdard-listings .listing-list-loop .car-action-unit { padding: 3px 15px; background-color: var(--primary-color); border-color: var(--primary-color); color: var(--white-color); }
.iqonic-stabdard-listings .meta-middle-unit.location { display: block; width: 100%; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit.font-exists .meta-middle-unit-top { display: inline-block; }
.iqonic-stabdard-listings .iq-listing-mileage .icon, .iq-listing-fuel .icon, .iq-listing-owner .icon { display: inline-block; margin-right: 3px; font-size: 14px; }
.iqonic-stabdard-listings .listing-list-loop .car-action-unit:hover { background-color: var(--secondary-color); color: var(--white-color); border-color: var(--secondary-color); }
.iqonic-stabdard-listings .listing-list-loop .content .meta-bottom .price .heading-font, .iqonic-stabdard-listings .listing-list-loop .content .meta-top .price .normal-price .heading-font { font-size: 35px; font-weight: 800; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit .meta-middle-unit-top .icon { position: relative; top: inherit; display: inline-block; left: inherit; transform: initial; margin-right: 8px; margin-top: 0; }
.iqonic-stabdard-listings  .iq-listing-mileage, .iqonic-stabdard-listings  .iq-listing-fuel, .iqonic-stabdard-listings  .iq-listing-owner { float: left; display: inline-block; margin-right: 15px; margin-bottom: 10px; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit .meta-middle-unit-top, .iqonic-stabdard-listings .iq-emi-calc { display: inline-block; float: left; }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit.location .value { font-size: 16px; display: inline-block; margin-left: 10px }
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit.location .meta-middle-unit-top{color: var(--title-color);}
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit.location .meta-middle-unit-top i{color: var(--body-text);}
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit .value{font-size: 16px; display: inline-block; font-weight: normal;}
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit .icon{color: var(--body-text);}
.iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit { margin-bottom: 20px; margin-right: 13px;}
.listing-list-loop .content .meta-top{margin-bottom: 15px !important;}
.iqonic-stabdard-listings .listing-list-loop .content .title { padding: 0; margin: 0; }
.listing-list-loop .content .meta-middle .meta-middle-unit.font-exists.ca-year .meta-middle-unit-top { display: none; }
.archive-listing-page .stm_listing_edit_controls a{    font-family: 'Rajdhani', sans-serif;
font-weight: 600;}
.stm-user-private.iq-override-user-private .stm-user-private-sidebar .stm-actions-list a{font-weight: 600;}
.iqonic-stabdard-listings .iq-listing-data{float: left;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;}
  .iqonic-stabdard-listings .iq-listing-data span.icon{    display: inline-block;
    margin-right: 3px;
    font-size: 14px;}
    .iqonic-stabdard-listings  .listing-list-loop .content .meta-middle .meta-middle-unit.font-exists .meta-middle-unit-top{padding: 0;}
    .iqonic-stabdard-listings .listing-list-loop .content .meta-middle .meta-middle-unit .value
/* Nice Select Dropdown */
.nice-select.wide{background: var(--white-light-color);}
.nice-select.wide .list { z-index: 99; overflow-y: auto; overflow-x: hidden; max-height: 200px; -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); border: 1px solid var(--primary-color); }
.nice-select.wide .list::-webkit-scrollbar-thumb, body .stm_compare_cars_footer_modal.stm-open .stm-compare-list-wrap::-webkit-scrollbar-thumb { width: 4px; border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0); }
.nice-select.wide .list::-webkit-scrollbar, body .stm_compare_cars_footer_modal.stm-open .stm-compare-list-wrap::-webkit-scrollbar { width: 4px; }
.nice-select.wide .list::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0); border-radius: 10px; }
.nice-select, .nice-select.form-control { line-height: 55px; height: 55px; font-size: 16px; padding: 0 30px 0 20px; border: 1px solid rgba(82, 95, 129, 0.09);     background: var(--white-light-color);}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { color: var(--primary-color); background-color: transparent; }
.nice-select:hover, .nice-select:focus { border-color: var(--primary-color); }
input.form-control { line-height: 55px; height: 55px; }
.nice-select .list:hover .option:not(:hover) { color: var(--title-color); }
.nice-select:after { content: "\f0dd"; font-family: 'FontAwesome'; font-weight: 900; border: none; width: auto; height: auto; display: inline-block; position: absolute; top: 46%; transform: translate(0, -50%); margin: 0; }
.nice-select.open:after { transform: translate(0, -50%); }
.slide-in-bottom { -webkit-animation: slide-in-bottom 0.5s both; animation: slide-in-bottom 0.5s both; }
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after { margin: 0; }
@media(max-width: 576px){
  .listing-list-loop .meta-middle-unit.font-exists.ca-year .value {
    position: absolute;  top: 20px;  right: 15px;  left: auto;}
    .listing-list-loop .content .meta-top {display: block !important; margin-bottom: 15px !important;}
    .listing-list-loop .content .meta-bottom {display: block !important;}
    .listing-list-loop .single-car-actions .stock-num{margin-top: 15px;}
    .iqonic-stabdard-listings .stm-isotope-sorting .listing-list-loop .content .meta-bottom .price{margin-top: 15px;}
    .iqonic-stabdard-listings .single-car-actions > ul{display: block !important;}
    .iqonic-stabdard-listings .single-car-actions > ul li{margin-bottom: 20px;}
}
@media(max-width: 600px){
  .listing-list-loop .content .meta-middle .meta-middle-unit.font-exists.ca-year{margin-bottom: 10px;}
}
/*---------------------------------------------------------------------
               Tab slider 
 -----------------------------------------------------------------------*/
.iq-amazing-tab .iq-vrooom-box { position: relative; overflow: hidden; }
.iq-amazing-tab ul.nav li { margin-right: 15px; margin-bottom: 22px; }
.iq-amazing-tab ul.nav li:last-child { margin-right: 0; }
.iq-amazing-tab ul.nav li a { 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); color: var(--title-color); border-radius: 3px; font-family: 'Rajdhani', sans-serif; font-weight: 600;}
.iq-amazing-tab ul.nav li a:hover, .iq-amazing-tab ul.nav li a.nav-link.active { background: var(--primary-color); color: var(--white-color); }
.iq-amazing-tab .iq-vrooom-box .iq-vrooom-content i { color: var(--body-text); margin-right: 10px; font-size: 20px; height: 30px; line-height: 30px; text-align: center; display: inline-block; }
.iq-amazing-tab .iq-vrooom-box .iq-car-min-details { margin-top: 10px; }
.iq-amazing-tab .iq-vrooom-box .iq-vrooom-content { padding: 30px; }
.iq-amazing-tab .iq-vrooom-box { -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); border-radius: 5px; }
.iq-amazing-tab .iq-vrooom-box .iq-car-min-details span { text-transform: capitalize; font-weight: 500; color: var(--secondary-color);}
.iq-amazing-tab .iq-vrooom-box  span.d-block.d-flex { margin: 5px 0; align-items: center; }
.iq-amazing-tab .iq-vrooom-box img { transform: scale(1.03) translateX(-1px); 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-amazing-tab .iq-vrooom-box:hover img { transform: scale(1.03) translateX(5px); }
.iq-amazing-tab .iq-vrooom-box span.d-block.d-flex:last-child { margin: 0; }
.iq-amazing-tab .iq-vrooom-box .vrooom-tab-year { position: absolute; bottom: 30px; right: 30px; }
.iq-amazing-tab .iq-vrooom-box .vrooom-tab-year span {background: var(--primary-color); color: var(--white-color); padding: 2px 10px; border-radius: 3px; margin-right: 5px; font-family: 'Rajdhani', sans-serif; font-weight: 600; display: inline-block; line-height: normal; }
.iq-amazing-tab .owl-carousel.owl-drag .owl-item{visibility: hidden;}
.iq-amazing-tab .owl-carousel.owl-drag .owl-item.active{visibility: visible;}
.iq-amazing-tab .iq-vrooom-box .vrooom-tab-year span:last-child { margin: 0; }
.iq-amazing-tab .iq-vrooom-box .iq-price-detail .iq-vrooom-price { text-decoration: line-through; }
.iq-amazing-tab .iq-vrooom-box .iq-price-detail span { color: var(--body-text); }
.iq-amazing-tab .iq-vrooom-box .iq-price-detail span.iq-vrooom-genuine-price{color: var(--primary-color);}
.iq-amazing-tab .owl-carousel .owl-stage-outer { overflow: visible; }
.iq-amazing-tab .iq-vrooom-box span.video-preview { right: 15px; top: 15px; position: absolute; z-index: 1; background-color: var(--secondary-color); border-radius: 3px; padding: 5px 11px 5px 30px; color: var(--white-color); font-size: 12px; line-height: 20px; }
.iq-amazing-tab .iq-vrooom-box span.video-preview:hover { background: var(--primary-color); }
.iq-amazing-tab .iq-vrooom-box span.video-preview i { position: absolute; left: 12px; margin-top: -6px; top: 50%; font-size: 12px; }
.iq-amazing-tab .iq-vrooom-box .stm_compare_unit a { position: absolute; top: 15px; bottom: inherit; left: 15px; right: inherit; background: var(--white-color); border-radius: 3px; height: 30px; width: 30px; text-align: center; line-height: 30px; padding: 0; }
.iq-amazing-tab .iq-vrooom-box .stm_compare_unit a i { color: var(--primary-color); display: inline-block; line-height: normal; vertical-align: middle; }

/*---------------------------------------------------------------------
              Owl dot and pagination
 -----------------------------------------------------------------------*/
.iq-categories-wrapper .iq-owl-progress { margin-left: calc(50% - 100px + 15px); width: calc(30% - 100px - 15px); position: relative; }
.iq-categories-wrapper .iq-owl-progress .owl-dots { display: flex; width: 100%; counter-reset: counter; margin-top: 45px; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot { z-index: 9; display: inline-block; vertical-align: middle; margin: -5px 0 0; padding: 20px 0 !important; width: 100%; background: 0 0; border: 0; border-radius: 0; outline: 0; -webkit-appearance: none; cursor: pointer; }
.iq-categories-wrapper.owl-carousel.owl-drag .owl-item { opacity: 1; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot:before { left: 30px; counter-increment: counter; visibility: hidden; color: #7f7d80; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot:after { left: 0; opacity: 0; color: #000; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot:last-child:before { visibility: visible; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot.active:after { opacity: 1; }
.iq-categories-wrapper .iq-custom-line { position: absolute; width: 100%; height: 3px; top: 13px; pointer-events: none; }
.iq-categories-wrapper .iq-custom-line .iq-pagination-line { background-color: red; position: relative; top: -16px; left: 0; display: inline-block; height: 100%; width: 150px; -webkit-transition: left .4s; -o-transition: left .4s; transition: left .4s; pointer-events: none; }
.iq-categories-wrapper .iq-owl-progress .owl-dots  .owl-dot:after, .iq-categories-wrapper .iq-owl-progress .owl-dots  .owl-dot:before { position: absolute; top: -10px; font-family: Rajdhani, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .1em; content: counter(counter, decimal-leading-zero); }
.iq-categories-wrapper .iq-owl-progress .owl-dots:after { content: '/'; position: absolute; display: block; top: -8px; left: 20px; font-family: Rajdhani, sans-serif; font-size: 14px; line-height: 1; font-weight: 700; letter-spacing: .1em; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot { background: transparent; }
.iq-categories-wrapper .iq-owl-progress .owl-dots .owl-dot.active { background: transparent; border: none; }
.iq-categories-wrapper .iq-owl-progress .owl-dots:before { content: ''; position: absolute; display: block; width: 100%; height: 1px; top: 14px; left: 0; background-color: #d9d9d9; }
.iq-categories-wrapper .iq-categories { position: absolute; top: 30px; left: 0; padding: 15px 30px; background: var(--white-color); border-radius: 0px 3px 3px 0px; }
.iq-categories-wrapper  .categories-title { font-family: 'Rajdhani', sans-serif; color: var(--title-color); font-weight: 600;  font-size: 1.777em; line-height: 1.33em;}
.iq-categories-wrapper .iq-vrooom-link { position: relative; }
.iq-categories-wrapper.owl-carousel .owl-item img { -webkit-transition: transform 2s ease-in-out; -o-transition: transform 2s ease-in-out; transition: transform 2s ease-in-out; transform-origin: center center; }
.iq-categories-wrapper.owl-carousel .owl-item img:hover { -webkit-transform: scale(1.3); -o-transform: scale(1.3); -moz-transform: scale(1.3); -ms-transform: scale(1.3); transform: scale(1.3); }
.iq-categories-wrapper.owl-carousel span.iq-separator { margin: 0 5px; }
.iq-categories-wrapper.owl-carousel .owl-item { overflow: hidden; }

/*---------------------------------------------------------------------
            Calculator 
 -----------------------------------------------------------------------*/
 .calc.iq-loan-calc  .sub-cal-detail{position: relative;}
 .calc.iq-loan-calc .main-cal-box h5{margin-bottom: 10px; font-size: 18px;}
.calc.iq-loan-calc input { padding-left: 70px; }
.calc.iq-loan-calc label { background-color:var(--secondary-color); border-bottom-left-radius: 3px; border-top-left-radius: 3px; height: 55px; bottom: 0; color: var(--white-color); padding: 20px; width: 55px; text-align: center; position: absolute; left: 0px;
  top: 0px; }
  .calc.iq-loan-calc  .main-cal-box{    display: block;
    float: left;
    width: 100%;
    margin-bottom: 20px;}
.calc.iq-loan-calc  .form-submit{margin-top: 20px; margin-bottom: 30px;}
.calc.iq-loan-calc .iq-cal-output{color: var(--primary-color);     padding: 30px;
  border-radius: 3px;
  border: 1px solid;}
  .calc.iq-loan-calc .iq-cal-output span{margin-top: 5px; display: inline-block;}

/*---------------------------------------------------------------------
            car Single page
 -----------------------------------------------------------------------*/
 .stm_single_car_wrapper .stm_single_car_row .stm_single_car_side .stm-single-car-side .stm-single-listing-car-features .lists-inline ul li{font-size: 16px !important;}
 .single-car-mpg .mpg-unit .mpg-label ,.single-car-data > table tr td.t-label{ font-size: 14px !important;}
 .stm_single_car_wrapper .single-car-data > table tr td.t-value{color: var(--title-color);}
.stm_single_car_wrapper .single-car-prices, .site-content-contain .stm_single_car_wrapper .stm_single_car_row .stm_single_car_side .stm-single-car-side .stm-single-listing-car-features { background-color: transparent; position: relative; border: 1px solid rgba(82, 95, 129, 0.09); border-top: 4px solid rgba(209, 208, 207, 0.6); border-top-color: var(--primary-color); border-top-left-radius: 5px; border-top-right-radius: 5px; }
.stm_single_car_wrapper .single-car-mpg { border: 1px solid rgba(82, 95, 129, 0.09); border-top: 4px solid rgba(209, 208, 207, 0.6); border-top-color: var(--primary-color); border-radius: 5px; }
.stm_single_car_wrapper  .single-car-mpg { padding: 30px; }
.stm_single_car_wrapper  .single-regular-sale-price > table tr td { color: var(--title-color); }
.stm_single_car_wrapper .single-car-data { background-color: var(--white-color); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border: 1px solid rgba(82, 95, 129, 0.09); border-top: none; }
.stm_single_car_wrapper .single-car-actions .stock-num { border-radius: 3px; background-color: transparent; color: var(--title-color); border: 1px solid rgba(82, 95, 129, 0.09); }
.stm_single_car_wrapper .car-action-unit { padding: 3px 15px; background-color: var(--primary-color); border-color: var(--primary-color); color: var(--white-color); border-radius: 3px; }
.stm_single_car_wrapper .car-action-unit:hover { color: var(--white-color); background-color: var(--secondary-color); border-color: var(--secondary-color); }
.site-content-contain .stm_single_car_wrapper .stm_single_car_row .stm_single_car_side .stm-single-car-side .stm-single-listing-car-features h3 { background-color: transparent; color: var(--title-color); font-size: 24px; display: inline-block; position: relative; padding: 15px 30px;     margin-top: 10px;}
.site-content-contain .stm_single_car_wrapper .stm_single_car_row .stm_single_car_side .stm-single-car-side .stm-single-listing-car-features .lists-inline { background-color: var(--white-color); border-top: none; position: relative;padding: 15px 30px 20px;
  margin: 0; }
.stm_single_car_wrapper .single-car-mpg .mpg-unit { padding-top: 8px; }
.site-content-contain .stm_single_car_wrapper .stm_single_car_row .stm_single_car_side .stm-single-car-side .stm-single-listing-car-features h3:before { content: "\f0da"; font-family: 'FontAwesome'; position: absolute; right: 0; font-size: 22px; top: 15px; color: var(--primary-color); }
.stm_single_car_wrapper .single-car-mpg .mpg-unit .mpg-value{color: var(--title-color);}
.stm_single_car_wrapper .single-car-mpg .mpg-icon{background: var(--primary-color);}
.stm_single_car_wrapper .single-car-mpg .mpg-icon i{left: -4px;}
.stm-big-car-gallery .stm-single-image{border-radius: 5px;}
.stm_single_car_content .special-label, .archive-listing-page .special-label{background-color: var(--primary-color) !important;  font-family: 'Roboto', sans-serif; font-weight: normal;}
.stm_single_car_wrapper .single-regular-price > .h3 ,.stm_single_car_wrapper  .single-regular-price > .labeled{color: var(--title-color);}
.stm-big-car-gallery.owl-carousel .stm-single-image{max-height: 600px;}
@media(max-width: 1024px){
  .stm_compare_cars_archive{padding: 15px;}
}
/*---------------------------------------------------------------------
           Compare Page
 -----------------------------------------------------------------------*/
 /* .stm-compare-row.no-gutters .compare-values .image ,.stm_compare_cars_archive .row.no-gutters .stm_compare_col_top{display: none;} */
 .stm_compare_cars_archive{-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);
  border-radius: 5px;
  padding: 30px 30px 20px;
  border-top: 4px solid var(--primary-color);}
 .stm_compare_cars_archive .row.no-gutters.iq-compare-headings  .stm_compare_col_top{display: block;}
 .stm_compare_cars_archive .button.add-to-compare{background:var(--primary-color);
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px;
  line-height: normal; font-size: 12px;}
  .stm_compare_cars_archive  .stm_compare_col_top{margin-top: 20px;}
  .stm_compare_cars_archive .compare-options{margin-top: 0 !important;}
 .stm_compare_cars_archive .image img{width: 100%; border-radius: 5px;object-fit: cover;}
 .stm_compare_cars_archive  .iq-compare-values .image{background-color: var(--white-light-color); border-radius: 5px;}
 .stm_compare_cars_archive .image{position: relative;}
 .stm_compare_cars_archive .image span.video-preview {
  right: 15px;
  top: 15px;
  position: absolute;
  z-index: 1;
  background-color: var(--secondary-color);
  border-radius: 3px;
  padding: 5px 11px 5px 30px;
  color: var(--white-color);
  font-size: 12px;
  line-height: 20px;
}
.stm_compare_cars_archive .image span.video-preview:hover{background: var(--primary-color);}
.stm_compare_cars_archive table{border: none;}
.stm_compare_cars_archive table tr td {padding:15px 0; border: none; text-align: left;height: 52px;}
.stm_compare_cars_archive table tr td .h5{margin: 0; opacity: 1;  font-family: 'Roboto', sans-serif; font-weight: normal; font-size: 18px;}
.stm_compare_cars_archive table tr:nth-child(odd) td{background-color: var(--white-light-color);}
.stm_compare_cars_archive .image{width: 90%;height:204px; margin-bottom: 30px; display: inline-block;}
.stm_compare_cars_archive .col-md-3.col-sm-3.hidden-xs table tr td{ padding:15px 20px; border-radius: 3px;}
.stm_compare_cars_archive .col-md-3.col-sm-3.hidden-xs table tr td .h5{color: var(--title-color);  font-family: 'Rajdhani', sans-serif; font-weight: 600; }
.stm_compare_cars_archive .image span.video-preview i {
  position: absolute;
  left: 12px;
  margin-top: -6px;
  top: 50%;
  font-size: 12px;
}
.stm_compare_cars_archive .iq-compare-values .text-center .h5{   color: var(--body-text);
  font-weight: normal;
  margin-top: 15px; font-size: 14px;}
.stm_compare_cars_archive h6{color: var(--primary-color);}
/* .stm_compare_cars_archive .iq-compare-values > a > .h5{    margin: 20px 0;
  text-transform: capitalize;
  font-size: 24px;} */
.stm_compare_cars_archive .iq-compare-values .image .text-center{    position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;}
.stm_compare_cars_archive .iq-compare-values .image i{       width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--white-color);
  border: 1px dotted;
  border-radius: 5px;
  color: var(--body-text);}

.stm_compare_cars_archive .iq-compare-loop  .image{display: none;} 

@media (max-width: 991px){

.row.stm-compare-row.iq-compare-headings{display: none;}
.stm_compare_cars_archive .iq-compare-loop .iq-compare-values .image{    float: left;
  width: 100%;
  height: 400px;  margin-bottom: 30px;}
.stm_compare_cars_archive table tr td{padding: 15px;}
.stm_compare_cars_archive .iq-compare-loop  .image{display: block;margin-bottom: 0;} 
.stm_compare_cars_archive .image{width: 100%; height: 100%;}
.stm_compare_cars_archive .col-md-12.col-lg-3.col-xs-4.compare-col-stm.empty-col.iq-compare-values{margin-bottom: 30px;}
.stm_compare_cars_archive .col-md-12.col-lg-3.col-xs-4.compare-col-stm.empty-col.iq-compare-values a{display: block;}
.stm_compare_cars_archive .col-md-12.col-lg-3.col-xs-4.compare-col-stm.empty-col.iq-compare-values:last-child{margin-bottom:0px;}
.stm_compare_cars_archive table>tbody tr td.compare-value-hover .h5{position: relative;}
.stm_compare_cars_archive table>tbody tr td.compare-value-hover .h5:before {
    content: attr(data-option)':';
    display: inline;
    font-size: 14px;
}
.hidden-xs {
  display: none!important;
}
}

/*---------------------------------------------------------------------
           Banner tab
 -----------------------------------------------------------------------*/
 .iq-filter-tab .tab-content .iq-cal-output{ border-radius: 5px;}
 .iq-filter-tab.filter-two .tab-content .iq-cal-output{border-top-left-radius: 0;}
 .banner-three .iq-filter-tab.filter-two .nav-tabs{text-align: center;}
 .banner-three .iq-filter-tab.filter-two .tab-content .iq-cal-output{border-top-left-radius: 5px;}
 .iq-filter-tab .tab-content .iq-cal-output{padding: 30px 30px 0;
  border-radius: 5px;border-top-left-radius: 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); background-color: var(--white-color);  position: relative;}
  .iq-filter-tab .nav-tabs .nav-link{    padding: 10px 30px;
    background:var(--white-color);
    color: var(--title-color); border: none; background-color: var(--white-light-color); font-family: 'Rajdhani', sans-serif; font-weight: 600;}
    .iq-filter-tab .nav-tabs{border: none; text-align: center; display: block;}
    .iq-filter-tab.filter-two .nav-tabs ,.iq-filter-tab.filter-three .nav-tabs {border: none; text-align:left;}
    .iq-filter-tab  .nav-tabs .nav-item{margin-right: 15px; display: inline-block;}
    .iq-filter-tab  .nav-tabs .nav-item:last-child{margin-right: 0px;}
    .iq-filter-tab .nice-select.wide{margin-bottom: 30px; background-color: var(--white-light-color);}
    .iq-filter-tab .nav-tabs .nav-item.show .nav-link,.iq-filter-tab .nav-tabs .nav-link.active{background-color: var(--primary-color); color: var(--white-color);}
    .iq-filter-tab  .slider.slider-horizontal{width: 100%; height: 25px;} 
    .iq-filter-tab  .slider-handle , .iq-filter-tab .slider-selection{background-color: var(--primary-color); background-image: initial;}
    .iq-filter-tab  .slider.slider-horizontal .slider-track{height: 5px;}
    .iq-filter-tab.filter-three .tab-content .iq-cal-output{border-top: 2px solid var(--primary-color);}
    .iq-filter-tab.filter-two .iq-btn-container .iq-button.iq-btn{width: 100%;}
    .iq-filter-tab.filter-two .iq-btn .iq-btn-line-holder{-webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;}
    .iq-filter-tab.filter-two  .iq-btn .iq-btn-line-holder .iq-btn-line-hidden{ margin-left: -78px;}
@media(max-width:991px){
  .iq-filter-tab .tab-content .iq-cal-output{padding: 30px;}
}
@media(max-width:527px) {
	.iq-filter-tab .nav-tabs .nav-link{padding: 10px 15px; font-size: 14px;}
 }
    
/*---------------------------------------------------------------------
           Test model
 -----------------------------------------------------------------------*/
 .iq-car-shadow {
  -webkit-box-shadow: -10px 20px 18.3px 2.7px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: -10px 20px 18.3px 2.7px rgba(0, 0, 0, 0.06);
  box-shadow: -10px 20px 18.3px 2.7px rgba(0, 0, 0, 0.06);
}
.iq-border-radius{border-radius: 5px !important;}
.iq-test-drive .stm-datepicker-input-icon:after{color: var(--primary-color); top:26px}
.iq-test-drive input{margin-bottom: 25px;}
.iq-test-drive .modal-body{padding: 30px;}
.iq-test-drive .form-submit{margin-top: 5px;}
.iq-test-drive  .msg-body .alert-modal{padding: 11px 15px; font-size: 14px; margin-top: 5px;}
.iq-test-drive  .modal-content .modal-header{display: block;}
.iq-test-drive  .modal-content .modal-header-iconed h3{line-height: normal;}
.iq-sell-a-car .stm_add_car_form .stm_add_car_title_form .title{margin-bottom: 15px;}
@media(max-width:767px){
  .iq-sell-a-car .stm-login-register-form .stm-register-form form .form-group{margin-bottom: 0;}
 }
 @media(max-width:767px){
  .iq-test-drive .msg-body .alert-modal{margin: 30px 15px 0 15px;}
 }
 @media(max-width:580px){
  .iq-test-drive #request-trade-offer-form,.iq-test-drive #get-car-price-form,.iq-test-drive #request-test-drive-form{
    width: 100%;
    left: 0;
    margin-left: 0;
    top: 490px;
  }
 }
 .iq-sell-a-car .form-group.form-checker .stm-single-feature{position: relative;}
 .iq-sell-a-car .stm-add-a-car-login .stm-login-form form h4{color: var(--title-color);}
 .iq-sell-a-car .stm-add-a-car-login .stm-login-form form .form-group{display: block;float: left;
  width: 100%;margin-bottom: 15px;}
 .iq-sell-a-car .stm-add-a-car-login .stm-login-form form input[type="text"] ,.iq-sell-a-car .stm-add-a-car-login .stm-login-form form input[type="password"]{margin-bottom: 15px;background-color:var(--white-color) !important;}
 .iq-sell-a-car .stm-add-a-car-login .stm-login-form form{ background-color: var(--white-light-color); border-radius: 5px; border-top: 4px solid var(--primary-color);
 }
