/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}
p{
  margin-top: 0 !important;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/


/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
:root{
	--clr-primary: #1D31C6;
	--clr-red: #F92323;
}
.hs-video-widget{
	border-radius: 20px;
	overflow: hidden;
}
.hs-error-msgs{
	list-style: none;
	color: red;
}
button,
.button,
.hs-button{
	color: var(--clr-primary);
	padding: 18px 20px;
	background: #DEE8FF;
	border-radius: 6px;
	transition: 0.4s ease;
	font-weight: 600;
	border: none;
	display: inline-block;
}
button.rounded,
.button.rounded,
.hs-button.rounded{
	border-radius: 62px !important;
	padding: 18px 30px !important;
	border-width: 1px !important;
}
button.outline-1,
.button.outline-1,
.hs-button.outline-1{
	background: transparent;
	color: var(--clr-primary);
	border: 2px solid var(--clr-primary);
}
button.outline-2,
.button.outline-2,
.hs-button.outline-2{
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}
button:not(.no-hover):hover,
.button:not(.no-hover):hover,
.hs-button:not(.no-hover):hover{
	background: var(--clr-primary);
	border-color: var(--clr-primary);
	color: #fff;
	border-radius: 6px;
}
button.style-2,
.button.style-2,
.hs-button.style-2{
	background: var(--clr-primary);
	color: #fff;
	border: 2px solid var(--clr-primary);
}

button:not(.no-hover).style-2:hover,
.button:not(.no-hover).style-2:hover,
.hs-button.style-2:not(.no-hover):hover{
	background: transparent;
	color: var(--clr-primary);
}
button.red-1,
.button.red-1,
.hs-button.red-1{
	background: var(--clr-red);
	color: #fff;
	border: 2px solid var(--clr-red);
}
button.red-1:not(.no-hover):hover,
.button.red-1:not(.no-hover):hover,
.hs-button.red-1:not(.no-hover):hover{
	background: #DEE8FF;
	border-color: #DEE8FF;
	color: var(--clr-primary);
}
button.red-outline-1,
.button.red-outline-1,
.hs-button.red-outline-1{
	background: #DEE8FF;
	color: #fff;
	border: 2px solid var(--clr-red);
}
button.red-outline-1:not(.no-hover):hover,
.button.red-outline-1:not(.no-hover):hover,
.hs-button.red-outline-1:not(.no-hover):hover{
	background: var(--clr-red);
	border-color: var(--clr-red);
}
button.red-outline-2,
.button.red-outline-2,
.hs-button.red-outline-2{
	background: transparent;
	color: #fff;
	border: 2px solid var(--clr-red);
}
button.red-outline-2:not(.no-hover):hover,
.button.red-outline-2:not(.no-hover):hover,
.hs-button.red-outline-2:not(.no-hover):hover{
	background: var(--clr-red);
	border-color: var(--clr-red);
}
input:not([type="checbox"]):not([type="radio"]):not(.hs-button){
	padding: 16px 14px;
	border-radius: 6px;
	background: rgba(255,255,255,0.1);
	border: 1px solid #fff;
	color: #fff;
	width: 100%;
}
ul.simple-list{
  padding-left: 18px;
}
ul.simple-list > li:not(:last-child){
  margin-bottom: 17px;
}
ul.primary-list{
	list-style: none;
}
ul.primary-list > li{
	position: relative;
	padding-left: 25px;
	margin-bottom: 20px;
}
ul.primary-list > li::before{
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--clr-primary);
	position: absolute;
	left: 0;
	top: 8px;
}
ul[role="list"]{
  padding-left: 20px;
	font-size: inherit;
}
ul.white > li::marker{
  color: #fff;
}
@media(min-width: 768px){
	h3{
		font-size: 24px;
	}
}
@media(max-width: 767px){
	h1{
		font-size: 35px !important;
	}
	h2{
		font-size: 30px !important;
	}
}
a.meanmenu-reveal{display:none}
.mean-container .mean-bar {
    background: var(--clr-primary);
    float: left;
    min-height: 60px;
    padding: 26px 0 0;
    position: relative;
    width: 100%;
    z-index: 999999;
}
.mean-container a.meanmenu-reveal{width:22px;height:22px;padding:18px;top:0;right:0;cursor:pointer;color:#fff;text-decoration:none;font-size:16px;text-indent:-9999em;line-height:22px;font-size:1px;display:block;font-family:Arial,Helvetica,sans-serif;font-weight:700;float: right;}
.mean-container a.meanmenu-reveal span{display:block;background:#fff;height:3px;margin-top:3px}
.mean-container .mean-nav{float:left;width:100%;background:#0c1923}
.mean-container .mean-nav ul{padding:0;margin:0;width:100%;list-style-type:none}
.mean-container .mean-nav ul li {
  background: #f8f8f8 none repeat scroll 0 0;
  float: left;
  position: relative;
  width: 100%;
  border-top: 1px solid#ddd;
}
.mean-container .mean-nav ul li a {
	background: #f8f8f8 none repeat scroll 0 0;
	color: #666666;
	display: block;
	float: left;
	font-size: 14px;
	margin: 0;
	padding: 1em 5%;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	width: 90%;
	font-weight: bold;
}
.mobile-menu-area {
  background: #262626;
}
.mean-container .mean-nav ul li li a {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0.75;
  padding: 1em 10%;
  text-shadow: none !important;
  visibility: visible;
  width: 80%;
  font-weight: normal;
  text-transform: capitalize;
  color: #444;
}
.mean-container .mean-nav ul li.mean-last a{border-bottom:0;margin-bottom:0}
.mean-container .mean-nav ul li li li a{width:70%;padding:1em 15%}
.mean-container .mean-nav ul li li li li a{width:60%;padding:1em 20%}
.mean-container .mean-nav ul li li li li li a{width:50%;padding:1em 25%}
.mean-container .mean-nav ul li a:hover {
  background: #f8f8f8 none repeat scroll 0 0;
  color: #F47E1E;
}
.mean-container .mean-nav ul li a.mean-expand{
	width:100%;
	height: 15px;
    margin-top: 1px;
    padding: 12px !important;
	text-align:right;
	position:absolute;
	right:0;top:0;
	z-index:2;
	font-weight:700;
	background:rgba(255,255,255,.1);
	border:0!important;
	background: #F8F8F8;
	}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #f8f8f8;
}
.mean-container .mean-push{width:100%;padding:0;margin:0;clear:both}
.mean-nav .wrapper{width:100%;padding:0;margin:0}
.mean-container .mean-bar,.mean-container .mean-bar *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.mean-remove{display:none!important}
.mean-container .mean-bar::after {
  color: #ffffff;
  content: "MENU";
  font-size: 21px;
  left: 5%;
  position: absolute;
  top: 12px;
}


/* -------------------------------
39. Mobile menu
----------------------------------*/
.mean-container .mean-bar::after {
  display: none;
}
.mean-container .mean-nav ul li a:hover {
	color: #0762f8;
	border-radius: 0;
}
.mean-container a.meanmenu-reveal span {
  background: #fff;
}
.mobile-menu-area {
  background: #fff none repeat scroll 0 0;
}
.mean-container .mean-nav ul li a {
  background: #fff;
  color: #444;
  display: block;
}
.mean-container .mean-nav ul li a.mean-expand {
  background: none;
  top: -4px;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: none;
}
.mean-container .mean-nav ul li {
  background: #444;
}
.mean-container .mean-nav ul li li a {
  color: #151948;
  opacity: .90;
  border-top: 0;
}
.mean-container a.meanmenu-reveal {
  color: #fff;
}
.meanmenu-reveal.meanclose:hover {
  color: #fff !important;
}
.mean-container a.meanmenu-reveal:hover span {
  background: #fff;
}
.mean-container .mean-bar::before {
	color: #fff;
	content: url('https://set2close.io/hubfs/logo.svg');
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
/*============================
	header-area-start
==============================*/
.header__skip{
  opacity: 0;
	position: absolute;
}
.mobile-menu-logo.text-center {
    padding: 20px 0;
}
.mobile-menu-logo.text-center img {
    width: auto;
}
.mobile-menu.mean-container {
		overflow: hidden;
}
nav.zomia_menu {
    text-align: center;
}
.zomia_nav_manu {
    background: transparent;
    transition: .5s;
    margin-bottom: 0;
    z-index: 999;
    position: relative;
    margin-bottom: -90px;
}
.zomia_nav_manu.style-three {
    padding: 15px 0;
}
.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #fff !important;
    transition: .5s;
}
/* petech Menu Css*/
.zomia_menu ul {
    text-align: center;
    list-style: none;
    display: inline-block;
}
.zomia_menu>ul>li {
 display: inline-block;
 position: relative;
}
.zomia_menu > ul > li > a {
    display: block;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin: 30px 15px;
    font-size: 18px;
}
.zomia_menu ul li:last-child a {
 margin-right: 0px;
}
.zomia_menu>ul>li.current>a {
 color: #43baff;
}
.white .zomia_menu>ul>li.current>a {
 color: #fff;
}
/* sub menu style */
.zomia_menu ul .sub-menu {
    position: absolute;
    left: 0;
    top: 130%;
    text-align: left;
    background: #fff;
    margin: 0;
    z-index: 1;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}
.zomia_menu ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    border-radius: 0 0 5px 5px;
    z-index: 9;
}
.zomia_menu ul .sub-menu li {
 position: relative;
}
.sub-menu li a {
    display: block;
    padding: 16px 20px;
    width: 273px;
    margin: 0;
    line-height: 1.3;
    letter-spacing: normal;
    font-size: 14px;
    color: #6e7673;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    transition: .1s;
    visibility: inherit !important;
    border-bottom: 1px solid #ddd;
}
a.added-new-demo:after {
    margin-left: 5px;
    content: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.8402 0.996255L6.38589 6.82894C6.33523 6.88317 6.27508 6.92619 6.20887 6.95554C6.14265 6.98489 6.07168 7 6 7C5.92832 7 5.85735 6.98489 5.79113 6.95554C5.72492 6.92619 5.66477 6.88317 5.61411 6.82894L0.159841 0.996255C0.0574964 0.88681 0 0.738371 0 0.583592C0 0.428814 0.0574964 0.280375 0.159841 0.17093C0.262185 0.0614851 0.400994 0 0.54573 0C0.690467 0 0.829276 0.0614851 0.93162 0.17093L6 5.59168L11.0684 0.17093C11.1191 0.116738 11.1792 0.0737513 11.2454 0.0444231C11.3116 0.0150948 11.3826 0 11.4543 0C11.5259 0 11.5969 0.0150948 11.6631 0.0444231C11.7293 0.0737513 11.7895 0.116738 11.8402 0.17093C11.8908 0.225122 11.931 0.289456 11.9585 0.360261C11.9859 0.431066 12 0.506954 12 0.583592C12 0.660231 11.9859 0.736119 11.9585 0.806924C11.931 0.877728 11.8908 0.942063 11.8402 0.996255Z" fill="white"/></svg>');
    opacity: 1;
    color: #fff;
}
.header-search-button {
    text-align: right;
}
.search-box-btn.search-box-outer {
    display: inline-block;
}
.header-donate-btn {
    display: inline-block;
}
.header-social-icon {
    color: #fff;
    display: inline-block;
    margin-right: 15px;
}
.header-social-icon a {
    color: #fff;
}
.header-search-button {
    text-align: right;
}
.header-donate-btn {
    display: inline-block;
}
.header-donate-btn a {
    display: inline-block;
    color: #fff;
    font-size: 17px;
	transition:0.3s;
}
.header-donate-btn a.header-btn {
    color: #fff;
    background: inherit;
    border: 1px solid #fff;
    padding: 9px 35px;
    vertical-align: middle;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    border-radius: 30px;
    transition: 0.3s;
}
.sub-menu li a:hover {
    color: #fff;
    background: var(--clr-primary);
}
.header-donate-btn a:hover {
    background: #fff;
    border-color: #fff;
    color: #5f4ff8;
}
/*<!-- ============================ -->
<!-- Start  sticky-nav  Css -->
<!-- ============================== -->*/
.sticky-nav {
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    position: fixed !important;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    transition: 0.5s !important;
    background: var(--clr-primary) !important;
    z-index: 9999 !important;
    animation-name: slideInDown;
}
.sticky-nav.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-nav .header-menu ul li a {
    color: #fff!important;
}
.sticky-nav a.main_sticky {
    display: inline-block !important;
}
.sticky-nav .header-logo a {
    display: none;
}
.sticky-nav ul.sub-menu li a {
    display: inline-block;
    color: #6e7673;
    transition: .5s;
    width: 273px;
}
.sticky-nav .header-con i {
    color: #fff;
}
.header-menu ul .sub-menu li {
    display: block;
    margin-right: 0;
    transition: .5s;
}
.sticky-nav ul.sub-menu li a:hover {
	background: var(--clr-primary);
	color: #fff;
}
.chart {
  position: absolute;
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  margin: -225px 0 0 -225px;
}
.pieTip {
  position: absolute;
  float: left;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 18px 6px;
  border-radius: 2px;
  background: rgba(255,255,255,.97);
  color: #444;
  font-size: 19px;
  text-shadow: 0 1px 0 #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .06em;
  box-shadow: 0 0 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.5);
  -webkit-transform: all .3s;
     -moz-transform: all .3s;
      -ms-transform: all .3s;
       -o-transform: all .3s;
          transition: all .3s;
  pointer-events: none;
}
.pieTip::after {
      position: absolute;
      left: 50%;
      bottom: -6px;
      content: "";
      height: 0;
      margin: 0 0 0 -6px;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent;
      border-top: 6px solid rgba(255,255,255,.95);
      line-height: 0;
}
.chart path { cursor: pointer; }

/*============================
	header-area-end
==============================*/
 
/*<!-- =========================== -->
<!-- Start  section-title Css -->
<!-- =============================-->*/
.section-title {
    text-align: center;
    margin-bottom: 55px;
}
.sub-title p {
    font-size: 16px;
}
.sub-title h5 {
    color: #5a49f8;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 15px 0px;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.sub-title h5::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 0;
    left: -30px;
    margin: 0;
    height: 5px;
    width: 20px;
    background: #CDC8FD;
    border-radius: 5px;
}
.sub-title h5::after {
    position: absolute;
    content: "";
    top: 10px;
    right: 0;
    left: -40px;
    margin: 0;
    height: 5px;
    width: 5px;
    background: #CDC8FD;
    border-radius: 5px;
}
.sub-title h3 {
    font-size: 42px;
    margin-bottom: 0px;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 600;
    color: #1d2124;
}
.sub-title h3 span {
    font-weight: 600;
}
.sub-title h5 span::before {
    position: absolute;
    content: "";
    top: 10px;
    right: -170px;
    left: 0px;
    margin: auto;
    height: 5px;
    width: 20px;
    background: #CDC8FD;
    border-radius: 5px;
}
.sub-title h5 span::after {
    position: absolute;
    content: "";
    top: 10px;
    right: -205px;
    left: 0;
    margin: auto;
    height: 5px;
    width: 5px;
    background: #CDC8FD;
    border-radius: 5px;
}
.sub-title h2 {
    font-size: 39px;
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 600;
    color: #1d2124;
}
.sub-title h2 span {
    font-weight: 600;
}
/*<!-- ========================== -->
<!-- Start  slider-area Css -->
<!-- ============================ -->*/
.slider-area {
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 900px;
}
.single-slider-box {
    position: relative;
    left: -80px;
}
.slider-thumb {
    left: -200px;
    position: relative;
}
.slider-thumb img {

}
.slide-title h1 {
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    line-height: 70px;
    margin: 25px 0 17px;
}
.slider-box {
    position: relative;
}
.slider-img {
    float: left;
    margin: -4px 15px 0 0;
}
.slider-text h2 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.slide-title p {
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 35px 0;
}
.slider-button a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    background: rgb(54, 186, 254);
    padding: 15px 40px;
    border-radius: 30px;
    transition: .5s;
}
.slider-button a:hover{
    background: #0092FF;
    color: #fff;
}
.shap-img {
    position: absolute;
    top: -93px;
    left: 120px;
}
.shaps-img {
    position: absolute;
    top: -112px;
    right: 125px;
}
.shapes-imge {
    position: absolute;
    top: 10px;
    right: -95px;
}
/*<!-- ========================== -->
<!-- Start  service-area Css -->
<!-- ============================ -->*/
.service-area {
    padding: 70px 0px 65px 0px;
}
.service-area.service-breadcumb {
    padding: 100px 0 60px 0;
}
.service-area .section-title {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}
.service-title-shape-thumb {
    position: absolute;
    top: -70px;
    right: 225px;
    z-index: -1;
}
.single-service-box {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.service-number span {
    position: relative;
    color: #fff;
    font-size: 37px;
    font-weight: 600;
    display: block;
    z-index: 1;
    margin: 35px 0 40px;
}
.service-numbers span {
    position: relative;
    color: #fff;
    font-size: 37px;
    font-weight: 600;
    display: block;
    z-index: 1;
    margin: 35px 0 40px;
}
 .service-shape {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    text-align: center;
}
.service-title h2 {
    margin: 25px 0 9px 0;
    font-size: 24px;
    color: #1d2124;
    line-height: 1.2;
    font-weight: 600;
    transition: .5s;
}
.service-title h2:hover{
    color: #5a49f8;
}
.service-title p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #646464;
}
.service-number.upper {
    position: relative;
}
.service-number.upper::before {
    position: absolute;
    content: "";
    top: 37px;
    right: -160px;
    background: url(https://set2close.io/hubfs/steps-1.svg);
    height: 40px;
    width: 240px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.service-numbers.upper {
    position: relative;
}
.service-numbers.upper::before {
    position: absolute;
    content: "";
    top: 6px;
    right: -155px;
    background: url(https://set2close.io/hubfs/steps-2.svg);
    height: 40px;
    width: 240px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*<!-- ============================================================== -->
<!-- Start  about-area   Css -->
<!-- ============================================================== -->*/
.about-area {
    padding: 94px 0px 60px 0px;
    background: #FAFAFA;
}
.about-thumb-inner {
    z-index: 999 !important;
}
.about-shap {
    right: 114px;
    position: absolute;
    top: 0;
}
.about-thumb {
    position: relative;
    top: 35px;
    z-index: 1;
}
.abouts-shap {
    position: absolute;
    top: 0;
    z-index: -1;
}
.about-area .section-title {
    text-align: left;
}
.about-area .sub-title h5 {
    margin-left: 40px;
}
.about-area .sub-title p {
    width: 100%; 
}
.icon-box {
    margin: 0 25px 0 0;
}
.icon-title {
    margin-bottom: 35px;
}
.icon-box i {
    font-size: 47px;
    color: #5a49f8;
    display: inline-block;
    text-align: center;
    position: relative;
}
.icon-title h2 {
    color: #232323;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.icon-title p {
    color: #646464;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}
/*<!-- ============================================================== -->
<!-- Start  about-area.style-one  Css -->
<!-- ============================================================== -->*/
.about-area.style-one {
    padding: 100px 0px 63px 0px;
    background: #fff;
}
.about-area.style-one .section-title {
    margin-bottom: 57px;
}
.about-area.style-one .icon-box i {
    color: #fff;
    display: inline-block;
    text-align: center;
    background: #FF930E;
    height: 25px;
    width: 25px;
    transition: .5s;
    line-height: 25px;
    font-size: 12px;
    border-radius: 100%;
    margin: 10px 0 40px 0;
}
.about-content{
  
	display: flex;
	flex-direction: row;
}
.about-content:hover .icon-box i{
    background: #5A49F8;
}
/*<!-- ============================================================== -->
<!-- Start  breadcumb-area  Css -->
<!-- ============================================================== -->*/
.breadcumb-area {
    background: url(assets/images/bg3-1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 175px 0 145px;
}
.breacumb-content {
    text-align: center;
}
.breadcumb-title h1 {
    font-size: 49px;
    margin-bottom: 14px;
    margin-top: 0;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}
.breadcumb-content-text a {
    display: inline-block;
    margin: 0 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
.breadcumb-content-text a i {
    display: inline-block;
    font-size: 18px;
    margin: 0 12px;
}
/*<!-- ============================================================== -->
<!-- Start feature-area  Css -->
<!-- ============================================================== -->*/
.feature-area {
    padding: 95px 0px 70px 0px;
    background: #FAFAFA;
}
.single-feature-box {
    padding: 27px 30px 23px;
    text-align: center;
    position: relative;
    border-radius: 7px;
    margin-bottom: 30px;
    transition: .5s;
    margin-right: 5px;
}
.single-feature-box:hover{
    box-shadow: 2px 10px 50px rgb(158 158 158 / 43%);
}

.shape-imgss {
    top: 45px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    position: absolute;
}
.shape-imgss img {
    border-radius: 100%;
}
.feature-title h2 {
    margin: 10px 0 10px;
    font-size: 22px;
    padding: 0;
    color: #1d2124;
    text-transform: capitalize;
    transition: .5s;
}
.feature-title:not(.no-hover) h2:hover{
    color: #5a49f8;
}
.feature-title:not(.no-hover) p {
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
/*<!-- ============================================================== -->
<!-- Start call-do-action Css -->
<!-- ============================================================== -->*/
.call-do-action {
    background: url(assets/images/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.call-do-action .section-title {
    text-align: left;
    margin-bottom: 30px;
}
.call-do-action .sub-title h3 {
    color: #fff;
}
.call-do-action .sub-title p {
    color: #fff;
    width: 100%;
}
.singles-calls-do-boxs {
    margin: 20px 0 30px;
}
.call-do-action-thumb {
    position: relative;
    z-index: 1;
    margin-left: 130px;
}
.call-shap {
    position: absolute;
    bottom: 21px;
    left: -66px;
    z-index: -1;
}
.call-do-button a {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    background: #36BAFE;
    padding: 14px 42px;
    border-radius: 30px;
    transition: .5s;
}
.call-do-button a:hover{
    color: #36BAFE;
    background: #fff;
}
.call-do-button a i {
    margin-left: 5px;
    display: inline-block;
}
/*<!-- ============================================================== -->
<!-- Start bg-bar  Css -->
<!-- ============================================================== -->*/
.testimonial-area {
    padding: 100px 0px 80px 0px;
    background: url(assets/images/map-2.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.testimonial-area .section-title {
    text-align: left;
    margin-bottom: 35px;
}
.testimonial-area .sub-title p {
    width: 100%;
}
.testimonial-area .sub-title p {
    margin: 26px auto 20px;
}
.testimonial-area .sub-title h5 {
    margin-left: 42px;
}
.single-test-box {
    margin-top: 70px;
}
.testi-button a {
    display: inline-block;
    background: linear-gradient(to right, #533efe, #740fd6);
    color: #fff;
    padding: 13px 35px;
    font-size: 18px;
    font-weight: 600;
    transition: .5s;
    border-radius: 30px;
}
.testi-button a:hover{
    background: linear-gradient(to left, #533efe, #740fd6);
    color: #fff;
}
.testi-left-box {
    display: block;
    box-shadow: 2px 10px 50px rgb(158 158 158 / 14%);
    background: #fff;
    padding: 30px 20px 15px 33px;
    border-radius: 4px;
    margin: 0 50px 30px 0;
    position: relative;
    left: -70px;
    transition: .5s;
}
.testi-left-box.upper {
    left: 0px;
}
.upper.testi-left-box:hover{
    left: 10px;
}
.testi-left-box:hover{
    left: -50px;
}
.testi-tmb {
    float: left;
    margin-right: 20px;
}
.testi-shap {
    position: absolute;
    top: 30px;
    right: 40px;
}
.testi-title h2 {
    color: #232323;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.testi-title p {
    font-size: 16px;
    color: #646464;
    font-weight: 400;
    line-height: 28px;
}
/*<!-- ============================================================== -->
<!-- Start team-area  Css -->
<!-- ============================================================== -->*/
.team-area {
    padding: 95px 0px 0px 0px;
}
.team-area .sub-title h5 span::before {
    right: -195px;
}
.team-area .sub-title h5 span::after {
    right: -227px;
}
.team-single-box {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 0 60px rgb(0 0 0 / 10%);
    padding: 20px;
    transition: .5s;
    margin-bottom: 30px;
}
.team-single-box:hover .team-thumb::before{
    opacity: 0.3;
}
.team-single-box:hover{
    margin-top: -12px ;
}
.team-thumb {
    position: relative;
}
.team-thumb::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #740FD7;
    content: "";
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    opacity: 0;
}
.team-thumb img {
    width: 100%;
}
.team-title {
    text-align: center;
    margin: 18px 0 0;
}
.team-title h3 a {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    color: #333;
}
.team-title span {
    font-size: 14px;
    text-transform: capitalize;
    color: #5a49f8;
    float: none;
    text-align: center;
    font-weight: 500;
}
.team-icon {
    position: absolute;
    right: -50px;
    width: 55px;
    background: #fff;
    padding: 12px 0 12px 15px;
    top: 37%;
    transform: translateY(-50%);
    transition: .5s;
}
.team-single-box:hover .team-icon{
    right: 10px;
}
.team-icon ul{
   display: inline-block; 
}
.team-icon ul li {
    list-style: none;
    display: block;
    margin: 5px 0;
}
.team-icon ul li a {
    display: inline-block;
    color: #5a49f8;
}
/*<!-- ============================================================== -->
<!-- Start  brand-area  Css -->
<!-- ============================================================== -->*/
.brand-area {
    padding: 52px 0px 90px 0px;
}
/*<!-- ============================================================== -->
<!-- Start  faq-area  Css -->
<!-- ============================================================== -->*/

.faq-area .sub-title h5 span::before {
    right: -258px;
}
.faq-area .sub-title h5 span::after {
    right: -296px;
}
.testimonial-single-thumb img {
    width: 100%;
}
.faq-area .accordion {
    margin: 33px 0 auto 0px;
    border-top: 1px solid #d9e5e8;
    list-style: none;
}
.faq-area .accordion li {
    position: relative;
    margin-bottom: 15px;
}
.faq-area .accordion li:has(.active){
  background: #E7F1FF;
}
.faq-area .accordion a {
    width: 100%;
    display: block;
    border: none;
    outline: 0;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    line-height: 3;
    font-size: 18px;
    text-indent: 40px;
    user-select: none;
    color: #1d2124;
    margin-bottom: 20px;
    padding: 8px 0;
}
.faq-area .accordion a:hover {
    text-decoration: underline;
    color: var(--clr-primary);
}
.faq-area .accordion li a.active {
    color: #1d2124;
    padding: 6px 0;
    border-radius: 5px;
    font-size: 18px;
    transition: .5s;
}
.faq-area .accordion li a.active:hover{
    color: var(--clr-primary);
}
.faq-area .accordion a.active::before{
    display: none;
}
.faq-area .accordion .description {
    display: none;
    padding: 10px 25px 30px;
    color: #646464;
    font-size: 16px;
}
.accordion li a::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="22" width="22" viewBox="0 0 448 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="%23181818" d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z"/></svg>');
    position: absolute;
    left: -28px;
    top: 12px;
}
.accordion  li a.active::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="22" width="22" viewBox="0 0 448 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="%23181818" d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg>');
}
/*<!-- ============================================================== -->
<!-- Start  map-area Css -->
<!-- ============================================================== -->*/
.map-area .row {
    overflow: hidden;
}
/*<!-- ============================================================== -->
<!-- Start contacts-section Css -->
<!-- ============================================================== -->*/
.contacts-section {
    padding: 0px 0px 30px 0px;
}
.row.section {
    box-shadow: 8px 9px 35px 0px rgb(145 145 145 / 24%);
    padding: 59px 59px 59px 59px!important;
    background: #fff;
    margin-top: -130px;
    position: relative;
}
.contacts-icon {
    float: left;
}
.single-contacts-boxs {
    padding: 65px 0 48px 39px;
    margin: 0px 29px 0px 0px;
    background: #7B1BD7;
    border-radius: 5px;
}
.left-boxs {
    margin-bottom: 22px;
}
.contacts-icon ul li{
    display: inline-block;
    list-style: none;
}
.contacts-icon ul li i {
    display: inline-block;
    margin: 0px 25px 15px 0;
    font-size: 47px;
    float: left;
    color: #fff;
    position: relative;
    top: 5px;
}
.contacts-tex h2 {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px 0;
}
.contacts-tex p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 28px;
}
.contacts-titles h2 {
    font-size: 32px;
    margin: 0 0 34px;
    color: #1d2124;
    line-height: 1.2;
    font-weight: 600;
}
.form-section select,
.form-section input:not(.hs-button) {
    width: 100% !important;
    height: 54px;
    padding-left: 20px;
    background: #fff;
    border-radius: 3px;
    transition: .5s;
    border: 1px solid #EEECFE !important;
}
.form-section textarea {
    width: 100%;
    padding-left: 20px;
    padding-top: 15px;
    border: 1px solid #EEECFE;
    height: 150px;
    outline: 0;
    transition: .5s;
    background: #fff;
    margin-top: 7px;
}
.form-section button {
    background: linear-gradient(to right, #533efe, #740fd6);
    width: 100%;
    padding: 14px 39px;
    border-radius: 5px;
    color: #fff;
    border: inherit;
    font-size: 18px;
    font-weight: 600;
}

/*<!-- ============================================================== -->
<!-- Start  blog-area  Css -->
<!-- ============================================================== -->*/

.blog-area .sub-title h5 span::before {
    right: -130px;
}
.blog-area .sub-title h5 span::after {
    right: -167px;
}
.blog-single-box {
    overflow: hidden;
    text-align: left;
    background: #fff;
    border: 0;
    box-shadow: 0px 8px 60px rgb(243 242 255);
    border-radius: 7px;
    transition: .5s;
    margin-bottom: 30px;
}
.blog-content {
    padding: 0 25px;
}
.blog-single-box:hover{
   box-shadow: 0 2px 4px #0003; 
}
.blog-thumb{
    position: relative;
}
.blog-single-box:hover .blog-thumb::before{
   transform: skew(45deg) translateX(100%);
    z-index: 2; 
    opacity: 1;
}
.blog-single-box:hover .blog-thumb::after{
   transform: skew(45deg) translateX(-120%);
    opacity: 1;
}
.blog-thumb::before{
    background-image: -webkit-linear-gradient( -9deg , #533EFF 50%, #740FD7 97%);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all 0.6s ease 0s;
    width: 200%;
}
.blog-thumb::after{
    background-image: -webkit-linear-gradient( -9deg , #533EFF 50%, #740FD7 97%);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all 0.6s ease 0s;
    width: 200%;
}
.blog-thumb img {
    width: 100%;
}
.blog-title {
    padding: 22px 22px 28px;
}
.blog-title a {
    display: inline-block;
    font-size: 16px;
}
.blog-title span {
    position: relative;
    margin-right: 40px;
    font-size: 16px;
    color: #646464;
}
.blog-title span:hover{
    color: #5f4ff8;
}
.blog-title span i {
    display: inline-block;
    color: #5f4ff8;
    margin-right: 5px;
}
.blog-title span::before {
    content: "";
    background: #e0e1fc;
    width: 8px;
    height: 8px;
    position: absolute;
    right: -26px;
    top: 6px;
    border-radius: 50%;
}
.blog-title h2 a {
    font-size: 22px;
    margin: 20px 0 0;
    line-height: 1.2;
    position: relative;
    border-top: 1px solid #f0effe;
    padding-top: 20px;
    display: inline-block;
    color: #1d2124;
    font-weight: 600;
    transition: .5s;
}
.blog-title h2 a:hover{
    color: #5A49F8;
}
.blog-title p {
    margin: 16px 0 15px;
    color: #646464;
    font-size: 16px;
    line-height: 28px;
}
.blog-button a {
    color: var(--clr-primary);
    display: inline-block;
    position: relative;
    font-weight: 500;
    transition: .5s;
    text-transform: capitalize;
    font-size: 16px!important;
}
.blog-button a i {
    display: inline-block;
    transition: .5s;
    font-weight: 900;
}
.blog-button a:hover i{
    margin-left: 12px;
}
.blog-button a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85px;
    background: #8277f9;
    height: 2px;
    transition: .3s;
}
.top-btn {
    position: absolute;
    top: 20px;
    left: 20px;
}
.top-btn a {
    display: inline-block;
    background: #5f4ff8;
    padding: 0 16px;
    line-height: 19px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
}

.blog-area.upper .blog-thumb img {
    width: 100%;
}
/*<!-- ============================================================== -->
<!-- Start counter-area  Css -->
<!-- ============================================================== -->*/
.counter-area {
    padding: 95px 0px 70px 0px;
}
.counter-area .sub-title h5 span::after {
    right: -230px;
}
.counter-area .sub-title h5 span::before {
    right: -197px;
}
.single-counter-box {
    text-align: center;
}
.counter-title h1 {
    color: #ff3838;
    font-size: 52px;
    font-weight: 600;
}
.counter-title h1.come {
    color: #5A49F8 !important;
}
.counter-title h1.color {
    color: #24B5FF !important;
}
.counter-title h4 {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 9px;
    font-weight: 500;
    letter-spacing: 0;
    color: #646464;
}
/*<!-- ============================================================== -->
<!-- Start  footer-area  Css -->
<!-- ============================================================== -->*/
.footer-area {
    padding: 165px 0px 25px 0px;
    background: url(assets/images/footer-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.row.fbg {
    padding: 30px 37px 7px 40px;
    background: #fff;
    border-radius: 10px;
}
.subscrib h2 {
    color: #1D2124;
    font-size: 27px;
    font-weight: 600;
    line-height: 34px;
}
.footer-area .form_box input::placeholder {
    color: #1d2124!important;
}
.footer-area .form_box input {
    font-size: 16px;
    height: 52px;
    padding: 5px 20px;
    width: 65%;
    background: #EEECFE;
    margin: auto;
    border: 0;
    border-radius: 5px;
    position: relative;
    top: 8px;
    font-weight: 600;
}
.footer-area .form_box input::placeholder {
    color: #7A8281;
}
.footer-area .form-button {
    padding-left: 16px;
}
.footer-area .form-button button {
    background: #0066ff;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    height: 52px;
    padding: 0 30px;
    margin: 17px 0 0;
    border-radius: 5px;
    text-transform: capitalize;
    border: 1px solid #0066ff;
    position: absolute;
    right: 10px;
    top: -10px;
    transition: .5s;
}
.footer-area .form-button button i {
    display: inline-block;
    margin-left: 5px;
}
.footer-area .form-button button:hover{
    background: #740FD6;
    border: 1px solid #740FD6;
}
.row.pad {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #fff;
    padding: 80px 0px 60px 0px;
}
.footer-text p {
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: #fff;
    margin: 25px 0;
}
.footer-icon ul {
    margin-top: 26px;
}
.footer-icon ul li {
    list-style: none;
    display: inline-block;
    margin-right: 6px;
}
.footer-icon ul li a {
    display: inline-block;
    color: #fff;
    transition: .5s;
    background: #8776FA;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
}
.footer-icon ul li a:hover {
    color: #8371F9;
    background: #fff;
}
.footer-title h5 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 29px;
}
.footers-icon ul li {
    list-style: none;
    margin-top: 14px;
}
.footers-icon ul li a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 16px;
    transition: .5s;
}
.footers-icon ul li a:hover {
    color: rgb(54, 186, 254);
}
.footers-icon ul li a i {
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
}
.social-icon ul li {
    list-style: none;
}
.social-icon ul li i {
    height: 45px;
    width: 45px;
    background: #7863FB;
    color: #fff;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    font-size: 20px;
    float: left;
    margin-top: 5px;
    margin-right: 25px;
}
.social-tex {
    padding-bottom: 5px;
}
.social-tex span {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}
.social-tex p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}
.copy-right-area {
    text-align: center;
    padding: 025px 0px 0px 0px;
}
.copy-right-area span {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
}
/*<!-- ============================================================== -->
<!-- Start bg-bar  Css -->
<!-- ============================================================== -->*/
.sideber-search-box {
    margin-bottom: 40px;
    padding: 2px 30px 8px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}
.sideber-box {
    margin-bottom: 40px;
    padding: 35px 30px 35px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}
.bg-bar {
    position: relative;
    z-index: 1;
}
.bg-bar::before {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 88px;
    height: 3px;
    background: #aec6ef;
    content: "";
}
.bg-bar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 18px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #5a49f8;
    -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: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
            transform: translateX(88px);
  }
}
.resent-post-single-box {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 20px;
    margin-bottom: 16px;
}
.blog-thub img {
    width: 100%;
}
.resent-thunb img {
    border-radius: 5px;
    width: 28%;
    float: left;
    margin-right: 12px;
    height: 70px;
}
.resent-title a h3 {
    color: #1d2124;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0;
}
.resent-title a span {
    color: #616161;
}
.resent-post-single-box.two {
    border: none;
    margin: 0;
    padding: 0 0 20px;
}
.catagories-body ul li{
    list-style: none;
    margin-bottom: 10px;
    border-bottom: 1px solid #E8E8E8;
    transition: .5s;
    padding-bottom: 10px;
}
.catagories-body ul li a {
    color: #616161;
    font-size: 16px;
}
.sidebar-search {
    margin-bottom: 30px;
}
.form-control {
    top: 31px;
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: 28px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #949494;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    position: relative;
}
.sideber-search-box button a {
    position: absolute;
    right: 60px;
    top: 50px;
    display: inline-block;
    color: #616161;
    font-size: 18px;
}
.paginationss-title {
    padding-top: 40px;
    text-align: left;
    border-top: 1px solid #e6e6e6;
    margin-top: 0;
    width: 90%;
    position: relative;
    left: 31px;
    margin-bottom: 30px;
}
.paginationss-title ul {
    display: inline-block;
}
.paginationss-title ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}
.paginationss-title ul li a i {
    border: 1px solid #e6e6e6;
    color: #565872;
    display: inline-block;
    font-size: 15px;
    height: 40px;
    line-height: 41px;
    margin: 0 9px 0 0;
    text-align: center;
    width: 40px;
    border-radius: 5px;
}
.paginationss-title ul li a i:hover {
    background: #5F4FF8;
    border-color: #5F4FF8;
    color: #fff;
}
.contact-title h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 35px;
    color: #1d2124;
    position: relative;
}
.sideber-title h3 {
    color: #232323;
    display: block;
    font-size: 21px;
    margin-bottom: 28px;
    padding-bottom: 0;
    position: relative;
    text-transform: capitalize;
}
 .form_box {
    margin-bottom: 15px;
}
.form_box input {
    width: 100%;
    height: 54px;
    padding-left: 20px;
    background: #EEECFE;
    border-radius: 3px;
    transition: .5s;
    border: 1px solid #EEECFE;
}
.form_box textarea {
    width: 100%;
    padding-left: 20px;
    padding-top: 15px;
    border: 1px solid #EEECFE;
    height: 150px;
    outline: 0;
    transition: .5s;
    background: #EEECFE;
    margin-top: 7px;
}
 .form_box input:focus{
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    border-color: #80bdff;
    outline: 0;
}
 .form_box textarea:focus{
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    border-color: #80bdff;
}
 input::placeholder {
    color: #94A9A8;
}
 textarea#massage::placeholder {
    color: #94A9A8;
}
 .form-button {
    text-align: left;
    margin-top: 25px;
}
.blog-area.upper .form-button button {
    padding: 14px 33px;
    display: inline-block;
    background: linear-gradient(to right, #533efe, #740fd6);
    color: #fff;
    text-transform: capitalize;
    transition: .5s;
    border: navajowhite;
    border-radius: 5px;
}
.form-button button:hover{
    background: linear-gradient(to left, #533efe, #740fd6);
    color: #fff;
}
input[type="text"] {
    color: #333;
}
textarea#massage {
    color: #333;
}


/* bounce-animate */
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.bounce-animate2 {
  animation-name: float-bob2;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob2;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob2;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob2;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.bounce-animate3 {
  animation-name: float-bob3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob3;
  -moz-animation-duration: 4s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob3;
  -ms-animation-duration: 4s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob3;
  -o-animation-duration: 4s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.bounce-animate4 {
  animation-name: float-bob4;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob4;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob4;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob4;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
 .bounce-animate5 {
  animation-name: float-bob5;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob5;
  -moz-animation-duration: 6s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob5;
  -ms-animation-duration: 6s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob5;
  -o-animation-duration: 6s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); } }
@-webkit-keyframes float-bob2 {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px); }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px); } }
@-webkit-keyframes float-bob3 {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px); }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes float-bob4 {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px); }
  100% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); } }
@-webkit-keyframes float-bob5 {
  0% {
    -webkit-transform: translateY(-75px);
    transform: translateY(-75px); }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px); }
  100% {
    -webkit-transform: translateY(-75px);
    transform: translateY(-75px); } }
@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/* bounce-animate */    
@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes moveleftbounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveleftbounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
/* rotateme*/
.rotateme {
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/*===========================scroll strat===========================  
 ===========================************===========================  */ 
.scroll-area {
  position: relative;
  z-index: 999;
}
.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  -ms-transition: all 0.9s ease-out 0s;
  -o-transition: all 0.9s ease-out 0s;
  transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}
.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -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;
}
.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.scroll-area .go-top::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    animation: zoomBig 3.25s linear infinite;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
.scroll-area .go-top:focus, .scroll-area .go-top:hover {
  color: #fff;
}
.scroll-area .go-top:focus::before, .scroll-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.scroll-area .go-top:focus i:first-child, .scroll-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.scroll-area .go-top:focus i:last-child, .scroll-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  -ms-transform: translateY(-98%);
  -o-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 50px;
  border-radius: 100%;
}
.top-wrap {
  position: relative;
}
.top-wrap .go-top-button {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    top: 3px;
    z-index: 1;
    background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
	background: rgb(54, 186, 254);
    background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
}
.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}
.top-wrap .go-top-button::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    animation: zoomBig 3.25s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 0.5;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}



/*==================
    Search Popup
===================
***/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0,0,0,0.75);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.search-popup{
    width: 100%;
}
.search-box-btn.search-box-outer {
    display: inline-block;
    background: inherit;
    padding: 4px 10px;
    border-radius: 3px;
    margin-right: 20px;
	transition:0.5s;
}
.search-box-btn.search-box-outer:hover{
    background: #fff;
    border-color: #fff;
}
.search-box-btn.search-box-outer:hover  i{
    color: #5f4ff8;
}
.search-box-btn.search-box-outer i {
    cursor: pointer;
    color: #fff;
	transition:0.5s;
}
.search-active .search-popup{
    transform: translateY(0%);
    margin-top: 0;
}
.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #5a49f8;
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.search-active .search-popup .close-search{
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
.search-popup form{
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin:-35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-active .search-popup form{
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}
.search-popup .form-group{
    position:relative;
    margin:0px; 
    overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
    position:relative;
    display:block;
    font-size:18px;
    line-height: 50px;
    color:#000000;
    height:70px;
    width:100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
    font-weight:500;
    text-transform:capitalize;
}
.search-popup .form-group input[type="submit"], .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #5a49f8;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
    color:#000000;
}
.search-popup .close-search.style-two{
    position: absolute;
    right: 25px;
    left: auto;
    color:#ffffff;
    top:25px;
    margin:0px;
    border:none;
    background:none !important;
    box-shadow:none !important;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.flaticon-multiply:before {
    content: inherit;
}
button.close-search i {
    font-size: 25px;
    color: #fff;
    display: inline-block;
}
span.flaticon-multiply i {
    display: inline-block;
    color: #36BAFE;
}

/*particles js*/
div#particles {
    position: relative;
}

#webcoderskull {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 20px;
    width: 100%;
}
div#particles .slider-area {
    background: inherit;
}