@charset "UTF-8";

/**
*
* -----------------------------------------------------------------------------
*
* Template : logitic - Logistics & Transport WordPress Theme
* Author : rs-theme
* Author URI : http://www.rstheme.com/
*
* -----------------------------------------------------------------------------
*
**/

$bodyFont:        "Plus Jakarta Sans", sans-serif;
$titleFont:       "Outfit", sans-serif;
$titleFont2:      "Outfit", sans-serif;
$menuFont:        $bodyFont;
$bodyColor:       #666666;
$titleColor:      #121315;
$primaryColor:    #F55B1F;
$primaryColorOpacity: rgba($primaryColor, 0.1);
$hovercolor:      #F3F4F7;
$primaryShadow:   $primaryColorOpacity;
$secondaryColor:  #121315;
$titleColorUnit:  #121315;
$whiteColor:      #ffffff;
$footer_contact:  #121315;
$transition:      all 0.3s ease 0s;

// Elementor default column width
body .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1410px;
}

/* ----------------------------------- 
	01. General CSS
-------------------------------------*/

html,
body {
  font-size: 16px;
  color: $bodyColor;
  vertical-align: baseline;
  font-weight:400;
  overflow-x: hidden;
  line-height: 1.75;
  font-family: $bodyFont;
  &.rs-scrollbar {
	overflow: hidden;
  }
}
.hfe-nav-menu__layout-horizontal li.menu-item,
.hfe-nav-menu__layout-horizontal > li.menu-item {
    font-size: medium;
}
/* Icons CSS */
.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i{
    margin-right: 0;
}

// Smooth Scroll
html.lenis,
html.lenis body {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html.rs-scrollbar {
  	overflow: hidden;
}

body.rs-scrollbar {
  	&::-webkit-scrollbar {
		display: none;
  	}
  	-ms-overflow-style: none;
  	scrollbar-width: none;
}

form {
	::placeholder {
		font-size: inherit !important;
	}
}
.cursor-pointer {
	cursor: pointer !important;
}
.elementor-widget-hfe-search-button > .elementor-widget-container {
	position: relative;
}
.overflow-hidden-child > * {
	overflow: hidden;
}
.variable--bg--color > div{
	background: $primaryColor;
}
body .rs-mob-off-content {
	display: none;
	.footer_social {
		li {
			a {
				font-weight: normal;
			}
		}
	}
}
@media (max-width: 1024px) {
    body .rs-mob-off-content {
        display: block;
        margin-top: 30px;
    }
}

.gsap-fixed,
.gsap-fixed-yes {
    .pin-spacer {
		> * {
        	transition: unset !important;
		}
    }
}
.social-primary {
	.elementor-social-icon {
		transition: $transition;
		border-color: #C3C5CB;
		background-color: transparent;
		i {
			transition: $transition;
			color: $titleColor;
		}
		&:hover {
			background-color: $primaryColor;
			border-color: $primaryColor;
			i {
				color: $whiteColor;
			}
		}
	}
}
.social-light {
	.elementor-social-icon {
		transition: $transition;
		border-color: rgba($whiteColor, 0.1);
		background-color: transparent;
		i {
			transition: $transition;
			color: $whiteColor;
		}
		&:hover {
			background-color: $whiteColor;
			border-color: $whiteColor;
			i {
				color: $primaryColor;
			}
		}
	}
}
.primary-color,
.primary-icon-list i {
	color: $primaryColor;
}
.secondary-color,
.secondary-icon-list i {
	color: $secondaryColor;
}
.y-middle {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.y-bottom {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flex-wrap {
	flex-wrap: wrap;
}

// Custom Mouse Cursor
#rs-mouse {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 999999;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s;
    transition: opacity 0.2s ease-in-out 0.5s;
	#cursor-ball {
		position: fixed;
		width: 40px;
		height: 40px;
		border: 1px solid rgba(34, 34, 34, 0.1);
		border-radius: 50%;
		pointer-events: none;
		box-sizing: border-box;
		border-radius: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		z-index: 999999;
		&:after {
			position: absolute;
			content: '';
			left: 50%;
			top: 50%;
			width: 3px;
			height: 3px;
			border-radius: 50%;
			background: $primaryColor;
			transform: translate(-50%);
		}
	}
	@media (max-width: 1024px) {
		display: none;
	}
}

/* Hide scrollbar for IE, Edge and Firefox */

img {
  max-width: 100%;
  height: auto;
}

p {
  margin: 0 0 26px;
}

h1, h2, h3, h4, h5, h6 {
  color: $titleColor;
  margin: 0 0 26px;
  font-family: $titleFont;
  padding: 0;
  letter-spacing: 0;
}

h1 {
  	font-size: 80px;
  	line-height: 94px;
	font-weight: 700;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

h6 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

body a {
  color: $bodyColor;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  outline: none !important;
}

a {
  &:active, &:hover {
	text-decoration: none;
	outline: 0 none;
	color: $titleColorUnit;
  }
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

.primary-color {
	color: $primaryColor;
}

.primary-bg {
	background: $primaryColor;
}
.primary-border-color {
	border-color: $primaryColor;
}
.stork-text{
  -webkit-text-stroke: 1px #02020233;
   color:transparent;
}

::-moz-selection, ::selection {
  background: $titleColorUnit;
  text-shadow: none;
  color: #ffffff;
}

// Switching Color By Class Start
.rs-primary-bg {
	background: $primaryColor;
}
.rs-heading-primary {
	.title {
		color: $primaryColor;
	}
}
.rs-primary-color {
	color: $primaryColor;
}
.rs-hover-primary-link:hover {
	color: $primaryColor;
}
.rs-hover-primary-link-inner a:hover {
	color: $primaryColor !important;
}
.rs-primary-shadow {
	box-shadow: 0px 10px 20px $primaryShadow;
}
.elementor-widget-google_maps {
	iframe {
		outline: none !important;
		background: #f7f7f7;
	}
}
.elementor-social-icon-hover-primary {
	.elementor-social-icons-wrapper {
		a.elementor-social-icon {
			i {
				transition: $transition;
			}
			&:hover {
				i {
					color: $primaryColor;
				}
			}
		}
	}
}
.elementor-social-icon-hover-primary-bg {
	.elementor-social-icons-wrapper {
		a.elementor-social-icon {
			&:hover {
				background: $primaryColor;
				border-color: $primaryColor;
			}
		}
	}
}
.rs-primary-bg-child > * {
	background: $primaryColor;
}
.rs-primary-color-child > * {
	color: $primaryColor;
}
body.home {
	.hide-in-home {
		display: none !important;
	}
}
body:not(.home) {
	.topbar-marquee {
		background-color: transparent !important;
	}
}
.header-shape {
	position: relative;
	background: transparent !important;
	> div {
		z-index: 1;
	}
	&:after {
		z-index: 0;
		clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: $secondaryColor;
	}
	@media screen and (max-width: 767px) {
		&:after {
			clip-path: none;
		}
	}
}
.custom-footer-color,
.footer-copyright-area {
	.hfe-nav-menu  ul li a:hover {
		color: $primaryColor !important;
	}
}
// Switching Color By Class End

.rotated-image {
	.elementor-element {
		.elementor-widget-image {
			transition: $transition;
			&:hover {
				transform: rotate(-2.5deg);
			}
		}
	}
}

.box-shadow {
  box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
}

body {
	.bg-fixed {
		background-attachment: fixed !important;
		background-position: center top !important;
	}

	.bg-top {
		background-position: center top !important;
	}

	.bg-left {
		background-position: bottom left !important;
	}

	.bg-right {
		background-position: top right !important;
	}

	.bg-bottom {
		background-position: center bottom !important;
	}

	.main-contain {
		background-size: cover;
		background-repeat: no-repeat;
	}
  	.clippath-shape {
		clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
	}
	&.rtl {
		.clippath-shape {
			clip-path: polygon(0 50%, 20% 0, 100% 0, 100% 100%, 20% 100%);
		}
	}
}

/* Font Awesome Pre Loded CSS */
.fa, .fab, .fad, .fal, .far, .fas {
	font-family: "Font Awesome 5 Free";
}
@font-face{
  font-family:"Font Awesome 5 Free";
  font-style:normal;
  font-weight:900;
  font-display:block;
  src:url(../webfonts/fa-solid-900.eot);
  src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")
}
.fa,.fas{
  font-family:"Font Awesome 5 Free";
  font-weight:900
}

table {
  th {
	background: $titleColorUnit;
	color: #fff;
	padding: 10px;

	a {
	  color: #fff;
	}
  }

  td {
	padding: 10px;
  }
}


iframe {
  width: 100%;
}

.gray {
  filter: grayscale(100%);
}

.floating-box {
  position: relative;
  z-index: 9;
  top: 160px;
}

.custom-max-width {
  max-width: 800px;
}

.menu-cart-area h2 {
  display: none;
}


.bs-sidebar {
  #wp-calendar th {
	background: $primaryColor;
  }

  table {
	margin-bottom: 0;
  }

  .widget select {
	margin: 0;
  }
}

/* Blog Design */
.rs-blog-grid .pagination-area, .rs-team .pagination-area {
  padding-bottom: 30px;
}

.rs-blog-grid .pagination-area {
  padding-bottom: 84px;
}

.rs-blog {
	.cat_name {
		display: none;
	}

  	.blog-meta .blog-title {
		margin: 0px 0 15px;
		font-weight: 500;
		line-height: 26px !important;

		a {
			color: $titleColor;
			&:hover {
				color: $primaryColor;
			}
		}
  	}

  .blog-slider .blog-meta {
	margin-top: 30px;
	.blog-title {
	  font-size: 18px;
	  font-weight: 600;
	  line-height: 28px;
	}
  }
}

.rs-blog-grid.rs-blog .blog-meta .blog-title {
  line-height: 30px !important;
  font-size: 22px;
}

/* Error Page CSS */

body.error404 .page-error .site-main {
  text-align: center;

  .error-404 {
	text-align: center;
	display: inline-block;
  }
  .page-content{
	.readon{		
		cursor: pointer;
		display: inline-block;
		position: relative;
		transition: all 0.4s;
		padding: 16px 48px 16px 32px;
		font-size: 16px;
		line-height: 28px;
		font-weight: 600;
		color: $titleColor;
		background-color: $whiteColor;
		z-index: 1;
		border-radius: 0px;
		border: 1px solid #D7D7D7;
		&:before{
			content: "\ea6c";
			position: absolute;
			font-family: remixicon !important;
			font-size: 19px;
			top: 18px;
			right: 22px;
			opacity: 1;
		}
		&:hover{
			background: $primaryColor;
			border-color: $primaryColor;
			color: $whiteColor;
			&::before{
				color: $whiteColor;
			}
		}
	}
  }
}

.single {
  h1, h2, h3, h4, h5, h6 {
	clear: none;
  }
}

.bs-sidebar .widget.widget_tag_cloud .tagcloud{
	padding-top: 5px;
}

.rs-footer .widget.widget_calendar .calendar_wrap{
	padding-top: 8px;
}

/* ------------------------------------
    23. Blog Sidebar 
---------------------------------------*/

.bs-sidebar {
    .wp-block-latest-comments,
    ul{
        margin: 0;
        padding: 0;
        list-style: none;
        li {           
            margin-top: 13px;
            padding-top: 13px;
            + li {
                margin-top: 0px;
                padding-top: 0px;
                border-top: 0;                
            }
        }
    }
    .widget_meta,  .widget_pages, .widget_recent_entries, .widget_nav_menu{
        li:first-child{
            margin-top: 0;
            padding-top: 0;
            border:0;
        }
        .sub-menu{
            li:first-child{
                margin-top: 10px;
                padding-top: 10px;
                border-top: 1px solid rgba(0, 0, 0, 0.06); 
            }
        }
    }

    .widget_recent_comments{
        ul{
            li{
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                &:first-child{
                    border-top: none;
                    margin-top: 0;
                    padding-top: 0;
                } 
            }
        }
    }  

    .widget_calendar{
        table{
            caption{
                padding-bottom: 0;
            }
        }
    }
	.wp-block-categories{
		li{
			border-radius: 5px;
			font-size: 17px;
			&:first-child{
				border-top: none;
			}
		}
	}
    .widget_pages{
        ul{
            li{
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                border-bottom: none;
                &:first-child{
                    border-top: none;
                    margin-top: 0;
                    padding-top: 0;
                }

                ul.children{
                    li{
                        &:first-child{
                            &:after{
                               top:9px; 
                           }                            
                        }
                    }
                }
            }
        }
    }
	.widget_archive{
        ul{
            li{
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                border-bottom: none;
                &:first-child{
                    border-top: none;
                    margin-top: 0;
                    padding-top: 0;
                }

                ul.children{
                    li{
                        &:first-child{
                            &:after{
                               top:9px; 
                           }                            
                        }
                    }
                }
            }
        }
    }
}

.comment i {
  color: #999;
  font-size: 12px;
}

.single-post .rs-blog-details {
  .single-content-full ul.unorder-list {
	margin-bottom: 16px;
	margin-left: 20px;
  }

  .bs-meta {
	margin-top: 0px;
	margin-bottom: 18px;
  }
}

.comment-respond .form-submit {
  margin-bottom: 0;
}

.single-post .rs-blog-details .type-post .single-content-full {
  overflow: visible;
}

.flickr-widget ul {
  margin: 0;
  padding: 0;

  li {
	display: inline-block;
	margin: 0 !important;
	border: none !important;
	padding: 2px !important;
	width: 25%;

	a img {
	  width: 100%;
	}
  }
}

.ps-navigation {
  margin-top: 50px;
  margin-bottom: 50px;

  ul {
	margin: 0 !important;
	list-style: none;

	a {
	  text-transform: uppercase;
	  background: transparent;
	  color: #444;
	  border-radius: 3px;
	  font-weight: bold;

	  span {
		display: block;
		font-weight: normal;
		text-transform: capitalize;
		vertical-align: middle;
	  }

	  i {
		vertical-align: text-top;
	  }

	  &:hover {
		color: $titleColorUnit;
	  }
	}

	li {
	  &.next {
		float: right;
	  }

	  &.prev {
		float: left;
	  }

	  &:nth-child(2) {
		text-align: right;
	  }
	}
  }
}

.wp-block-cover-image .wp-block-cover__inner-container {
  color: #ffffff !important;
}

.wp-block-cover .wp-block-cover__inner-container {
  color: #ffffff !important;

  p {
	color: #ffffff !important;

	a {
	  color: #ffffff !important;
	}
  }
}
.rs-breadcrumbs-meta-elementor li.rs-category ul li a{
	text-transform: capitalize;
}
.single-post .single-posts-meta li {
  font-weight: 500;
}

#rs-footer .footer-bottom{
	border-top: 1px solid #0606060a;
    text-align: center;
    padding: 20px 0;
}

.breadcrumbs-meta-rstheme{
	li+li{
		position: relative;
	}
	.single-posts-meta{
		padding: 0;
		margin: 0;
	}
}

/* ------------------------------------
	22. Blog Details
  ---------------------------------------*/

.rs-blog-details {
  .type-post {
	margin-bottom: 0px;

	.single-content-full {
	  padding: 0px 0 0px;
	  overflow: hidden;
	}

	.tag-line {
	  padding: 0;

	  a {
		color: $bodyColor;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}
  }

  .bs-info {
	margin-bottom: 10px;

	&.tags {
	  	margin-top: 30px;
	  	clear: both;
	  	font-weight: 700;
		font-size: 16px;
		color: $titleColor;
		font-family: $titleFont;
		border-top: 1px solid #D7D7D7;
		border-bottom: 1px solid #D7D7D7;
		padding: 20px 0;
	  	a {
			font-size: 14px;
			margin-right: 0;
			display: inline-block;
			text-align: center;
			font-weight: normal;
			color: $bodyColor;
			background: transparent;
			padding: 8px 16px 9px;
			margin-left: 7px;
			border-radius: 0px;
			line-height: 1;
			margin-top: 5px;
			margin-bottom: 5px;
			text-transform: capitalize;
			font-family: $bodyFont;
			border: 1px solid #D7D7D7;

		&:hover {
			background: $primaryColor;
			border-color: $primaryColor;
		  	color: #fff;
		}
	  }
	}
  }

  .ps-navigation ul {
	list-style: none;
	margin: 0;
  }

  .bs-title {
	margin-top: 0px;
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 5px;
  }

  .single-page-info {
	.p-user .author-img {
	  display: inline-block;
	  margin-right: 12px;
	  margin-bottom: 10px;

	  img {
		border-radius: 50%;
	  }
	}

	.p-date, .author-name, .p-cname {
	  padding: 0;
	  color: #555;
	  line-height: 24px;
	  display: inline-block;
	  margin-bottom: 0;
	}

	.author-name {
	  color: #555;
	}
  }

  .bs-meta {
	font-size: 14px;
	margin: 15px 0 0;
	padding: 0;
	text-transform: uppercase;

	li {
	  display: inline-block;
	  line-height: 10px;
	  margin-right: 10px;

	  i {
		margin-right: 3px;
		font-size: 12px;
		color: #aaa;
	  }

	  a {
		color: #555;
	  }

	  &.category-name ul {
		margin: 0;
		float: left;
		padding-left: 8px;
	  }

	  .seperator {
		padding-right: 10px;
	  }
	}
  }

  .bs-desc {
	margin-top: 0;
	color: #303030B8;

	p:last-child {
	  margin-bottom: 0px;
	}
  }

  .blockquote {
	padding-left: 30px;
	border-left: 4px solid #444;
	display: block;
	margin: 40px 0;
	background: #f7f7f7;
	padding-bottom: 30px;
	padding-top: 30px;
	font-size: 14px !important;
	border-radius: 5px;
  }

  .related-post {
	margin-top: 40px;
	padding: 0 15px;

	.related-title {
	  font-size: 20px;
	  font-weight: 500;
	  margin-bottom: 30px;
	}

	.blog-title {
	  margin-bottom: 5px;
	  font-size: 16px;
	  font-weight: 500;

	  a {
		color: $titleColor;

		&:hover {
		  color: #032e42;
		}
	  }
	}
  }

  .author-block {
	align-items: center;
	margin-top: 50px;
	padding: 35px 0px 30px;
	text-align: center;
	overflow: hidden;
	border-radius: 0px;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
  }
}

.rs-video .popup-videos svg {
    overflow: hidden;
    position: relative;
}

.rs-blog-details {
  .author-block {
	.author-img {
	  float: left;
	  width: 17%;
	  padding-right: 30px;

	  img {
		border-radius: 5px;
		width: 120px;
	  }
	}

	.author-desc {
	  float: left;
	  width: 83%;
	  text-align: left;
	}

	.author-title {
	  margin: -10px 0 8px 0;
	  font-size: 20px;
	  position: relative;

	  &:after {
		background: #1a73e9;
		content: "";
		position: absolute;
		left: 0;
		bottom: -5px;
		right: auto;
		width: 120px;
		height: 1px;
		margin: 0 auto;
		display: none;
	  }

	  a {
		color: #212121;
	  }
	}

	p {
	  margin-bottom: 8px;
	}
  }

  .comment-respond {
	margin-top: 0px;
  }

  .comments-title {
	font-size: 24px;
	margin-bottom: 40px;
	margin-top: 40px;
  }

  #reply-title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
	margin-top: 0px;
	position: relative;
	padding: 0 0 0px;

	small {
	  font-size: 80%;

	  a {
		color: $titleColor;

		&:hover {
		  color: #1a73e9;
		}
	  }
	}
  }

  .comment-block {
	margin-top: 50px;

	.comment {
	  padding: 25px;
	  background: #fff;
	  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.2);
	  margin-bottom: 35px;

	  .comment-header {
		margin-bottom: 10px;

		&:before {
		  content: "";
		  display: table;
		}

		&:after {
		  content: "";
		  display: table;
		  clear: both;
		}
	  }

	  img {
		float: left;
		margin-right: 15px;
	  }

	  h3 {
		margin: 5px 0 0 0;
		font-size: 16px;
		line-height: 22px;
	  }

	  .comment-body p.desc {
		margin-bottom: 10px;
	  }

	  .comment-reply {
		margin-bottom: 0;
	  }
	}
  }
}

ol.comment-list .comment-respond .form-submit {
  margin-bottom: 50px;
}


.single .tag-line {
  position: relative;
  color: $hovercolor;
}

.hfe-nav-menu .rs-mega-menu > .sub-menu{
	max-width: 1250px;
}


#rs-header .header-inner{
	position: relative;
}



.single {
  .tag-line a {
	display: inline-block;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	padding: 0;
	border-radius: 0;
	position: relative;
  }

  .ps-navigation {
	margin: 50px 0 0;

	.prev {
	  width: 50%;
	  transition: all 0.5s ease;

	  i {
		margin-right: 10px;
		position: relative;
		top: 0px;
		font-size: 15px;

	  }

	  .next_link {
		margin-bottom: 10px;
		margin-left: 0;
	  }

	  &:hover span {
		color: $titleColorUnit;
	  }
	}

	.next {
	  width: 50%;
	  transition: all 0.5s ease;

	  .next_link {
		margin-bottom: 10px;
		margin-left: 0;
	  }

	  i {
		margin-left: 10px;
		position: relative;
		top: 0px;
	  }

	  &:hover span {
		color: $titleColorUnit;
	  }
	}
	ul{
		li{
			font-family: $bodyFont;
			a{
				transition: $transition;
				span{
					transition: $transition;
				}
				&:hover{
					span.link_text, span.next_link{
						color: #C3002F;
					}
				}
			}
		}
		
	}
	.next_link {
	  text-transform: uppercase;
	  color: $titleColorUnit;
	}
  }
}

.single-post {
  .main-contain #content .single-content-full .bs-desc p:first-child {
	margin-top: 0px;
  }
  .rs-blog-single-title{
	font-size: 40px;
    line-height: 50px;
    margin: 0 !important;
  }
  .btm-cate_no_thum{
	padding-bottom: 12px;
  }
  .bs-img{
	padding-bottom: 50px;
  }
  .ps-navigation {
	border-top: 1px solid rgba(170, 170, 170, 0.25);
	border-bottom: 1px solid rgba(170, 170, 170, 0.25);
	padding: 30px 0;

	.link_text {
	  font-size: 16px;
	}

	.next_link i:before {
	  margin-left: 0;
	}
  }

  .single-posts-meta {
	margin: 0 !important;
	line-height: 27px;
	.fa-comments-o:before {
	  color: $titleColorUnit;
	}

	li {
	  list-style: none;
	  display: inline-block;
	  padding-right: 10px;
	  color: #555;
	  font-size: 14px;

	  span i {
		font-size: 13px;
		margin-right: 3px;
		color: $titleColorUnit;
	  }

	  ul {
		margin: 0;
		position: relative;
		padding-left: 19px;

		li {
		  position: relative;
		  font-size: 14px;

		  a {
			color: #555;

			&:hover {
			  color: $titleColorUnit;
			}
		  }

		  &:before {
			content: ",";
			position: absolute;
			font-size: 16px;
			font-style: normal;
			right: 4px;
			top: 0;
		  }

		  &:last-child:before {
			display: none;
		  }
		}

		&:before {
		  content: "\f02d";
		  position: absolute;
		  color: $titleColorUnit;
		  font-family: FontAwesome;
		  font-size: 13px;
		  font-style: normal;
		  left: 0;
		  top: 0;
		}
	  }
	}
  }
}


.full-blog-content{
	background: #F7F8FA;
	padding: 22px 30px 35px;
	.btm-cate{
		margin-bottom: 20px;
	}
	.blog-title{
		margin-bottom: 19px;
		margin-top: 6px;
		padding-bottom: 15px;
		font-size: 30px;
		line-height: 42px;
		font-weight: 700;
		border-bottom: 1px solid #E5E5E5;
		a{
			color: $titleColor;
			text-decoration: none;
			display: inline;
			background-size: 0 2px;
			background-repeat: no-repeat;
			background-position: left 100%;
			transition: $transition;
			&:hover{
				color: $primaryColor
			}
		}
	}
}

.comment-respond {
  .form-field {
	margin-bottom: 30px;
	position: relative;

	i {
	  position: absolute;
	  top: 50%;
	  left: 16px;
	  transform: translateY(-50%);
	}

	input {
	  width: 100%;
	  height: 50px;
	  padding: 5px 15px;
	  border: 1px solid rgba(0, 0, 0, 0.1);
	}

	#comment {
	  width: 100%;
	  padding: 8px 20px;
	  border: 1px solid rgba(0, 0, 0, 0.1);
	}
  }

  .form-submit {
	clear: both;

	#submit {
		background: $primaryColor;
	  position: relative;
	  display: inline-block;
	  padding: 18px 30px 18px;
	  line-height: normal;
	  font-size: 16px;
	  font-weight: 600;
	  color: $whiteColor;
	  transition: all 0.8s ease;
	  border-radius: 0px;

	  &:hover {
		background: $secondaryColor;
		color: $whiteColor;
	  }
	}
  }
}

.comments-area {
  margin-top: 0;
  ol.children {
	padding: 0;
  }

  .comment-list {
	margin: 0;
	padding: 0;

	li.comment {
	  padding: 0;
	  margin: 20px 0 25px;
	  border-radius: 0px;
	  list-style: none;

	  .comment-full {
		padding: 0;
		border-radius: 0px;
		position: relative;
	  }

	  .comment-body {
		padding-bottom: 0;
		position: relative;
		padding-left: 98px;
		padding-bottom: 30px;
		margin-bottom: 25px;
		border-bottom: 1px solid #ddd;
	  }

	  #respond {
		padding-left: 98px;
		padding-bottom: 0;
		padding-top: 0px;
	  }

	  span.says {
		display: none;
	  }

	  .comment-author {
		text-transform: capitalize;

		a {
		  color: $titleColor;
		}

		img {
		  float: left;
		  border-radius: 0;
		  position: absolute;
		  left: 0;
		  border-radius: 50%;
		}

		b {
		  float: left;
		  padding-right: 14px;
		  padding-top: 0;
		}
	  }

	  .comment-metadata {
		margin-left: 0;
		margin-top: 0;
		font-size: 16px;
		padding-top: 0;
		clear: both;

		a time {
		  color: #909090;
		}
	  }

	  .comment-content {
		margin-top: 6px;
		border-radius: 0px;
		padding-left: 0;
		padding-right: 0;

		p {
		  margin-bottom: 4px;
		  color: #666;
		}
	  }

	  .reply {
		padding-left: 0;
		margin-bottom: 0;
		margin-top: 0px;
		padding-bottom: 0;
		text-align: left;
		margin-top: 10px;
		a {
		  cursor: pointer;
		  display: inline-block;
		  position: relative;
		  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
		  padding: 4px 20px;
		  line-height: 23px;
		  font-size: 14px;
		  color: $whiteColor;
		  background: $primaryColor;
		  z-index: 1;
		  border: none;
		  border-radius: 30px;
		  &:hover {
			background: $secondaryColor;
			color: $whiteColor;
			opacity: 0.99;

			&:before {
			  top: 0%;
			  bottom: auto;
			  height: 100%;
			}
		  }
		}
	  }

	  .comment {
		margin-bottom: 0;
		padding-bottom: 0;
	  }

	  ol.children li {
		padding-right: 0;
		margin-left: 2.5em;
		margin-top: 0;
	  }

	  &:last-child .comment-full {
		border-bottom: none;
	  }
	}
  }

  p {
	&.comment-form-author {
	  float: left;
	  width: 50%;
	  padding-right: 25px;
	  margin-bottom: 0px;

	  label {
		display: block;
	  }

	  input {
		width: 100%;
		height: 50px;
		padding: 15px 20px;
		background-color: #fff;
		border: 1px solid #D7D7D7;
		border-radius: 0px;
	  }
	}

	&.comment-form-email {
	  float: left;
	  width: 50%;
	  margin-bottom: 0px;

	  label {
		display: block;
	  }

	  input {
		width: 100%;
		height: 50px;
		padding: 15px 20px;
		background-color: #fff;
		border: 1px solid #D7D7D7;
		border-radius: 0px;
	  }
	}

	&.comment-form-url {
	  clear: both;

	  label {
		display: block;
	  }

	  input {
		width: 100%;
		height: 50px;
		padding: 15px 20px;
		background-color: #fff;
		border: 1px solid #e6e2e29c;
		border-radius: 5px;
	  }
	}

	&.comment-form-comment {
	  clear: both;
	  margin-bottom: 0;

	  label {
		display: block;
		margin-bottom: 10px;
	  }

	  textarea {
		width: 100%;
		height: 160px;
		padding: 15px 20px;
		background-color: #fff;
		border: 1px solid #D7D7D7;
		border-radius: 0px;
		outline: none;
	  }
	}
  }

  .comment-navigation {
	overflow: hidden;

	.nav-previous {
	  position: relative;
	  padding-left: 18px;

	  &:before {
		content: "\f104";
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		text-decoration: inherit;
		position: absolute;
		left: 0;
		top: 1px;
		color: #4caf50;
	  }
	}

	.nav-next {
	  position: relative;
	  padding-right: 18px;

	  &:before {
		content: "\f105";
		font-family: FontAwesome;
		font-style: normal;
		font-weight: normal;
		text-decoration: inherit;
		position: absolute;
		right: 0;
		top: 1px;
		color: #4caf50;

		
	  }
	}
  }

  label {
	font-weight: 400;
  }
  & > .comment-full{
	background: transparent;
	padding: 0;
	margin-top: 45px;
  }
}

.comment-full {
  .comment-form-cookies-consent, .comment-form-url {
	display: none;
  }
}

.inner-page-title {
  padding-top: 70px;
}

.dynamic-sidebar {
	padding: 0px 0 0 12px;
    border-radius: 0px;
  	.recent-widget {
		margin: 0 0 0em;
 	}
}

.padding-left-sidebar .dynamic-sidebar {
  padding: 0px 20px 20px 0;
}

#respond {
  border-radius: 5px;
}

li.comment #respond {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.check-arrow {
  	padding: 0;
  	margin-left: 0;
  	li {
		position: relative;
		list-style: none;
		padding: 3px 0 5px 48px;
		margin: 4px 0;
		&:before {		
			content: "\eb7b";
			font-family: remixicon !important;
			position: absolute;
			left: 0;
			right: auto;
			top: 0px;
			font-size: 18px;
			color: $primaryColor;
			width: 30px;
			height: 30px;
			border: 1px solid #1a73e924;
			line-height: 30px;
			text-align: center;
			display: block;
			border-radius: 50%;
		}
  	}
}

.check-circle {
  padding: 0;

  li {
	position: relative;
	list-style: none;
	padding: 0 0 0 26px;

	&:before {
	  font-family: FontAwesome;
	  content: "\f058";
	  position: absolute;
	  left: 0;
	  right: auto;
	  top: 0px;
	  font-size: 18px;
	  color: #1a73e9;
	  width: 40px;
	  height: 40px;
	}
  }
}
blockquote {
	overflow: hidden;
	padding: 30px 52px;
	background: #F7F7F7 !important;
	font-style: normal;
	text-align: left;
	clear: both;
	border-radius: 10px;
	font-weight: 500;
	border-left: 7px solid $primaryColor;
	position: relative;
	min-height: 170px;
		cite {
		  font-size: 15px;
		  display: block;
		  margin-top: 10px;
		  font-style: normal;
		  color: $titleColor;
		  font-weight: 700;
		  font-family: $titleFont;
		  &:before {
			  content: "";
			  font-size: 28px;
			  color: $primaryColor;
			  padding-bottom: 0px;
			  display: inline-block;
			  background: $titleColorUnit;
			  height: 1px;
			  width: 40px;
			  font-weight: 700;
			  text-align: center;
			  top: -4px;
			  margin-right: 10px;
			  position: relative;
		  }
		}
	&::before{
	  content: "\ec51" !important;
	  font-family: remixicon !important;
	  position: absolute;
	  left: auto;
	  right: 30px;
	  top: 80px;
	  font-size: 183px;
	  color: #0000000f;
	  text-align: center;
	  display: block;
	  border-radius: 50%;
	  height: 0;
	  line-height: 1;
	}
	p {
	  margin-bottom: 10px !important;
	  font-size: 22px;
  
	  strong {
		color: #000 !important;
		font-size: 18px;
		padding-top: 20px !important;
		margin-bottom: 10px;
		display: block;
	  }
	}
  }
  
  mark, ins, kbd {
	background: $titleColorUnit;
	color: #fff;
	padding: 0 4px;
  }
  
  code {
	background: $titleColorUnit;
	color: #fff !important;
  }


.tax-portfolio-category .rs-blog .blog-item .blog-img img{
	width: 100%;
}

.rs-breadcrumbs-meta-elementor li {
    list-style: none;
    margin: 0 15px;
    position: relative;
	&:first-child{
		margin-left: 0;
	}
}

.hfe-page-title {
    .elementor-heading-title {
        &.first-word-yes {
            .word-active {
                display: block;
            }
        }
    }
}

.rsoffwrap-close{
	background: $primaryColor;
	position: absolute;
	right: 30px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 3px;
	text-align: center;
	top: 30px;
	cursor: pointer;
	i{
		color: $whiteColor;
		font-size: 21px;
	}
}


.rs-breadcrumbs-meta-elementor li:first-child::before {
	display: none;
}

.ri-tools-fill{
	font-size: 21px;
	position: relative;
    top: 4px;
}

.rs_e_tel{
	color: $titleColor;
	font-weight: 400 !important;
	font-size: 20px;
}

.wp-block-file__button {
	color: white;
	background: $primaryColor;
	&:hover {
		color: white;
	}
}
.wp-block-post-comments-form input:not([type=submit]),
.wp-block-post-comments-form textarea {
	border: 1px solid #f1f1f1;
	padding: 15px 20px;
	border: 1px solid rgba(230, 226, 226, 0.6117647059);
	border-radius: 5px;
	outline: none;
}

[type=search] {
    border: 1px solid #f1f1f1;
    border-radius: 5px 0 0 5px;
    padding: 10px 20px;
    outline: none;
}
.wp-block-search__inside-wrapper {
    padding: 0;
    border: none;
}

.bs-sidebar ul.footer_social li {
	display: inline-block;
	text-align: center;
	border: none;
	margin: 0;
	padding: 0 14px 0 0;
	&:last-child{
		padding-right: 0;
	}
  
	a {
	  color: $bodyColor;
	  display: block;
  
	  &:hover {
		color: $whiteColor;
	  }
	}
  
	&:last-child {
	  margin-right: 0 !important;
	}
  }

/* ------------------------------------
	23. Blog Sidebar
---------------------------------------*/

.bs-sidebar {
  .fa-ul i {
	margin-right: 12px;

	&:before {
	  color: $titleColorUnit;
	}

	&.fa-whatsapp:before {
	  font-size: 18px;
	}

	&.ri-time-call:before {
	  font-size: 16px;
	}
  }

  .widget {
	background: #F7F8FA;
	padding: 38px 40px 40px;
	border-radius:0px;
	position: relative;
	border: 0px;
	margin-bottom: 40px;
	&:last-child{
		margin-bottom: 0;
	}
  }

  .wp-block-search__label {
	position: relative;
	color: $titleColor;
	font-family: $titleFont;
  }
  .wp-block-search__label,
  .widget_block h2, .widget-title {
		color: $titleColor;
		font-size: 22px;
		line-height: 26px;
		position: relative;
		z-index: 1;
		padding-bottom: 15px;
		font-weight: 600;
		&::before{
			position: absolute;
			content: '';
			left: 0;
			bottom: 0;
			height: 2px;
			width: 20px;
			background: $titleColor;
		}
		&::after{
			position: absolute;
			content: '';
			left: 26px;
			bottom: 0;
			height: 2px;
			width: 63px;
			background: $primaryColor;
		}
  	}

  .widget_media_image {
	padding: 0;
	background: none;
  }

  .widget:last-child {
	margin-bottom: 0;
  }

	.widget-title {
		margin-bottom: 24px;
  	}

  .wp-block-latest-comments, ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }

  .wp-block-latest-comments a, ul a {
	color: $bodyColor;
	transition: all 0.3s ease 0s;
  }

  .wp-block-latest-comments a:hover, ul a:hover {
	color: $primaryColor;
  }

  .wp-block-latest-comments li, 
  .wp-block-latest-comments li + li{
	margin-top: 10px;
	padding-top: 10px;
  }
 

  .wp-block-latest-comments li a, ul li a {
	color: $bodyColor;
  }
  .widget_categories ul li a:hover{
	color: $primaryColor;
  }
  .widget_meta li:first-child, .widget_pages li:first-child, .widget_recent_entries li:first-child, .widget_nav_menu li:first-child {
	margin-top: 0;
	padding-top: 0;
	border: 0;
	border-top: 0;
  }


  .widget_meta .sub-menu li:first-child, .widget_pages .sub-menu li:first-child, .widget_recent_entries .sub-menu li:first-child, .widget_nav_menu .sub-menu li:first-child {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
   .widget_nav_menu,
   #categories-2{
	ul{
		li{
			background: $whiteColor;
			box-shadow: none;
			border: 1px solid rgba(215, 215, 215, 0.6);
			padding: 15px 20px;
			margin-top: 12px;
			border-radius: 0px;
			font-size: 16px;
			font-weight: 500;
			font-family: $titleFont;
			cursor: pointer;
			transition: $transition;
			a{
				color: $titleColor;
				transition: $transition;
			}	
			&:first-child{
				padding-top: 15px;
			}		
		}
	}
	&.widget_nav_menu,
	&#categories-2{
		ul{
			li{
				&:hover{
					background: $primaryColor;
					border-color: $primaryColor;
					a{
						color: $whiteColor;						
					}
				}
				&:first-child{
					padding-top: 15px;
				}
				&.current-cat{
					background: $primaryColor;
					border-color: $primaryColor;
					a{
						color: $whiteColor;						
					}
				}
			}
		}
	}
  }

  .widget_product_categories {
	h2.widget-title {
	  margin-bottom: 18px;
	}
  }

  .widget_recent_comments ul li {
	border-top: 1px solid rgba(0, 0, 0, 0.06);

	&:first-child {
	  border-top: none;
	  margin-top: 0;
	  padding-top: 0;
	}
  }

  .recent-widget .widget-title {
	margin-bottom: 24px;
  }


  .widget_calendar table caption {
	padding-bottom: 0;
  }

  .widget_archive ul li {
	&:first-child {
	  border-top: none;
	}
  }

  .widget_pages ul li {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: none;

	&:first-child {
	  border-top: none;
	  margin-top: 0;
	  padding-top: 0;
	}

	ul.children li:first-child:after {
	  top: 9px;
	}
  }

  .widget_search, .bs-search {
	overflow: hidden;
	position: relative;
  }

  .widget_search input,
  .bs-search input {
	border: 1px solid rgba(215, 215, 215,0.6);
	color: $titleColor;
	padding: 16px 20px;
	width: 100%;
	border-radius: 0;
	background: #fff;
	&:visited,
	&:focus-visible{
		border-color: $primaryColor !important;
	}
  }



  .widget_search button,
  .bs-search button {
	background: transparent;
	border: medium none;
	padding: 12px 16px;
	position: absolute;
	right: 0px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
	font-size: 16px;
	outline: none;
	border-radius: 0 0px 0px 0;
  }

  .widget_search button i:before, .bs-search button i:before {
	font-weight: 600 !important;
  }

  .widget_search label, .bs-search label {
	display: inline;
  }

  .widget_search button {
	font-size: 0;
	&:before {
	  font-family: remixicon !important;
	  font-size: 18px;
	  content: "\F0D1";
	  display: block;
	  color: $primaryColor;
	}
  }

  .wp-block-search__inside-wrapper {
	position: relative;
	margin-top: 36px;
  }

  .widget_categories ul, .widget_recent_entries ul, .widget_archive ul, .widget_meta ul {
	list-style: none;
  }

  .recent-post-widget {
	> div + div {
	  margin-top: 20px;
	  padding-top: 20px;
	  border-top: 1px solid #D7D7D7;
	}

	.post-date {
	  font-size: 13px;
	  color: #656567;
	}

	.post-title {
	  font-weight: 500;
	  margin-bottom: 0;

	  a {
		font-size: 15px;
	  }
	}

	.post-desc a {
		display: block;
		line-height: 22px;
		color: $titleColor;
		font-size: 17px;
		font-family: $titleFont;
		font-weight: 600;
		text-decoration: none;
		display: inline;
		background-size: 0 2px;
		background-repeat: no-repeat;
		background-position: left 100%;
		transition: $transition;
		&:hover{
			color: $primaryColor
		}
	}
  }
}


.bs-sidebar{
	.widget_medvillsocialiconwi_widget .footer_social li a {
		width: 50px;
		height: 50px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid $hovercolor;
		border-radius: 0;
		font-size: 16px;
		background: $whiteColor;
		color: $titleColor;
		&:hover{
			color: $whiteColor;
			border-color: $primaryColor;
			background-color: $primaryColor;
		}
	}
}

body.single-events .hfe-page-title{
	max-width: 860px;
}

.bs-sidebar .widget.widget_tag_cloud .widget-title {
    margin-bottom: 20px;
}

.bs-sidebar .widget_categories ul li ul li {
    padding: 0px 20px;
}

.bs-sidebar .widget_nav_menu.widget_nav_menu ul li,
.bs-sidebar #categories-2.widget_categories ul li{
	position: relative;
	a{
		cursor: pointer;
		text-transform: capitalize;
		&:after{
			content: "\ea6c";
			position: absolute;
			font-family: remixicon !important;
			font-size: 20px;
			top: 15px;
			right: 18px;
			opacity: 1;
		}
	}
}

.bs-sidebar ul.wp-block-categories-list li{
	position: relative;
	a{
		cursor: pointer;
	}
}

.bs-sidebar .widget_categories ul.children li{
	&:before{
		top: 2px;
	}
}

.inner-offcan .ri-close-fill.closes {
	font-size: 23px;
    width: 40px;
    height: 39px;
    line-height: 40px;
    color: #fff;
    background: $primaryColor;
    text-align: center;
    border-radius: 5px;
    display: block;
}

.pagination,
.pagination-area {
	padding-top: 50px;
	clear: both;
	text-align: center;
  
	.pagination {
	  padding: 0;
	  margin: 0;
	}
  
	.nav-links {
	  display: flex;
	  align-items: center;
	  padding: 0px;
	  border-radius: 0px;
	  gap: 10px;
	  > * {
		border-radius: 0px;
		margin-left: 0px;
		margin-right: 0px;
	  }
		a {
			width: 40px;
			height: 40px;
			border-radius: 0;
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
			color: $titleColor;
			font-size: 16px;
			font-weight: 600;
			text-decoration: none;
			transition: all 0.3s ease 0s;
			background: transparent;
			position: relative;
			&.page-numbers {
				border-style: solid;
				border-width: 1.5px 1.5px 1.5px 1.5px;
				border-color: #0712301A;
			}
			&.next.page-numbers,
			&.prev.page-numbers {
				font-size: 0 !important;
				&:before {
					position: absolute;
					font-family: remixicon !important;
					font-size: 16px;
					line-height: 1;
					opacity: 1;
					content: "\ea6b";
					left: 50%;
					top: 50%;
					transform: translate(-50%, -50%);
				}
			}
			&.prev.page-numbers {
				&:before {
					content: "\ea5f";
				}
			}
		}
		span.current {
			width: 40px;
			height: 40px;
			border-radius: 0;
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
			border-color: transparent;
			color: #fff;
			font-size: 16px;
			font-weight: 600;
			text-decoration: none;
			transition: all 0.3s ease 0s;
			background: $primaryColor;
			position: relative;
		}
	}
}
body.rtl {
	.pagination,
	.pagination-area {
		.nav-links {
			.prev,
			.next {
				transform: scaleX(-1);
			}
		}
	}
}
/* ------------------------------------
	11. Rs Button
---------------------------------------*/

.rs-slider-button{
	line-height: 0 !important;
	.rs-btn{
		background: transparent;
		color: #fff;
		padding: 18px 42px;
		border-radius: 12px;
		overflow: hidden;
		position: relative;
		display: inline-block;
		transition: $transition;
		span{
			position: relative;
			z-index: 1;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
		}
		em {
			display: inline-block;
			overflow: hidden;
			position: relative;
			width: 18px;
			height: 18px;
			line-height: 20px;
			flex-shrink: 0;
			> * {
				height: inherit;
				width: inherit;
				line-height: inherit;
				font-size: 18px;
				position: absolute;
				top: 0;
				left: 0;
				transition: $transition;
				&:nth-child(2) {
					transform: translateX(-150%);
				}
			}
			svg {
				path {
					fill: #fff;
					transition: $transition;
				}
			}
			i {
				color: #fff;
			}
		}
		&::after {
			position: absolute;
			content: '';
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			border-radius: 50%;
			width: calc(100% - 2px);
			aspect-ratio: 1/0.9;
			background: $primaryColor;
			pointer-events: none;
			transition: $transition;
		}
		&:hover{
			background: transparent;
			color: #fff;
			em {
				> *  {
					transform: translateX(150%);
					&:nth-child(2) {
						transform: translateX(0);
					}
				}
				svg {
					path {
						fill: #fff;
					}
				}
				i {
					color: #fff;
				}
			}
			&::after {
				background: $secondaryColor;
			}
		}
	}
}

/* ------------------------------------
	11. Blog Sidebar
---------------------------------------*/

.bs-sidebar {
   .recent-post-widget .post-desc {
	line-height: 26px;
	span {
	  	display: block;
	  	font-size: 14px;
	  	color: $bodyColor;
	  	margin: 0px 0 6px;
	  	font-weight: 400;
		em{
			font-style: normal;
			font-weight: 700;
			position: relative;
			padding-right: 27px;
			&::after{
				content: "";
				position: absolute;
				width: 5px;
				height: 5px;
				border-radius: 50%;
				right: 9px;
				top: 8px;
				background: $bodyColor;
			}
		}
	  	i {
		margin-right: 5px;

		&:before {
		  font-size: 12px;
		}
	  }

	  svg {
		width: 15px;
		position: relative;
		top: -2px;
		color: $primaryColor;
		margin-right: 4px;
	  }
	}
  }

  .tagcloud a {
	display: inline-block;
    margin: 0 4px 8px 0px;
    line-height: 20px;
    padding: 9px 13px;
    font-size: 14px !important;
    text-transform: capitalize;
    transition: all 0.3s ease;
    background: #fff;
    color: $titleColor;
    font-weight: 500;
    border: 1px solid rgba(62, 62, 62, 0.1);
    position: relative;
	border-radius: 0px;
	&:hover {
	  	color: $whiteColor;
	  	background: $primaryColor;
		border-color: $primaryColor;
	}

	&:last-child:after {
	  display: none;
	}
  }
}

.wp-block-latest-comments__comment {
  margin-bottom: 0;
}

.bottom-shadow1 {
  padding: 32px 0 20px 0;
}

.page-header {
  margin: 0 0 20px;

  h1 {
	margin-top: 0;
  }
}


.blog .rs-blog .blog-item, 
.archive .rs-blog .blog-item {
	margin-bottom: 40px;
   	background: transparent;
   	border-radius: 0px;
   	transition: 0.3s;
    &.last--child{
		margin-bottom: 0px;
    }
}

.blog .rs-blog .blog-item .full-blog-content, .archive .rs-blog .blog-item .full-blog-content {
 	overflow: hidden;
}

.bs-sidebar .recent-post-widget .show-featured .post-desc {
    line-height: 26px;
}

.blog .rs-blog .blog-item .blog-img, 
.archive .rs-blog .blog-item .blog-img {
	position: relative;
	border-radius: 0px;
	z-index: 0;
	margin-bottom: 0px;
	margin-top: 0;
	overflow: hidden;
	img{
		transition: .9s;
	}
	&:hover{
		img{
			-webkit-transform: scale(1.1);
  			transform: scale(1.1);
		}
	}
}


.blog .rs-blog .blog-item .blog-img .blog-meta,
.archive .rs-blog .blog-item .blog-img .blog-meta {
 position: absolute;
 bottom: 16px;
 top: auto;
 left: 40px;
 right: 30px;
 z-index: 99;
}



/* -----------------------
	14. Blog Post
--------------------------*/

.rs-blog {
	.grid-blog {
	  margin-top: 50px;
	}
  
	.blog-item {
		margin-bottom: 30px;
		background: #fff;
	
		.full-blog-content .author {
			font-weight: 500;
		}
	
		.blog-img {
			position: relative;
			margin-bottom: 0;
			border-radius: 0;
			
			a {
			z-index: 11;
			position: relative;
			}
	
			.blog-img-content {
			position: absolute;
			width: 100%;
			height: 100%;
			top: 50%;
			left: 0;
			text-align: center;
			z-index: 10;
			padding: 20px;
			opacity: 0;
			transition: 0.3s all ease-out;
	
			.blog-link {
				display: inline-block;
				font-size: 19px;
				width: 52px;
				line-height: 54px;
				height: 52px;
				text-align: center;
				border-radius: 50%;
				background: #fff;
				transition: all 0.3s ease 0s;
	
				&:hover {
				background: $primaryColor;
				color: #fff !important;
				}
			}
	
			.blog-title {
				font-size: 16px;
				line-height: 22px;
				font-weight: 500;
				margin-top: 15px;
				color: #fff;
				margin-bottom: 0;
	
				a {
				color: #fff;
	
				&:hover {
					color: rgba(255, 255, 255, 0.6);
				}
				}
			}
			}
	
			&:hover .blog-img-content {
			top: 0px;
			opacity: 1;
			}
		}
	
		.blog-meta {
			transition: all 0.3s ease 0s;
	
			.seperator {
			padding-left: 7px;
			}
	
			.blog-date {
			display: inline-block;
			font-weight: 400;
	
			i {
				margin-right: 6px;
				position: relative;
				top: 0px;
			}
			}
			.ri-user-3-line{
			top: 2px;
			}
	
			.categories a {
			color: #999999;
	
			&:hover {
				color: $primaryColor;
			}
			}
	
			.blog-lc {
			display: inline-block;
	
			> div {
				display: inline-block;
			}
			}
		}
		.date-post {
			padding: 0;
			color: #999999;
			margin-right: 8px;
			margin-bottom: 8px;
			display: inline-block;
			font-size: 12px;
		}
	
		span {
			&.author, &.category {
			padding: 0;
			margin-right: 9px;
			margin-bottom: 10px;
			margin-left: 0;
			display: inline;
			position: relative;
			text-transform: inherit;
			color: #555;
			}
		}
	
		.blog-slidermeta {
			margin-bottom: 6px;
	
			span {
			&.seperator {
				display: inline-block;
				padding-right: 5px;
				font-size: 12px;
			}
	
			&.category a {
				color: #999999;
	
				&:hover {
				color: $primaryColor;
				}
			}
			}
		}
	
		div.comment {
			padding: 0;
			color: #032e42;
			border-radius: 30px;
			text-transform: uppercase;
			font-size: 13px !important;
			line-height: normal;
		}
	
		.blog-author {
			display: flex;
			align-items: center;
	
			.author-img {
			float: left;
	
			img {
				height: 70px;
				width: 70px;
				border-radius: 50%;
			}
			}
	
			.author-info {
			margin-left: 15px;
	
			.author-name {
				font-size: 15px;
				margin-bottom: 0;
			}
	
			.author-title {
				font-size: 12px;
			}
			}
		}
	
		.blog-desc {
			clear: both;
			font-size: 17px;
			p {
			margin-bottom: 0;
			}
		}
	}
  
	.full-layout {
	  width: 100%;
	}
  
	.sidebar-none, .owl-nav {
	  display: none;
	}
  
	.home_full_blog {
	  padding: 0;
  
	  .blog-desc {
		margin-bottom: 20px;
	  }
  
	  .blog-date {
		padding-top: 15px;
	  }
	}
  }

body {
  &.archive.post-type-archive-product {
	background: #fff !important;
  }
}
body.search-results .site-main > article .entry-summary:not(.rs-flat) .blog-button,
.rs-blog .blog-item:not(.rs-flat) .blog-button {
	display: block;
	margin-top: 24px;  
}
body.search-results .site-main > article .entry-summary:not(.rs-flat) .blog-button a,
.rs-blog .blog-item:not(.rs-flat) .blog-button a {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: all 0.4s;
	font-size: 17px;
	font-weight: 700;
	line-height: 28px;
	color: $titleColor;
	z-index: 1;
	border-radius: 10px;
	&:before {
		content: "\ea6c";
		position: absolute;
		font-family: remixicon !important;
		font-size: 18px;
		line-height: 1;
		top: 1px;
		bottom: 0;
		display: flex;
		align-items: center;
		right: -26px;
		opacity: 1;
	}
	&:hover {
	color: #fff;
		color: $primaryColor;
	}
}
body.search-results .site-main > article .entry-summary.rs-flat .blog-button,
.rs-blog .blog-item.rs-flat .blog-button {
	display: block;
	margin-top: 30px;
}
body.search-results .site-main > article .entry-summary.rs-flat .blog-button a,
.rs-blog .blog-item.rs-flat .blog-button a {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: all 0.4s;
	padding: 13px 42px 13px 22px;
	font-size: 16px;
	font-weight: 700;
	line-height: 28px;
	color: $whiteColor;
	background: $primaryColor;
	z-index: 1;
	border-radius: 5px;
	&:before {
		content: "\ea6c";
		position: absolute;
		font-family: remixicon !important;
		font-size: 15px;
		top: 15px;
		right: 22px;
		opacity: 1;
	}

	&:hover {
	color: #fff;
		background: $secondaryColor;
	}
}

.search-no-results{
	.bs-search button{
		background: none;
		border: medium none;
		padding: 12px 30px;
		position: absolute;
		right: 0px;
		top: 0;
		bottom: 0;
		z-index: 0;
		font-size: 16px;
		outline: none;
		border-radius: 0 5px 5px 0;
		&:before {
			font-family: remixicon !important;
			font-size: 18px;
			content: "\f0d1";
			position: absolute;
			right: 20px;
			top: 14px;
			display: block;
			color: $primaryColor
		}
		i{
			display: none;
		}
	}
	.bs-search input {
		padding: 16px 17px 16px 17px;
	}
}

.rsaddon-unique-slider {
  ul.blog-meta {
	margin: 0;
	padding: 0;
	list-style: none;

	li:last-child {
	  margin-right: 0;
	}
  }

  .blog-item.hover-btn-yes {
	.blog-inner-wrap {
	  position: relative;
	  transition: all 500ms ease;
	}

	.blog-content.btm-rs {
	  transition: all 500ms ease;
	  position: relative;
	}

	.blog-btn-part {
	  transition: all 500ms ease;
	}

	&:hover {
	  .blog-btn-part {
		visibility: visible;
		opacity: 1;
	  }

	  .blog-inner-wrap {
		bottom: 0px;
	  }
	}
  }
}

.btm-rs .blog-footer .blog-meta {
  display: flex;

  .fa.fa-book {
	margin: 4px 10px 0 0px;
  }

  .cat_list.btm {
	display: flex;
	margin-left: 0;

	.post-categories {
	  display: flex;
	  align-items: center;
	  flex-wrap: wrap;
	}

	ul li {
	  margin-right: 0;

	  &:after {
		display: none;
	  }

	  a {
		font-size: 14px;
		letter-spacing: 0.1em;
		text-transform: lowercase;
		margin-right: 5px;
		color: #303030;
		position: relative;
		padding-right: 4px;
		font-size: 14px;
		margin-left: 5px;

		&:after {
		  content: ",";
		  position: absolute;
		  right: 0;
		  top: 0;
		}
	  }

	  &:last-child a:after {
		display: none;
	  }
	}
  }

  &.sep-yes li {
	position: relative;
	margin-right: 20px;
	padding-right: 11px;

	&:after {
	  content: "";
	  height: 14px;
	  width: 1px;
	  position: absolute;
	  right: 0;
	  transform: rotate(20deg) translateY(-62%);
	  top: 44%;
	  background: #ccc;
	}

	&:last-child {
	  margin-right: 0;
	  padding-right: 0;

	  &:after {
		display: none;
	  }
	}
  }
}

.bs-sidebar .recent-post-widget .show-featured .post-desc a {
  margin-top: -4px;
}

.rs-blog-grid .blog-item .blog-content h3.blog-name {
  margin-bottom: 15px;
}

.show-featured {
  .post-img {
	width: 80px;
	float: left;
	padding-right: 15px;
  }
}

body .recent-widget .show-featured .post-img img{
	border-radius: 0px;
}
.sticky_form_full, #rs-header .sticky_form {
  border-radius: 5px;
}

.bs-search {
  overflow: hidden;
  position: relative;

  input {
	border: 0;
	color: #444;
	padding: 14px 17px 17px 17px;
	width: 100%;
	background: #fff;
	border-radius: 5px;
	border: none;
  }

  button {
	border: medium none;
	padding: 0 18px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	font-size: 16px;
	outline: none;
	border-radius: 0;
	color: #00204A;

	i:before {
	  font-size: 22px;
	}

	&:hover {
	  color: $titleColorUnit;
	}
  }

  label {
	display: inline;
	font-weight: normal;
  }
}

article.sticky .blog-title a {
  color: $primaryColor;
  position: relative;
  padding-left: 32px;
  &:after {
	font-family: remixicon !important;
	content: "\F036";
	position: absolute;
	left: -6px;
	top: 4px;
	font-size: 35px;
  }
}

.archive-post h3.blog-title a {
  color: $titleColor;

  &:hover {
	color: $primaryColor;
  }
}


.rs-blog-grid .blog-item {
  .image-wrap .cat_list {
	ul li a {
	  margin-top: 5px;
	}

	left: 20px;
	text-align: right;
  }

  .blog-content .blog-meta span:first-child {
	margin-right: 25px;
  }
}

/* ------------------------------------
	24. Blog Pagination
---------------------------------------*/

.page-numbers.dots {
  line-height: 14px;
  display: inline-block;
  color: #19082D;
}

.pagination-pages {
  padding-top: 0px;
  clear: both;
  text-align: center;

  .pagination {
	padding: 0;
	margin: 0;
  }

  .nav-links {
	display: flex;
	align-items: center;
	padding: 20px 10px 20px 10px;
	border-radius: 0px;

	> * {
	  border-radius: 0px;
	  margin-left: 0px;
	  margin-right: 10px;
	  &:last-child {
		margin-right: 0;
	  }
	}
	span.current,
		a {
			width: 40px;
			height: 40px;
			border-radius: 50%;
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
			color: $primaryColor;
			font-size: 16px;
			font-weight: 600;
			text-decoration: none;
			transition: all 0.3s ease 0s;
			background: #f0edfc;
			position: relative;
			&.next.page-numbers,
			&.prev.page-numbers {
				font-size: 0;
				&:before {
					position: absolute;
					font-family: remixicon !important;
					font-size: 16px;
					line-height: 1;
					opacity: 1;
					content: "\ea6b";
					left: 50%;
					top: 50%;
					transform: translate(-50%, -50%);
				}
			}
			&.prev.page-numbers {
				&:before {
					content: "\ea5f";
				}
			}
		}
		span.current {
			background: $primaryColor;
			color: #fff;
		}
  }
}


.single-post .listing-style li {
  font-weight: unset;
  margin-bottom: 10px;
  color: #303030;

  &:last-child {
	margin-bottom: 30px;
  }
}

.entry-content {
	.page-links .pagination-pages {
		display: inline-flex;
		align-items: stretch;
		padding: 14px 11px 14px 26px;
		border-radius: 6px;
		color: #fff;
		border: none;
		background: $titleColorUnit;
		line-height: 1;
		span.current {
			padding: 0 18px 0 18px;
			background: transparent;
			font-size: 18px;
			text-decoration: none;
			transition: all 0.3s ease 0s;
			text-align: center;
			background: transparent;
			color: #ffffff;
			display: inline-block;
			vertical-align: top;
			border-right: 1px solid #E6E6E6;

			&:last-child {
			border-right: none;
			}
		}
	}

  > * {
	border-radius: 0px;
	margin-left: 0px;
	margin-right: 0px;
  }

  a {
	padding: 0 16px 0 16px;
	color: $bodyColor;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	text-align: center;
	background: transparent;
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #E6E6E6;

	&:hover {
	  color: $primaryColor;
	}

	&:last-child {
	  border-right: none;
	}

	&.next.page-numbers {
	  background: none !important;
	  border-right: 0;
	}
  }
  .comment-form p.logged-in-as {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 17px;
	line-height: 27px;
	a {
		border: none;
		font-size: inherit;
		line-height: inherit;
		padding: 0 6px;
	}
  }
  .comment-list footer.comment-meta .comment-author .fn > a,
  .comment-list footer.comment-meta .comment-metadata > a,
  .comment-list footer.comment-meta a.comment-metadata {
	padding-left: 0;
  }
}
.single-format-standard .offcontents .rs-blog-details .single-content-full .bs-desc .page-links {
	display: inline-flex;
	padding: 14px 11px 15px 26px;
	border-radius: 6px;
	line-height: 15px;
	color: #fff;
	border: none;
	background: $titleColorUnit;
	span.current {
		padding: 0px 18px 0 18px;
		line-height: 13px;
		background: transparent;
		font-size: 18px;
		text-decoration: none;
		transition: all 0.3s ease 0s;
		text-align: center;
		background: transparent;
		color: #ffffff;
		display: inline-block;
		vertical-align: top;
		border-right: 1px solid #E6E6E6;

		&:last-child {
		border-right: none;
		}
	}
}
.bs-desc .page-links {
  display: inline-flex;
  padding: 20px 27px 22px 43px;
  border-radius: 30px;
  line-height: 15px;
  color: #eee;
  span.current {
	padding: 2px 18px 0 18px;
	line-height: 13px;
	background: transparent;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	text-align: center;
	background: transparent;
	color: #ffffff;
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #E6E6E6;

	&:last-child {
	  border-right: none;
	}
  }

  > * {
	border-radius: 0px;
	margin-left: 0px;
	margin-right: 0px;
  }

  a {
	padding: 0px 16px 0 16px;
	line-height: 13px;
	color: #eee;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	text-align: center;
	background: transparent;
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #E6E6E6;

	&:hover {
	  color: #ffffff;
	}

	&:last-child {
	  border-right: none;
	}

	&.next.page-numbers {
	  background: none !important;
	  border-right: 0;
	}
  }
}

.pagination-pages {
  display: inline-block;
  border: 1px solid #f1f1f1;
  padding: 11px 30px;
  border-radius: 10px;
}

.entry-footer .edit-link {
  padding: 20px 0;
  display: block;
}

.page-links {
  clear: both;
}

.comment-list {
  .pingback, .trackback {
	list-style: none;
	padding-bottom: 15px;
	padding-top: 15px;
  }
}

.rs-blog-details .bs-meta li.category-name a {
  line-height: 22px;
}

.single:not(.single-portfolios) #content {
  h3, h4 {
	margin-bottom: 17px;
  }
}

li.category-name ul.post-categories {
  position: relative;
  float: none !important;
  padding-left: 22px !important;

  &:before {
	content: "\f115";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	position: absolute;
	left: 0;
	top: 7px;
	color: #1a73e9;
  }
}

.rs-footer {
	.bs-search {
		input {
			background: #fff;
		}
	}
}

.bs-sidebar .widget select {
  background: #fff;
  border-radius: 5px;
}

.rs-offcanvas-area{
	.right_menu_togle{
		color: $bodyColor;
		.sidebar-offcanvas-menu-logo {
			margin-bottom: 20px;
			a {
				img {
					width: auto;
					height: 30px;
				}
			}
		}
		h4 {
			color: $secondaryColor;
		}
		a{
			color: $bodyColor;
			
		}
		.navbar-menu {
			li {
				a {
					color: $secondaryColor;
					font-weight: 600;
					&:hover {
						color: $primaryColor;
					}
				}
			}
		}
		.current-menu-parent{
			& > a{
				color: $secondaryColor;
			}
			.sub-menu{
				.current-menu-item{
					& > a{
						color: $secondaryColor;
					}
				}
			}
		}
		.current_page_item > span > i,
		.current_page_ancestor > span > i,
		.current-menu-ancestor > span > i {
			color: $secondaryColor;
		}
		.current-menu-ancestor{
			& > a{
				color: $secondaryColor;
			}
		}
		.current_page_item{
			& > a{
				color: $secondaryColor;
			}
			.sub-menu{
				.current-menu-item{
					& > a{
						color: $secondaryColor
					}
				}
			}
		}
		a:hover{
			color: $primaryColor;
		}
		h4{
			font-size: 22px;
			line-height: 28px;
		}
		.textwidget{
			font-size: 17px;
		}
		#media_image-2{
			img{
				height: 40px !important;
				width: auto;
			}
		}
		.contact-area{
			margin: 0 0 2em;
			padding: 0;
			list-style: none;
			li{
				margin-bottom: 8px;
				i{
					margin-right: 8px;
					font-size: 20px;
					color: $primaryColor;
					&.ri-map-pin-line{
						font-size: 22px;
    					position: relative;
					}
					&.ri-phone-line{
						font-size: 23px;
						position: relative;
						top: 4px;
						left: -2px;
					}
					&.ri-mail-send-line{
						position: relative;
						top: 2px;
						margin-right: 11px;
					}
				}
				&.address1{
					position: relative;
					padding-left: 33px;
					i{
						position: absolute;
						top: -3px;
						left: 0;
					}
				}
			}
		}
		.footer_social{
			margin: 0;
			padding: 0;
			display: flex;
			flex-wrap: wrap;		
			list-style: none;
			li{
				margin: 0 10px 0 0;
				a{
					width: 36px;
    				height: 36px;
					background: none;
					border-radius: 50%;
					font-size: 16px;
					display: flex;
					align-items: center;
					justify-content: center;
					text-align: center;
					border: 1px solid #00000010;
					i:before{
						font-size: 14px;
					}
					&:hover{
						i:before{
							color: $primaryColor;
						}
					}
				}
			}
		}
	}
	.fa-ul{		
		font-weight: 500;
		font-size: 17px;
		li{
			display: flex;			
			i{
				font-size: 20px;
				line-height: 25px;
				color: $primaryColor;
				margin-right: 12px;
				top: 3px;
    			position: relative;
				&.ri-phone-line{
					font-size: 22px;
				}
			}
			+li{
				margin: 14px 0 0;
			}
			&.address1{
				padding-right: 20px;
			}
		}		
	}
}

.hfe-nav-menu.vertical{
	&.hfe-nav-menu nav > ul > li::before{
		display: none;
	}
	.rs_two_columns ul.hfe-nav-menu{
		display: flex;
		flex-wrap: wrap;
	}
	&.hfe-nav-menu nav.rs_two_columns > ul > li{
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/*-------------------
	Search Results
---------------------*/

body {
  &.search-results {
	.site-main > article {
	  	background: #F7F8FA;
		border-bottom: 0;
	  	border-top: none;
	  	margin-bottom: 40px;
		padding: 22px 30px 35px;
	 	border-radius: 0px;
	  	.entry-title {
			padding: 0;
			margin-bottom: 19px;
			padding-bottom: 15px;
			font-size: 30px;
			line-height: 42px;
			border-bottom: 1px solid #E5E5E5;
		a{
			color: $titleColor;
			&:hover{
				color: $primaryColor;
			}
		}
	  }

	  .entry-summary {
		padding: 0px;

		p:last-child {
		  margin-bottom: 0;
		}

		.search-button {
		  margin-top: 20px;
		  a {
			color: $titleColor;
			&:hover {
			  color: $titleColor;
			}

			i {
			  vertical-align: middle;
			  transition: 0.3s all ease;
			}
		  }
		}
	  }

	  .entry-footer {
		padding: 20px 35px;
		background: #ebebec;

		&:empty {
		  display: none;
		}

		span {
		  font-weight: 600;

		  a {
			font-weight: 400;
			color: #303030;

			&:hover {
			  color: #1a73e9;
			}
		  }
		}
	  }
	}

	.pagination-area .pagination {
	  margin: 30px 0 0;
	}
  }

  &.search-results .main-contain #content {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
  }
}

.title-yes .blog-content {
  display: flex;
  flex-direction: column-reverse;

  .blog-meta {
	width: 100%;
	justify-content: space-between;
  }
}

/*contact layout*/

input[type=submit] {
  border: none;
  padding: 10px 18px;
}

body div textarea {
  border: 1px solid #f1f1f1;
  padding: 10px 18px;
  height: 120px;
}

input {
  &[type=text], &[type=number], &[type=email], &[type=url], &[type=date] {
	padding: 15px 20px;
	border: 1px solid #f1f1f1;
	margin-bottom: 30px;
	outline: none;
  }
}

input {
	&[type=date]{
		width: 100%;
	}
}

select, input[type=password] {
  padding: 15px 20px;
  border: 1px solid #f1f1f1;
  margin-bottom: 30px;
  outline: none;
}

.wp-block-search {
  .wp-block-search__button {
	margin-left: 0;
  }

  margin-bottom: 20px;
}

.wp-block-archives select, .wp-block-categories select {
  width: 400px;
}

[type=search] {
  border: 1px solid #f1f1f1;
  border-radius: 5px 0 0 5px;
  padding: 10px 20px;
  outline: none;
}

.wpcf7-spinner {
  position: absolute;
  top: 14px;
}

.arrow-btn {
  position: relative;

  &:after {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 30px;
	right: 15%;
	top: -8px;
	transition: 0.4s;
	z-index: 3;
  }

  &:hover:after {
	right: 68%;
  }
}

.wpcf7 input[type=file] {
  border: none !important;
}

.submit-btn .wpcf7-submit {
  z-index: 9;
}

.contact-page2 {
  border: 10px solid #fbfbfb;
  padding: 50px;
  background: #fff;

  .form-button {
	text-align: center;
  }

  .submit-btn {
	margin-bottom: 0;
  }
}

div textarea {
  border: 1px solid #f1f1f1;
  margin-bottom: 30px;
}

input[type=submit] {
  background: $titleColorUnit;
}

div.wpcf7 .ajax-loader {
  position: absolute;
  top: 16px;
  right: -40px;
}

.contact-business h3 {
  margin-bottom: 10px;
}

.contact-page1 {
  input {
	&[type=text], &[type=number], &[type=email], &[type=password] {
	  margin-bottom: 30px;
	}
  }

  textarea {
	margin-bottom: 30px;
  }
}

div {
  &.wpcf7-validation-errors, &.wpcf7-acceptance-missing {
	border-color: #ff0000;
	color: #ff0000;
  }
}


body .miniform {
  button, input, optgroup, select {
	margin-bottom: 15px;
  }

  textarea {
	margin-bottom: 15px;
	height: 65px;
  }
}

.single-team .padding-top-skills {
  padding-top: 50px;
}

.rs-newsletter-area {
  position: relative;

  .rs-newsletter-btn {
	position: absolute;
  }
}

.animate-me {
  transition: all 500ms ease;

  &:hover {
	transform: translateY(-5px);
  }
}


#rs-header .menu-area .navbar ul li.sub-rights .sub-menu li ul {
  left: 100% !important;
  top: 0 !important;
}

.bs-sidebar.dynamic-sidebar {
  .service-singles {
	list-style: none;
	padding: 0;
	box-shadow: none;

	.widget-title {
	  padding: 0;

	  &:after {
		display: none;
	  }
	}

	.menu li {
	  border: none !important;
	  margin-top: 0 !important;

	  a {
		display: block;
		padding: 16px 18px;
		transition: all 0.5s ease;
		position: relative;
		font-size: 16px;
		background: #e8eaee;
		font-weight: 500;

		&:before {
		  content: "\ea6c";
		  position: absolute;
		  right: 12px;
		  top: 16px;
		  font-family: remixicon;
		  color: #010d14;
		}

		&:hover {
		  background: $primaryColor;
		  color: #010d14;

		  &:before {
			color: #010d14;
		  }
		}
	  }

	  &.current-menu-item a {
		background: $primaryColor;
		color: #010d14;

		&:before {
		  color: #010d14;
		}
	  }

	  	ul.sub-menu {
			margin: 0;
		li a {
		  display: block;
		  border: 2px solid #d3e1fb;
		  padding: 17px 18px;
		  transition: all 0.5s ease;
		  border-radius: 5px;
		  position: relative;
		  font-size: 16px;
		  font-weight: 600;

		  &:before {
			content: "\ea6c";
			position: absolute;
			right: 12px;
			top: 16px;
			font-family: remixicon;
			color: $primaryColor;
			display: block !important;
		  }

		  &:hover {
			background: $titleColorUnit;
			color: #ffffff;
			border-radius: 5px;
			border-color: $titleColorUnit;

			&:before {
			  color: #ffffff;
			}
		  }
		}
	  }
	}
  }

  .phones .address-icon:before {
	visibility: visible !important;
  }
}

.wpcf7-form-control.wpcf7-validates-as-date {
  margin-bottom: 30px;
}


.rstbd {
  display: flex;
  justify-content: space-between;

  .tab-image {
	flex: 0 0 50%;

	img {
	  padding-right: 50px;
	}
  }

  .tab-contents a.button {
	background: $titleColorUnit;
	color: #fff;
	padding: 12px 32px 12px 32px;
	border-radius: 5px;
	transition: all 0.3s ease 0s;
	display: inline-block;

	&:hover {
	  opacity: 0.8;
	}
  }
}
.rs-heading {
  &.style14 {
	.heading-line {
	  height: 5px;
	  width: 90px;
	  background: $titleColorUnit;
	  margin: 0px;
	  position: relative;
	  border-radius: 30px;

	  &:before {
		content: "";
		position: absolute;
		left: 0;
		top: -2.7px;
		height: 10px;
		width: 10px;
		border-radius: 50%;
		background: $primaryColor;
		-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-Rs-Dot;
		animation-name: MOVE-Rs-Dot;
	  }
	}

	&.center .heading-line {
	  margin: 20px auto;
	}

	&.right .heading-line {
	  margin-left: auto;
	  margin-right: 0;
	}
  }

  &.style15 .title-inner .sub-text {
	background: $titleColorUnit;
	display: inline-block;
	padding: 6px 25px;
	color: #ffffff;
	border-radius: 30px;
  }

  &.style16 .title-inner .sub-text {
	position: relative;
	padding-left: 95px;
	display: inline-block;

	&:before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: 12px;
	  height: 4px;
	  width: 76px;
	  background: $titleColorUnit;
	}

	&:after {
	  content: "";
	  position: absolute;
	  left: 15px;
	  top: 11px;
	  height: 6px;
	  width: 12px;
	  background: #ffffff;
	}
  }
}

@-webkit-keyframes MOVE-Rs-Dot {
  from {
	transform: translateX(0);
  }

  to {
	transform: translateX(88px);
  }
}

@keyframes MOVE-Rs-Dot {
  from {
	transform: translateX(0);
  }

  to {
	transform: translateX(88px);
  }
}

@-webkit-keyframes MOVE-Rs-Dot-Up {
	0% {
	  transform: translateY(0);
	}

	50% {
	  transform: translateY(20px);
	}
  
	100% {
	  transform: translateY(0px);
	}
  }
  
@keyframes MOVE-Rs-Dot-Up {
	0% {
		transform: translateY(0);
	}
  
	50% {
		transform: translateY(20px);
	}
	
	100% {
		transform: translateY(0px);
	}
}

.rs-grid-figure a img.hovers-logos {
  display: none;
}

.rsaddon-unique-slider .rs-addon-slider .slick-list {
  padding-top: 0;
}

.rs-contact-box .address-item .address-icon::before {
  opacity: 1;
  visibility: visible;
}

.rsl_style2 .grid-item .rs-grid-figure {
  .logo-img a {
	overflow: hidden;
	display: inline-block;
	position: relative;

	img {
	  transition: 0.3s;
	  filter: grayscale(100%);

	  &.hovers-logos {
		display: block;
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
	  }
	}
  }

  &:hover .logo-img a img {
	&.mains-logos {
	  display: block;
	  visibility: hidden;
	  transform: translateY(100%);
	}

	&.hovers-logos {
	  display: block;
	  opacity: 3;
	  visibility: visible;
	  transform: translateY(0%);
	  filter: grayscale(0%);
	}
  }
}

.rs-hours .ri-location {
  position: relative;
  top: -2px;
}

.sticky_form .search-input {
  border-radius: 0px !important;

  &::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #fff;
	opacity: 1;
  }

  &::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff;
	opacity: 1;
  }

  &:-ms-input-placeholder {
	/* IE 10+ */
	color: #fff;
	opacity: 1;
  }

  &:-moz-placeholder {
	/* Firefox 18- */
	color: #fff;
	opacity: 1;
  }
}

#scrollUp {
    text-align: center;
    bottom: 20px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 40px;
    z-index: 10;
    border-radius: 50%;
    background: $primaryColor;
    padding: 1px;
    transition: background 0.3s;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
    .scrollprogress {
        .progress-circle {
            transition: stroke-dashoffset 0.5s ease;
        }
    }
    .arrowup {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    &:hover {
        opacity: 0.8;
    }
}

.search-form.rs_stickys_form button{
	background: none !important;
}


/* ---------------------------
	Header Section
------------------------------*/

#rs-header {
  width: 100%;
  &.fixed-menu {
	width: 100%;
	max-width: 300px;
	left: 0;
	position: fixed;
	top: 0;
	z-index: 9999;
	height: 100vh;
	background: #fff;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	overflow-x: hidden;

	.logo-areas {
	  &.custom-sticky-logo {
		display: none !important;
	  }

	  &.custom-logo-area {
		padding-left: 8px;
		padding-bottom: 15px;
	  }
	}

	.header-inner {
	  .box-layout .nav.navbar ul li {
		position: relative !important;
	  }

	  &.sticky {
		position: relative !important;
		box-shadow: none !important;

		.logo-area {
		  &.sticky-logo {
			display: none;
		  }

		  display: block;
		  margin: 0;
		  padding: 0;
		}
	  }
	}

	.logo-area {
	  margin: 0;
	  padding: 0 0 20px;
	}

	.col-cell.menu-responsive {
	  width: 100%;
	}

	.header-inner {
	  padding: 60px 20px 25px;
	  display: flex;
	  align-items: center;
	  width: 100%;
	  flex-wrap: wrap;
	  height: 100vh;
	  align-content: space-between;

	  .box-layout {
		padding: 0;
		background: none;
		margin: 0;

		.menu-area {
		  width: 100%;
		}

		.nav.navbar {
		  margin: 0;
		  width: 100%;

		  .navbar-menu {
			width: 100%;
		  }

		  ul li {
			padding: 0 !important;
			display: block;
			margin: 20px 0;

			a {
			  padding: 7px 10px;
			}
		  }
		}
	  }

	  .toolbar-sl-share {
		padding-left: 25px;
		padding-right: 25px;

		.rs-contact-phone {
		  i {
			color: $titleColorUnit;
			padding-right: 6px;
		  }

		  a {
			color: $titleColor;

			&:hover {
			  color: $titleColorUnit;
			}
		  }
		}

		.rs-contact-email {
		  padding: 8px 0 8px;

		  i {
			color: $titleColorUnit;
			padding-right: 7px;
		  }

		  a {
			color: $titleColor;

			&:hover {
			  color: $titleColorUnit;
			}
		  }
		}

		ul {
		  list-style: none;
		  list-style: none;
		  margin: 12px 0 0;
		  display: flex;
		  justify-content: start;
		  align-items: center;

		  li {
			+ li {
			  margin-left: 25px;
			}

			a {
			  color: $titleColor;

			  i {
				font-size: 16px;
			  }

			  &:hover {
				color: $titleColorUnit;
			  }
			}
		  }
		}
	  }
	}

	.menu-area .navbar ul > li.menu-item-has-children {
	  > a:before, &.hover-minimize > a:after {
		display: none;
	  }
	}
  }

  .toolbar-area {
	background: $titleColorUnit;
	padding: 0;
	position: relative;
	transition: all 0.3s ease 0s;
	color: #fff;

	.toolbar-contact ul {
	  margin: 0;
	  padding: 0;
	  list-style: none;

	  li {
		display: inline-block;
		line-height: 50px;
		color: #fff;
		i {
		  font-size: 14px;
		  margin-right: 6px;
		  vertical-align: middle;
		  color: #fff;

		  &.ri-email {
			position: relative;
			top: 5px;

			&:before {
			  font-size: 23px;
			  margin-left: 0;
			}
		  }

		  &.ri-address {
			position: relative;
			top: 4px;

			&:before {
			  font-size: 19px;
			  margin-left: 0;
			}
		  }

		  &:before {
			font-size: 18px;
			margin-left: 0;
			position: relative;
			top: 3px;
		  }
		}

		a {
		  transition: all 0.3s ease 0s;
		  color: #fff;
		  border-right: 1px solid #5e81ff;
		  margin-right: 20px;
		  padding-right: 20px;

		  &:hover {
			color: #ccc;
		  }
		}

		&:last-child a {
		  border: none;
		}
	  }
	}
  }

  .row-table {
	display: flex;
	width: 100%;
	position: relative;
	align-items: center;
	justify-content: space-between;

	.logo-areas.custom-sticky-logo {
	  display: none;
	}
  }

  &.main-menu-center .row-table {
	justify-content: space-between;

	.header-logo {
	  display: unset;
	  flex: unset;
	}

	.nav.navbar {
	  margin-right: 0;
	}

	.menu-responsive {
	  display: flex;
	  justify-content: center;
	}

	.header-quote {
	  flex: unset;
	}
  }

  &.main-menu-leftfull .header-logo {
	display: flex;
	flex: 0.26;
  }

  .logo-area {
	position: relative;
	z-index: 9;
	float: left;
	margin-right: 20px;
	line-height: 40px;

	a {
		color: $titleColor;
		transition: all 0.3s ease 0s;
		font-size: 36px;
		font-weight: 700;
	  	img {
			display: inline-block;
			vertical-align: middle;
	  	}
	}

	.site-title a {
	  padding: 10px 0;
	  display: inline-block;
	  font-family: $titleFont;
	}
  }

  .menu-responsive {
	.sidebarmenu-area {
	  float: right;
	  padding-top: 30px;
	  padding-bottom: 30px;
	  padding-left: 22px;
	  position: relative;

	  &.off-border-left {
		padding-left: 5px;
		margin-left: 14px;
	  }
	}

	.sidebarmenu-search {
	  float: right;
	  padding-left: 12px;

	  .sticky_search, .phone_call {
		padding-top: 39px;
		padding-bottom: 39px;
		cursor: pointer;
		color: #28406d;
	  }

	  .sticky_search i:before, .phone_call i:before {
		font-size: 18px;
		font-weight: 600;
	  }

	  .sticky_form {
		position: absolute;
		bottom: -53px;
		right: 0;
		width: 100%;
		max-width: 300px;
		z-index: 99;
	  }
	}
  }

  .menu-sticky.sticky {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	ul.offcanvas-icon .nav-link-container a {
	  margin-top: 16px;
	  margin-bottom: 16px;
	}

	.menu-area .navbar ul li {
	  a {
		color: #222;
	  }

	  .sub-menu li {
		padding: 0 !important;
	  }
	}

	.row-table .logo-areas {
	  &.custom-sticky-logo {
		display: block;
	  }

	  &.custom-logo-area {
		display: none;
	  }
	}
  }

  &.header-style3 {
	.header-logo {
	  padding-top: 15px;

	  .logo-area {
		float: none;
		margin: 0;
	  }
	}

	.nav.navbar {
	  float: none;
	}

	.table_row .col-cell {
	  width: 33.33%;

	  &.header-logo {
		text-align: center;
	  }
	}

	.menu-cart-area > a {
	  border-left: 1px solid #000;
	  padding-left: 15px;
	}

	.sticky_form {
	  right: 15px !important;
	}

	.widget_shopping_cart_content ul li a {
	  padding: 0;
	  border: none;
	}

	.menu-area .navbar ul li ul.sub-menu {
	  min-width: 200px;
	}
  }

  .sticky_search {
	font-size: 18px;
  }

  &.header-style7 {
	.row-table .header-logo {
	  flex: unset;
	}

	.menu-area .navbar {
	  ul > li:last-child > a {
		margin-right: 0;
	  }

	  margin-right: 0px;
	}
  }
}

.menu-area {
  padding-top: 0;
  padding-bottom: 0;
  .navbar-collapse {
	padding-left: 0;
	padding-right: 0;
  }

  .navbar {
	margin-bottom: 0;
	border: 0;
	float: none;
	padding: 0;
	margin-right: 0;

	ul {
	  margin: 0;
	  padding: 0;
	  text-align: left;

	  li {
		position: relative;
		display: inline-block;
		transition: all 0.3s ease 0s;
		padding: 25px 10px;

		/*Dropdown Menu area*/
		&.current-menu-ancestor > a,
		&.current_page_item > a {
		  color: $primaryColor;
		}
		a {
		  font-size: 16px;
		  padding-left: 10px;
		  padding-right: 15px;
		  transition: 0.4s;
		  font-family: $menuFont;
		  font-weight: 500;
		}
		> a {
			color: $titleColor;
		}

		&:hover > a {
		  color: $primaryColor;
		}

		ul.sub-menu {
		  min-width: 260px;
		  padding-bottom: 0;
		  padding-top: 2px;
		  border-radius: 0px;
		  background: #002A34;
		  li {
			float: none;
			display: block;
			margin: 0;
			text-align: left;
			line-height: 26px;
			border-top: 1px solid #FFFFFF12;
			&:first-child {
			  	border-top: 0;
			}

			a {
			  	line-height: 25px;
			  	padding: 10px 20px;
			  	color: #fff;
				background: transparent;
			}

			&.current-menu-ancestor > a,
			&.current_page_item > a,
			&:hover > a {
			  color: $primaryColor;
			  background: transparent;
			}
		  }
		}

		&:hover ul {
		  opacity: 1;
		  position: absolute;
		}

		> a {
		  display: block;
		  text-decoration: none;
		  transition: unset;
		}

		&.active {
		  a {
			color: $primaryColor;
		  }

		  li {
			a, a:hover {
			  color: $primaryColor;
			}
		  }
		}

		.sub-menu {
		  left: 0;
		  opacity: 0;
		  position: absolute;
		  background: $whiteColor;
		  top: 100%;
		  transform: translateY(20px);
		  transform-origin: 0 0 0;
		  transition: all 0.3s ease 0s;
		  width: 200px;
		  z-index: 99999 !important;
		  text-align: left;
		  visibility: hidden;
		  box-shadow: 0px 10px 7px 0px rgba(48, 51, 50, 0.09);
		}

		ul li .sub-menu:before {
		  display: none;
		}

		.sub-menu li {
		  line-height: normal;
		  height: auto;
		  display: block;
		  margin: 0;
		  padding: 0;
		  a {
			display: block;
			padding: 12px 0;
			font-size: 15px;
			line-height: 25px;
			text-transform: none;
			transition: all 0.3s ease 0s;
			color: $titleColor;
			background: $whiteColor;
			&:before {
				right: 5px !important;
			}
		  }
		  &:hover{
			> a{				
				color:$primaryColor;
				background: $whiteColor;
				&:before {
					opacity: 1 !important;
				}				
			}
		  }
		  &.current-menu-item > a {
			color: $primaryColor;
		  }

		  ul {
			top: 0 !important;
		  }
		}
		&:hover ul {
		  opacity: 1;
		  transform: translateY(0px);
		  visibility: visible;
		}
	  }
	}

	.navbar-toggle {
	  background-color: $primaryColor;
	  border-radius: 2px;
	  transition: 0.4s ease all;

	  .icon-bar {
		background-color: #fff;
	  }

	  &:hover {
		opacity: 0.8;
	  }
	}
  }

  &.menu_type_dark {
	.navbar ul li a, .sticky_search i::before, .menu-cart-area i::before {
	  color: $titleColor;
	}
  }

  .navbar ul > li.menu-item-has-children > a {
	position: relative;

	&:before {
	  content: "\EA50";
	  position: absolute;
	  left: auto;
	  right: -8px;
	  top: 50%;
	  text-align: center;
	  font-family: remixicon !important;
	  z-index: 9999;
	  display: block;
	  cursor: pointer;
	  transform: translateY(-50%);
	  font-weight: 400;
	  font-size: 25px;
	}
  }
}

/*******off Canvas css********/

ul.offcanvas-icon {
  margin: 0;
  padding: 0;
  list-style: none;

  .nav-link-container a {
	background: $primaryColor;
    padding: 0px;
    width: 45px;
    height: 42px;
    border-radius: 5px;
    margin-left: 28px;
    line-height: 26px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	i{
		top: -5px;
	}
	&:hover {
	  opacity: 0.9;
	}
  }
}

ul.offcanvas-icon .nav-link-container a i {
    font-size: 20px;
}

.nav-link-container .nav-menu-link span {
  height: 2px;
  width: 25px;
  display: block;
  background: #fff;
  transition: none;
  cursor: pointer;
  list-style: none;
  margin: 5px 0;

  &.dot1 {
	width: 16px;
	float: right;
	clear: right;
	margin-right: 2px;
  }

  &.dot2 {
	clear: both;
  }

  &.dot3 {
	width: 16px;
	margin-left: 2px;
  }
}

.sidenav.offcanvas-icon.nav-active-menu-container {
  margin-top: 0;
}

.mobile-logos {
  display: none;
}

.sidenav {
  &.nav-active-menu-container {
	overflow-y: auto;
	padding: 50px 50px 0;
  }

  .sub-menu {
	display: none;
  }

  &.offcanvas-icon .rs-offcanvas-right {
	a {
	  display: block;
	  font-size: 18px;

	  &.quote-btn {
		margin-bottom: 25px;
		margin-top: 8px;

		span {
		  background: #fff;
		  color: #000;
		  border-radius: 3px;
		  display: inline-block;
		  padding: 7px 40px 4px;
		  transition: all 0.5s ease;
		}

		&:hover span {
		  background: #032e42;
		}
	  }

	  &.emails {
		padding-bottom: 20px;
	  }
	}

	.rs-innner-offcanvas-content {
	  padding-left: 135px;
	  padding-top: 27px;

	  .widget {
		margin: 0 0 35px;

		&.widget_contact_widget {
		  padding-top: 25px;
		}
	  }

	  a {
		transition: unset;
	  }
	}
  }

  .widget_cretic_flickr #rsflicker {
	margin-left: 0;

	li {
	  list-style-type: none;
	  position: relative;
	  width: 33.33%;
	  display: inline-block;

	  a {
		img {
		  opacity: 1;
		  width: 100%;
		}

		&:hover img {
		  opacity: 0.9;
		}
	  }
	}
  }
}

.mobile-menu-container {
  div ul {
	position: relative;

	li {
	  position: relative !important;

	  a {
		border-bottom: 1px solid #f0f0f0;

		&:hover {
		  color: $titleColorUnit;
		}
	  }
	}

	> li.current_page_parent > a {
	  color: $titleColorUnit;
	}
  }

  .menu > li:last-child a {
	border-bottom: none;
  }

  .social-icon-responsive ul li a {
	padding-right: 0;
	margin-right: 0;
  }
}

header.mainsmenuhide .header-inner:not(.sticky) .navbar-menu #primary-menu-single {
  display: none;
}

.sidenav .menu > li > .sub-menu li ul > li a {
  padding-left: 60px;
}

#mobile_menu {
  ul ul li, li:hover > ul > li {
	height: auto;
  }

  ul {
	li a {
	  width: 100%;
	  border-bottom: 0;
	}

	ul {
	  li a {
		width: 100%;
		border-bottom: 0;
		padding-left: 25px;
	  }

	  ul {
		li a {
		  padding-left: 35px;
		}

		position: relative;
		left: 0;
		width: 100%;
		margin: 0;
		text-align: left;
	  }

	  position: relative;
	  left: 0;
	  width: 100%;
	  margin: 0;
	  text-align: left;
	}
  }

  > ul > li {
	float: none;
  }

  &.align-right ul ul {
	position: relative;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: left;
  }

  > ul > li.has-sub > a {
	&:after, &:before {
	  display: none;
	}
  }

  ul ul > li.has-sub > a {
	&:after, &:before {
	  display: none;
	}
  }

  #menu-button {
	display: block;
	padding: 17px;
	color: #dddddd;
	cursor: pointer;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
  }

  .menu-button {
	&:after {
	  position: absolute;
	  top: 22px;
	  right: 17px;
	  display: block;
	  height: 4px;
	  width: 20px;
	  border-top: 2px solid #dddddd;
	  border-bottom: 2px solid #dddddd;
	  content: "";
	}

	&:before {
	  position: absolute;
	  top: 16px;
	  right: 17px;
	  display: block;
	  height: 2px;
	  width: 20px;
	  background: #dddddd;
	  content: "";
	}

	&.menu-opened {
	  &:after {
		top: 23px;
		border: 0;
		height: 2px;
		width: 15px;
		background: #ffffff;
		transform: rotate(45deg);
	  }

	  &:before {
		top: 23px;
		background: #ffffff;
		width: 15px;
		transform: rotate(-45deg);
	  }
	}
  }

  .submenu-button {
	position: absolute;
	z-index: 99;
	right: 0;
	top: 25px;
	display: block;
	height: 40px;
	width: 40px;
	cursor: pointer;
  }

  .menu li ul.sub-menu li ul.sub-menu a {
	padding-left: 50px;
  }
}

#rs-header .row-table .offcanvas-sec ul.offcanvas-icon {
  margin-top: 0;
}

#mobile_menu {
  ul {
	> li.menu-minimize > .submenu-button:before {
	  display: none !important;
	}

	ul .submenu-button {
	  height: 34px;
	  width: 34px;
	  top: 0;
	}
  }

  .submenu-button:before {
	content: "\EA4E" !important;
    font-family: remixicon !important;
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 25px;
    color: $titleColor;
    text-align: center;
    display: block;
  	}
}

body.logged-in .sidenav {
  top: 30px;

  .nav-link-container {
	top: 30px;
  }
}

#fixedmenus {
  ul ul li, li:hover > ul > li {
	height: auto;
  }

  ul {
	li a {
	  width: 100%;
	  border-bottom: 0;
	}

	ul {
	  li a {
		width: 100%;
		border-bottom: 0;
		padding-left: 25px;
	  }

	  ul {
		li a {
		  padding-left: 35px;
		}

		position: relative;
		left: 0;
		width: 100%;
		margin: 0;
		text-align: left;
	  }

	  position: relative;
	  left: 0;
	  width: 100%;
	  margin: 0;
	  text-align: left;
	}
  }

  > ul > li {
	float: none;
  }

  &.align-right ul ul {
	position: relative;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: left;
  }

  > ul > li.has-sub > a {
	&:after, &:before {
	  display: none;
	}
  }

  ul ul > li.has-sub > a {
	&:after, &:before {
	  display: none;
	}
  }

  #menu-button {
	display: block;
	padding: 17px;
	color: #dddddd;
	cursor: pointer;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
  }

  .menu-button {
	&:after {
	  position: absolute;
	  top: 22px;
	  right: 17px;
	  display: block;
	  height: 4px;
	  width: 20px;
	  border-top: 2px solid #dddddd;
	  border-bottom: 2px solid #dddddd;
	  content: "";
	}

	&:before {
	  position: absolute;
	  top: 16px;
	  right: 17px;
	  display: block;
	  height: 2px;
	  width: 20px;
	  background: #dddddd;
	  content: "";
	}

	&.menu-opened {
	  &:after {
		top: 23px;
		border: 0;
		height: 2px;
		width: 15px;
		background: #ffffff;
		transform: rotate(45deg);
	  }

	  &:before {
		top: 23px;
		background: #ffffff;
		width: 15px;
		transform: rotate(-45deg);
	  }
	}
  }

  .submenu-button {
	position: absolute;
	z-index: 99;
	right: 0;
	top: 0;
	display: block;
	height: 40px;
	width: 40px;
	cursor: pointer;
  }

  .menu li ul.sub-menu li ul.sub-menu a {
	padding-left: 50px;
  }
}

#rs-header .row-table .offcanvas-sec ul.offcanvas-icon {
  margin-top: 0;
}

#fixedmenus {
  ul {
	> li.menu-minimize > .submenu-button:before {
	  display: none !important;
	}

	ul .submenu-button {
	  height: 34px;
	  width: 34px;
	  right: 45px;
	}
  }

  .submenu-button:after {
	position: absolute;
	top: 19px;
	right: 14px;
	width: 12px;
	height: 1px;
	display: block;
	background: #000;
	content: "";
  }

  ul ul .submenu-button:after {
	top: 20px;
	right: 7px;
  }

  .submenu-button:before {
	position: absolute;
	top: 14px;
	right: 19px;
	display: block;
	width: 1px;
	height: 12px;
	background: #000;
	content: "";
  }

  ul ul .submenu-button:before {
	top: 14px;
	right: 13px;
  }

  .submenu-button.submenu-opened:before {
	display: none;
  }
}

.sidenav {
  .menu li ul.sub-menu li a {
	padding-left: 40px;
	font-size: 20px;

	&:before {
	  display: none;
	}
  }

  .widget_nav_menu {
	padding: 0 !important;
  }

  p {
	font-size: 16px;
	line-height: 30px;
  }

  #contact_widget-3 {
	margin: 35px 0 50px;
  }

  #text-9 {
	padding-top: 20px;
  }
}

.responsive-menus, .sidebarmenu-area.text-right.mobilehum {
  display: none !important;
}


.menu-area .navbar ul li > a {
  overflow: hidden;
}

ul.sub-menu {
  li a:before, ul ul li a:before {
	display: none;
  }
}

.rs-breadcrumbs .breadcrumbs-title span > :last-child {
  padding-right: 0;
  margin-right: 0;
}


.mobile-topnars .rs-address-area .rs-address-list {
  display: flex;
  margin-top: 18px;

  i {
	display: block;

	&:before {
	  margin: 0 20px 0 0;
	  font-size: 25px;
	  color: $titleColorUnit;
	  position: relative;
	  top: 4px;
	  font-weight: 600 !important;
	}

	&.ri-email:before {
	  font-size: 27px !important;
	}
  }

  b {
	font-weight: 600;
	font-size: 16px;
  }

  em {
	display: block;
	font-style: normal;
	line-height: 22px;
	font-size: 15px;
  }
}
.close-search {
  position: fixed;
  right: 50px;
  top: 50px;
  background: #ffffff;
  color: $titleColor;
  width: 55px;
  height: 55px;
  line-height: 58px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.5s ease;

  &:before {
	font-size: 14px;
	position: relative;
	top: -2px;
	left: 0px;
	font-weight: 700;
  }

  &:hover {
	opacity: 0.8;
  }
}

.menu-area .navbar ul li {
  &.menu-right .sub-menu li ul, .sub-menu li.menu-right ul {
	left: 100% !important;
  }
}

.header-share {
  display: inline-block;
  margin-right: 10px;

  ul {
	margin: 0;
	text-align: right;

	li {
	  display: inline-block;
	  margin-right: 10px;
	  line-height: 70px;
	  height: 70px;

	  &:last-child {
		margin-right: 0;
	  }

	  a {
		font-size: 16px;

		i {
		  color: #000;
		  padding-right: 8px;
		}

		&:hover i {
		  color: $primaryColor;
		}
	  }
	}
  }
}

.sticky .menu-area .navbar ul li .sub-menu {
  top: 100%;
}

.header-transparent .menu-cart-area span.icon-num, .header-style5 .menu-cart-area span.icon-num {
  background: #fff;
  color: #000;
}

.menu-area .navbar ul li ul li ul.sub-menu {
  margin-top: -2px;
}

#rs-header .menu-area nav.navbar ul li.mega ul li .sub-menu {
  position: relative;
  opacity: 1;
  transform: scaleY(1);
  right: auto !important;
  left: auto !important;
  padding: 0;
}

nav.nav.navbar {
  position: static !important;
}

.menu-area {
  .col-sm-9.menu-responsive {
	position: static !important;
  }

  .navbar ul > li.mega > ul.sub-menu .flex-mega {
	display: flex;
	justify-content: space-between;
  }
}

.page-template-page-single-php #rs-header.header-style8 .menu-area .navbar ul > li {
  &:hover a, &.active a {
	opacity: 0.8;
  }
}



/* Menu */

.menu-wrap-off {
  position: fixed;
  z-index: 999;
  width: 100%;
  right: 0;
  top: 0px;
  height: 100%;
  background: $whiteColor;
  padding: 46px 60px 50px 50px;
  font-size: 1.15em;
  transform: translate3d(480px, 0, 0);
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  max-width: 480px;
  overflow-y: auto;
  box-shadow: 20px 20px 80px rgba(95, 15, 197, 0.05);

  .inner-offcan {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	padding: 15px 0 0px;
	overflow-x: hidden;
	overflow-y: auto;

	.nav-link-container {
	  position: absolute;
	  right: 25px;
	  top: 25px;
	  display: block;
	  z-index: 99;
	  .close-button {
		color: #000;
		padding: 15px 11px 16px;
		display: flex;
		flex-wrap: wrap;
		transition: none;
		border-radius: 4px;

		span {
		  background: $titleColorUnit;
		  margin: 2px 4px;
		}
	  }
	}
  }

  .ri-cross.closes::before {
	color: #0a0a0a;
  }

  .logo-area {
	text-align: left;
	display: block;
	width: 100%;
	padding-bottom: 50px;
  }
}

.nav-link-container #close-button2.close-button span {
  &.hamburger1 {
	transform: rotate(-45deg) translate(-4px, 4px);
	width: 22px;
  }

  &.hamburger3 {
	transform: rotate(45deg) translate(0px, 0px);
	width: 22px;
  }
}

body.logged-in .menu-wrap-off {
  padding: 55px 60px 50px 50px;

  .inner-offcan .nav-link-container {
	top: 53px;
  }
}

.off-nav-layer {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: -1;
  background: #ffffff;
  border-radius: 50%;
  transition: 1s;
  transform: scale3d(0, 0, 0);
  display: block !important;

  &.off-open {
	transform: scale3d(1, 1, 1);
	display: block;
  }
}

.menu-ofcn.off-open {
  transform: translate3d(0, 0, 0);
  transition: transform 0.8s;
  transition-timing-function: ease;
  transition-timing-function: cubic-bezier(0.9, 0, 0.3, 1);
}

.inner-offcan {
  opacity: 0;
  transition: all 0.8s ease;
}

body.on-offcanvas .menu-ofcn.off-open .inner-offcan {
  opacity: 1;
}

.off-nav-layer {
  background: #fff;
}

.mobile-menu-container ul li.active a {
  color: $titleColorUnit;
}



.animate-intro-move-x {
  animation: move-x2 5s alternate infinite;
  -webkit-animation: move-x2 5s alternate infinite;
}

.counter-top-area.clip_enable {
  -webkit-clip-path: polygon(15% 0%, 100% 0, 100% 20%, 100% 74%, 85% 100%, 0 100%, 0% 80%, 0% 25%);
  clip-path: polygon(15% 0%, 100% 0, 100% 20%, 100% 74%, 85% 100%, 0 100%, 0% 80%, 0% 25%);
}

@keyframes move-x2 {
  from {
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
  }

  to {
	transform: translate3d(-60px, 0, 0);
	-webkit-transform: translate3d(-60px, 0, 0);
  }
}

@-webkit-keyframes move-x2 {
  from {
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
  }

  to {
	transform: translate3d(-60px, 0, 0);
	-webkit-transform: translate3d(-60px, 0, 0);
  }
}

.list-style {
  padding: 0;
  margin: 0;
  list-style: none;

  li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 5px;

	&:before {
	  content: "\f0a9";
	  font-family: FontAwesome;
	  position: absolute;
	  left: 0;
	  top: 0;
	  font-size: 20px;
	}
  }
}

.work-card {
    .elementor-widget-wrap {
        .elementor-widget-rs-image {
			transition: all 0.3s;
		}
		&:hover {
			.elementor-widget-rs-image {
				right: 0 !important;
				bottom: 0 !important;
			}
		}
    }
}

.services-btn.icon-after i:before {
  margin: 0;
}



ul.list > li {
  .image {
	&:before, &:after {
	  content: "";
	  position: absolute;
	  z-index: -1;
	  width: 50%;
	  height: 80%;
	  max-height: 60px;
	  box-shadow: 0 15px 40px 5px rgba(0, 0, 0, 0.5);
	  bottom: 20px;
	}

	&:before {
	  left: 20px;
	  transform: rotate(-5deg);
	}

	&:after {
	  right: 20px;
	  transform: rotate(5deg);
	}

	img {
	  min-width: 100%;
	  min-height: 150px;
	  display: block;
	  max-width: 100%;
	  height: auto;
	  border: 1px solid #C0C0C0;
	  padding: 7px;
	  background: $titleColorUnit;
	  border-radius: 2px;
	}
  }

  .content {
	color: #303030;
	font-size: 16px;
	line-height: 28px;

	.title {
	  text-transform: capitalize;
	  color: $titleColorUnit;
	  font-weight: 700;
	  font-size: 26px;
	  line-height: 36px;
	  margin-bottom: 5px;
	}
  }
}

.designation {
  color: #777;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 30px;
  float: left;

  i {
	margin-right: 10px;
  }
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.one-line {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.arrow-up {
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-style: none;
}

.arrow-down {
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-style: none;
}

.arrow-right {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-style: none;
}

.arrow-left {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-style: none;
}

.tekone-arrow {
	width: 0;
	height: 0;
	display: inline-block;
	vertical-align: middle;
	border-color: white;
	border-width: 5px;
	border-style: solid;
	&.up {
		border-left-color: transparent;
		border-right-color: transparent;
		border-top-style: none;
	}

	&.down {
		border-left-color: transparent;
		border-right-color: transparent;
		border-bottom-style: none;
	}

	&.right {
		border-top-color: transparent;
		border-bottom-color: transparent;
		border-right-style: none;
	}

	&.left {
		border-top-color: transparent;
		border-bottom-color: transparent;
		border-left-style: none;
	}
}

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;

  /* IE 6/7 fallback */
  *text-indent: -9999px;

  &:before {
	content: "";
	display: block;
	width: 0;
	height: 150%;
  }
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;

  &.focusable {
	&:active, &:focus {
	  clip: auto;
	  height: auto;
	  margin: 0;
	  overflow: visible;
	  position: static;
	  width: auto;
	}
  }
}

.invisible {
  visibility: hidden;
}

.clearfix {
  &:before {
	content: "";
	/* 1 */
	display: table;
	/* 2 */
  }

  &:after {
	content: " ";
	/* 1 */
	display: table;
	/* 2 */
	clear: both;
  }
  *zoom: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media print {
  * {
	background: transparent !important;
	color: #000 !important;
	box-shadow: none !important;
	text-shadow: none !important;
  }

  a {
	text-decoration: underline;

	&:visited {
	  text-decoration: underline;
	}

	&[href]:after {
	  content: " (" attr(href) ")";
	}
  }

  abbr[title]:after {
	content: " (" attr(title) ")";
  }

  .ir a:after {
	content: "";
  }

  a {
	&[href^="javascript:"]:after, &[href^="#"]:after {
	  content: "";
	}
  }

  pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
  }

  thead {
	display: table-header-group;

	/* h5bp.com/t */
  }

  tr {
	page-break-inside: avoid;
  }

  img {
	page-break-inside: avoid;
	max-width: 100% !important;
  }

  @page {
	margin: 0.5cm;
  }

  p, h2, h3 {
	orphans: 3;
	widows: 3;
  }

  h2, h3 {
	page-break-after: avoid;
  }
}

/*--------------------------------
	Latest News
----------------------------------*/

.rs-latest-news{
  .news-normal-block {
	padding: 0px;
	transition: 0.3s;
	background-size: cover !important;

	.news-img {
	  margin-bottom: 0px;
	  padding: 13px 13px 8px;

	  img {
		width: 100%;
	  }
	}

	.news-info {
	  padding: 50px 30px;
	  padding-right: 30%;
	  color: #fff;

	  a {
		color: #fff;

		&:hover {
		  color: $primaryColor;
		}
	  }

	  .categories {
		font-size: 16px;
		margin: 0 0 16px;
	  }
	}

	.news-title {
	  font-size: 28px;
	  margin-bottom: 20px;
	  font-weight: 600 !important;
	  line-height: 38px !important;

	  a {
		&:hover, &:focus {
		  color: $primaryColor;
		}
	  }
	}

	.news-desc p {
	  margin-bottom: 30px;
	}

	.news-btn a {
	  display: inline-block;
	  margin-left: auto;
	  padding: 4px 20px;
	  font-size: 13px;
	  font-weight: 500;
	  text-decoration: none;
	  background-color: $primaryColor;
	  color: #fff;
	  border-radius: 35px;
	  text-transform: uppercase;

	  &:hover {
		background-color: #032e42;
	  }
	}
  }

  .news-list-block .news-list-item {
	transition: 0.3s;
	background: #fff;

	&:hover {
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}

	.news-title {
	  font-size: 18px !important;
	  margin-bottom: 10px;
	  font-weight: 600 !important;

	  a {
		color: #212121;

		&:hover, &:focus {
		  color: $primaryColor;
		}
	  }
	}

	.news-desc p {
	  margin-bottom: 0;
	}

	.categories {
	  font-size: 14px;
	  margin: 0 0 10px;

	  a {
		color: #181818;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}

	.news-content {
	  padding: 20px;
	  background: #ffffff;
	}
  }
}

.latest-news-slider {
  .news-normal-block {
	box-shadow: none !important;
  }
}
.footer-copyright-area .menu-item a.hfe-menu-item:hover {
	color:$primaryColor;
}
.latest-news-nav {
  .slick-track {
	width: 100% !important;
  }

  .slick-slide {
	width: calc(100% - 2px) !important;
	margin-bottom: 12px;
	cursor: pointer;
	background-color: #fff;
	border: 1px solid rgba(34, 34, 34, 0.1);
	padding: 13px;
	transition: 0.3s;

	&.slick-current, &:hover {
	  background-color: $primaryColor;
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}

	&.slick-current img, &:hover img {
	  opacity: 0.8;
	}
  }
}

.rs-latest-news.style2 {
  .latest-news-nav {
	.slick-track {
	  width: 100% !important;
	}

	.slick-slide {
	  width: calc(100% - 2px) !important;
	  margin-bottom: 12px;
	  cursor: pointer;
	  background-color: #fff;
	  border: 1px solid rgba(34, 34, 34, 0.1);
	  padding: 13px;

	  &.slick-current, &:hover {
		background: #fff;
		border-color: #ccc;
		box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
	  }

	  &.slick-current img, &:hover img {
		opacity: 0.8;
	  }
	}
  }

  .news-list-block .news-list-item + .news-list-item {
	margin-top: 15px;
  }
}

.rs-services3 {
  overflow: hidden;
  padding: 0;
  margin: 0;

  .col-services10 {
	float: right;
	width: 80%;

	.feature-title {
	  padding-top: 26px;
	  margin: 0 0 13px;
	  font-size: 22px;

	  a {
		color: $titleColorUnit;
	  }
	}

	.slick-list {
	  padding: 0 0 0 25px;
	}
  }

  &.services-right {
	.col-services10 {
	  float: left;
	  width: 80%;

	  .slick-list {
		padding: 0 25px 0 0;
	  }
	}

	.col-services2 {
	  float: left;
	  width: 20%;
	}
  }

  .col-services2 {
	float: left;
	width: 20%;
  }

  .heading-block {
	text-align: center;

	h4 {
	  font-size: 16px;
	  margin: 15px 0;
	}
  }

  .slick-vertical .slick-slide {
	padding: 0 5px;
  }

  .item-thumb img {
	border-radius: 0 !important;
	cursor: pointer;
  }
}

.team-grid-style2 .team-item-wrap, .team-slider-style2 .team-item-wrap {
  position: relative;
  margin-bottom: 35px;
}

.team-grid-style2 .team-item-wrap a, .team-slider-style2 .team-item-wrap a {
  text-decoration: none;
}

.team-grid-style2 .team-item-wrap .team-img, .team-slider-style2 .team-item-wrap .team-img {
  position: relative;
  overflow: hidden;
}

.team-grid-style2 .team-item-wrap .team-img .team-img-sec, .team-slider-style2 .team-item-wrap .team-img .team-img-sec {
  position: relative;
}

.team-grid-style2 .team-item-wrap .team-img .wrap-text, .team-slider-style2 .team-item-wrap .team-img .wrap-text {
  box-shadow: 0 5px 20px rgba(34, 34, 34, 0.1);
  padding: 0 40px 12px;
  background: #fff;
}

.team-grid-style2 .team-item-wrap .team-img .wrap-text .team-desc, .team-slider-style2 .team-item-wrap .team-img .wrap-text .team-desc {
  margin-bottom: 0;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text, .team-slider-style2 .team-item-wrap .team-img .normal-text {
  width: 100%;
  transition: all 0.5s ease 0s;
  position: relative;
  padding-bottom: 0;
  z-index: 1;
  margin-bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 3px 3px 0 0;
  padding: 15px 15px 20px;
  margin-top: -35px;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: 0.4s;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-name, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-name {
  margin-top: 0 !important;
  line-height: 28px !important;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-name a, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-name a {
  position: relative;
  margin-bottom: 0;
  font-size: 18px;
  text-transform: capitalize;
  z-index: 111;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text {
  .team-social, .team-name {
	color: #ffffff;
  }
}

.team-slider-style2 .team-item-wrap .team-img .normal-text {
  .team-social, .team-name {
	color: #ffffff;
  }
}

.team-grid-style2 .team-item-wrap .team-img .normal-text {
  .team-social a, .team-name a {
	color: #ffffff;
  }
}

.team-slider-style2 .team-item-wrap .team-img .normal-text {
  .team-social a, .team-name a {
	color: #ffffff;
  }
}

.team-grid-style2 .team-item-wrap .team-img .normal-text {
  .team-social a:hover, .team-name a:hover {
	color: #ccc;
  }
}

.team-slider-style2 .team-item-wrap .team-img .normal-text {
  .team-social a:hover, .team-name a:hover {
	color: #ccc;
  }
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .cat-team, .team-slider-style2 .team-item-wrap .team-img .normal-text .cat-team {
  color: #ffffff;
  line-height: 1.4;
  display: block;
  margin: 0 0 10px;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-social, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-social {
  padding-top: 2px;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-social a, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-social a {
  padding: 0 3px;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .nolink, .team-slider-style2 .team-item-wrap .team-img .normal-text .nolink {
  pointer-events: none;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .cat-doctor, .team-slider-style2 .team-item-wrap .team-img .normal-text .cat-doctor {
  font-size: 14px;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .cat-doctor a, .team-slider-style2 .team-item-wrap .team-img .normal-text .cat-doctor a {
  color: #ffffff;
  text-transform: uppercase;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-name, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-name {
  margin: 18px 0 4px;
  font-weight: 600;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-title, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-title {
  color: #eee;
  font-size: 13px;
  font-weight: 400;
  padding: 0;
  display: block;
  text-transform: uppercase;
}

.team-grid-style2 .team-item-wrap .team-img .normal-text .team-title a, .team-slider-style2 .team-item-wrap .team-img .normal-text .team-title a {
  color: #eee;
  pointer-events: none;
}

.team-grid-style2 .team-item-wrap:hover .team-img .normal-text, .team-slider-style2 .team-item-wrap:hover .team-img .normal-text {
  bottom: 0;
}

.team-grid-style2 .team-item-wrap:hover .team-img .team-img-sec:before, .team-slider-style2 .team-item-wrap:hover .team-img .team-img-sec:before {
  height: 100%;
}

.team-grid-style2 .appointment-bottom-area, .team-slider-style2 .appointment-bottom-area {
  overflow: hidden;
  text-align: left;
  padding-top: 18px;
  padding-bottom: 25px;
}

.team-grid-style2 .appointment-bottom-area {
  .app_details a, .app_btn a {
	position: relative;
	color: #fff;
  }
}

.team-slider-style2 .appointment-bottom-area {
  .app_details a, .app_btn a {
	position: relative;
	color: #fff;
  }
}

.team-grid-style2 .appointment-bottom-area {
  .app_details:hover a, .app_btn:hover a {
	color: #fff;
	opacity: 0.9;
  }
}

.team-slider-style2 .appointment-bottom-area {
  .app_details:hover a, .app_btn:hover a {
	color: #fff;
	opacity: 0.9;
  }
}

.team-grid-style2 .appointment-bottom-area .app_details, .team-slider-style2 .appointment-bottom-area .app_details {
  margin-top: 10px;
}

.team-grid-style2 .appointment-bottom-area .app_details a, .team-slider-style2 .appointment-bottom-area .app_details a {
  color: #303030;
}

.team-grid-style2 .appointment-bottom-area .app_details:hover a, .team-slider-style2 .appointment-bottom-area .app_details:hover a {
  color: $primaryColor;
}

.team-grid-style2 .appointment-bottom-area .app_details, .team-slider-style2 .appointment-bottom-area .app_details {
  float: left;
}

.team-grid-style2 .appointment-bottom-area .app_btn, .team-slider-style2 .appointment-bottom-area .app_btn {
  float: right;
}

.icon-button a {
  background: $primaryColor;
  color: #fff;
  padding: 3px 17px;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 25px;
  border-radius: 18px;

  &:hover {
	color: #fff;
	background: $titleColorUnit;
  }

  i:before {
	font-size: inherit;
  }
}

.blogfull {
  box-shadow: 0 8px 6px -6px #eee;
  background: #fbfbfb !important;
  padding: 30px 40px !important;

  .blog-title {
	min-height: 50px;
  }

  .icon-button a {
	margin-bottom: 0px;
  }
}

.rs-portfolio.swiper {
  .swiper-button-prev::before, .swiper-button-next::before {
	top: 8px;
  }
}

.rsaddon-unique-slider ul.blog-meta li {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;

  &:after {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	height: 4px;
	width: 4px;
	border-radius: 4px;
	background: $titleColorUnit;
  }

  &:last-child {
	padding-right: 0px;
	margin-right: 0px;

	&:after {
	  display: none;
	}
  }
}

.rs-blog-grid .rs-addon-slider .blog-item {
  padding: 0;
  margin: 15px 15px 30px;

  .blog-inner-wrap {
	border-radius: 30px;
  }
}

.rsaddon-unique-slider .rs-addon-slider .slick-list {
  padding: 0 !important;
}

.rs-portfolio-style6 .portfolio-item {
  .portfolio-image {
	overflow: hidden;
  }

  img {
	transition: 0.4s;
  }
}

.rs-blog-grid .blog-item.default .blog-content p {
  padding-bottom: 20px;
}

.rs-portfolio-style6 .portfolio-item:hover img {
  transform: scale(1.1);
}

.wpcf7 p {
  margin: 0;
}

.chatbot-submit-btn {
  display: inline-block;
  position: relative;

  .wpcf7-submit {
	border-radius: 30px;
	padding-right: 80px;
	background: #2547b7;
	border: 2px solid #2547b7;
	padding: 14px 80px 15px 35px;
	font-weight: 500;
	text-transform: uppercase;
  }

  &:before {
	position: absolute;
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 55px;
	text-align: center;
	content: "\f105";
	font-family: "FontAwesome";
	right: -5px;
	z-index: 2;
	background: #FFD100;
	color: #fff;
  }

  .wpcf7-spinner {
	position: absolute;
	right: -100px;
	top: 15px;
  }

  &:hover .wpcf7-submit {
	border-color: #FFD100;
	background: transparent;
	color: #666;
  }
}

.rsaddon-unique-slider {
  .blog-item {
	.blog-inner-wrap {
	  transition: all 500ms ease;

	  &:hover .custom-blog-btn {
		opacity: 1;
	  }
	}

	.custom-blog-btn {
	  transition: all 0.3s ease-in;
	  -webkit-transition: all 0.3s ease-in;
	  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
	  opacity: 0;
	  position: relative;

	  i:before {
		margin-left: 0 !important;
	  }
	}
  }

  .blog-content {
	.post-categories {
	  padding-left: 0;
	  margin-left: 0;
	  margin-bottom: 0;

	  li {
		list-style: none;
		margin-bottom: 8px;

		a {
		  font-size: 14px;
		}
	  }
	}

	.author-avatar img {
	  border-radius: 50%;
	  margin-right: 8px;
	}

	.blog-footer .blog-meta {
	  i {
		margin-right: 5px;
	  }

	  date {
		text-decoration: underline;
		font-weight: 600;
	  }
	}

	.custom-blog-btn {
	  transition: all 0.3s ease-in;
	  -webkit-transition: all 0.3s ease-in;
	  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
	  opacity: 0;
	  position: relative;

	  i:before {
		margin-left: 0 !important;
	  }

	  &:hover {
		opacity: 1;
	  }
	}

	.blog-btn-part2 {
	  position: relative;
	  z-index: 10;
	  margin-bottom: 20px;
	}
  }
}

.rs-newsletter-form input {
  &[type=email] {
	padding: 16px 20px;
	width: 80%;
	border-width: 0;
  }
}

.widget_mc4wp_form_widget .mc4wp-form-fields {
  position: relative;
}

.rs-footer .widget_mc4wp_form_widget {
  top: -15px;
}

.team-grid-style3 .team-img, .team-slider-style3 .team-img {
  position: relative;
  padding: 0;
}

.team-grid-style3 .team-img img, .team-slider-style3 .team-img img {
  position: relative;
  z-index: 99;
}

.team-grid-style3 .team-img .team-img-sec, .team-slider-style3 .team-img .team-img-sec {
  position: relative;
}

.team-grid-style3 .team-img .team-img-sec:before, .team-slider-style3 .team-img .team-img-sec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: $titleColorUnit;
  opacity: 0.8;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.team-grid-style3 .team-img .team-img-sec .team-content, .team-slider-style3 .team-img .team-img-sec .team-content {
  position: absolute;
  display: block;
  left: 50%;
  width: 100%;
  top: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 110;
  color: #fff;
  padding: 30px;
  transition: all 0.3s ease 0s;
  height: 100%;
}

.team-grid-style3 .team-img .team-img-sec .team-content .author-text, .team-slider-style3 .team-img .team-img-sec .team-content .author-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.team-grid-style3 .team-img .team-img-sec .team-content {
  .team-name, .team-title {
	background: #fff;
  }
}

.team-slider-style3 .team-img .team-img-sec .team-content {
  .team-name, .team-title {
	background: #fff;
  }
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-name, .team-slider-style3 .team-img .team-img-sec .team-content .team-name {
  margin-bottom: 0;
  font-size: 20px;
  display: block;
  padding: 0 10px;
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-name a, .team-slider-style3 .team-img .team-img-sec .team-content .team-name a {
  color: #fff;
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-title, .team-slider-style3 .team-img .team-img-sec .team-content .team-title {
  color: #fff;
  position: relative;
  font-size: 14px;
  display: inline-block;
  padding: 3px 10px;
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-title:after, .team-slider-style3 .team-img .team-img-sec .team-content .team-title:after {
  position: absolute;
  content: "";
  width: 170px;
  height: 2px;
  background: #f2f2f2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-social a, .team-slider-style3 .team-img .team-img-sec .team-content .team-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 16px;
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-social a:last-child, .team-slider-style3 .team-img .team-img-sec .team-content .team-social a:last-child {
  margin-right: 0;
}

.team-grid-style3 .team-img .team-img-sec .team-content .team-social a:hover, .team-slider-style3 .team-img .team-img-sec .team-content .team-social a:hover {
  opacity: 0.8;
}

.team-grid-style3 .team-img .team-img-sec:hover .team-content, .team-slider-style3 .team-img .team-img-sec:hover .team-content {
  opacity: 1;
}

.team-grid-style3 .team-img .team-img-sec:hover .team-content .author-text, .team-slider-style3 .team-img .team-img-sec:hover .team-content .author-text {
  opacity: 1;
  visibility: visible;
}

.team-grid-style3 .team-img {
  &:after {
	top: 0;
  }

  &:before {
	bottom: 0;
  }
}


.nolink {
  color: inherit;
  pointer-events: none;
}

.clients-grids {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;

  li {
	display: inline-block;

	a {
	  display: inline-block;
	  padding: 10px 20px;
	}
  }

  &.cols-one li {
	width: 100%;
  }

  &.cols-two li {
	width: 50%;
  }

  &.cols-three li {
	width: 33.333%;
  }

  &.cols-four li {
	width: 25%;
  }

  &.cols-five li {
	width: 20%;
  }

  &.cols-six li {
	width: 16.666%;
  }
}

#team-list-style {
  .team-img {
	background: #fff;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.04);

	.wrap-text {
	  padding: 30px 20px;
	}
  }

  .team-name {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-weight: 600 !important;
	font-size: 22px;
	line-height: 30px;

	a {
	  color: $primaryColor;

	  &:hover {
		color: $titleColorUnit;
	  }
	}
  }

  .team-title {
	font-size: 16px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
  }

  .social-info {
	overflow: hidden;

	.phone {
	  float: left;

	  &:first-child {
		margin-right: 18px;
	  }

	  a {
		color: #303030;

		&:hover {
		  color: $primaryColor;
		}
	  }

	  i {
		margin-right: 6px;
		position: relative;
		top: 2px;

		&:before {
		  font-size: 17px;
		}
	  }
	}
  }

  .team-social {
	margin-top: 20px;
	margin-bottom: 24px;

	.social-icon {
	  margin-right: 13px;
	}

	i {
	  font-size: 16px;
	  transition: 0.4s;
	  color: #303030;
	  text-align: center;

	  &:hover {
		color: $primaryColor;
	  }
	}
  }
}

.rs-contact-box .address-item.boxstyle2 {
  .address-icon {
	width: 40px;
	height: 40px;
	line-height: 38px;

	i {
	  font-size: 17px;
	  line-height: 20px;
	}

	&:before, &:after {
	  display: none;
	}
  }

  .address-text .text {
	display: block;

	.des {
	  display: block;
	}
  }
}

/* ----------------------------------
	09. Portfolio
-------------------------------------*/

.information-sidebar {
  li.widget {
	background: #fff;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
	padding: 20px 20px 40px;

	h2.widget-title {
	  padding: 15px 20px 30px;
	  border-radius: 0;
	  font-size: 20px;
	  color: $titleColor;
	  line-height: 26px !important;
	  margin: 0px !important;
	  text-transform: uppercase;
	}

	ul {
	  &.fa-ul {
		padding-left: 0;
		margin-left: 20px;
	  }

	  padding-left: 0;
	  margin-left: 20px;
	}
  }
  ul, li {
	list-style: none;
  }

  .serivce-brochure {
	padding: 40px 40px 50px;
	border-radius: 0;
	background: $primaryColor;
	margin: -20px -20px -40px !important;

	.title {
	  padding: 0px 0px 30px;
	  border-radius: 0;
	  font-size: 20px;
	  color: #ffffff;
	  line-height: 26px !important;
	  margin: 0px !important;
	  text-transform: uppercase;
	}

	p {
	  color: #fff;
	}
  }

  .widget_nav_menu {
	ul.menu {
	  margin: 0;
	}

	li {
	  padding: 0;

	  + li {
		margin-top: 20px;
	  }

	  a {
		color: #303030;
		font-size: 16px;
		font-weight: 500;
		position: relative;

		&:hover {
		  color: $titleColorUnit;
		}
	  }

	  &.current-menu-item a {
		color: $titleColorUnit;
	  }

	  &:last-child {
		margin-bottom: 0;
	  }
	}
  }

  .widget_contact_widget {
	li {
	  margin-bottom: 20px;

	  &:last-child {
		margin-bottom: 0;
	  }

	  a {
		color: #303030;
	  }

	  &.address1 {
		position: relative;

		i {
		  position: absolute;
		  top: 0;
		  display: inline-block;
		}

		span {
		  margin: -10px 0 0;
		  display: inline-block;
		  padding-left: 41px;
		}
	  }
	}

	i {
	  font-size: 25px;
	  padding-right: 23px;
	  color: $primaryColor;
	}
  }
}

.rs-portfolio {
  &.col-filter .portfolio-content .portfolio-filter {
	text-align: center !important;
  }

  .portfolio-slider .portfolio-item {
	position: relative;
	margin: 0 15px;

	.categories {
	  position: absolute;
	  top: 16px;
	  right: 25px;
	  z-index: 11;
	  font-size: 16px;

	  a {
		color: $primaryColor;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}

	.p-title {
	  position: absolute;
	  bottom: 16px;
	  left: 0;
	  z-index: 11;
	  width: 100%;
	  padding: 0 25px;
	  margin-bottom: 0;
	  font-size: 18px;
	  font-weight: 600 !important;
	  line-height: 30px !important;

	  a {
		color: $primaryColor;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}
  }

  &.style1 .portfolio-item {
	overflow: hidden;
	position: relative;

	.categories, .p-title {
	  position: static;
	}

	.categories a, .p-title a {
	  color: #fff;
	  position: relative;
	  z-index: 10;
	  transition: 0.4s;
	}

	.categories a:hover, .p-title a:hover {
	  color: $titleColorUnit;
	}

	.portfolio-content {
	  position: absolute;
	  text-align: center;
	  width: 100%;
	  height: 100%;
	  top: 30%;
	  left: 0;
	  transition: 0.4s;
	  opacity: 0;
	  visibility: hidden;
	}

	&:hover .portfolio-content {
	  top: 0;
	  opacity: 1;
	  visibility: visible;
	}
  }

  &.style2 .portfolio-slider .portfolio-item {
	.portfolio-img {
	  position: relative;

	  .portfolio-content {
		position: absolute;
		width: 100%;
		visibility: hidden;
		transition: 0.4s;
		bottom: -50px;

		.categories {
		  top: auto;
		  bottom: 20px;
		  left: 25px;

		  &:before {
			display: none;
		  }

		  a {
			color: #fff;

			&:hover {
			  color: $titleColorUnit;
			}
		  }
		}

		h3.p-title {
		  top: auto;
		  bottom: 52px;

		  a {
			color: #fff;

			&:hover {
			  color: $primaryColor;
			}
		  }
		}
	  }
	}

	&:hover .portfolio-content {
	  opacity: 1;
	  visibility: visible;
	  bottom: 0;
	}
  }

  &.style5 .portfolio-item {
	.portfolio-img-sinlge {
	  overflow: hidden;

	  img {
		transition: 0.4s;
		transform: scale(1);
	  }
	}

	.portfolio-content {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding-top: 15px;
	}

	.p-title {
	  padding: 0;
	}

	.categories, .p-title {
	  position: static;
	}

	.categories {
	  background: #fbfbfb;
	  padding: 2px 10px;
	}

	&:hover .portfolio-img-sinlge img {
	  transform: scale(1.2);
	}
  }

  &.style6 .portfolio-item {
	.portfolio-img-sinlge {
	  overflow: hidden;

	  img {
		transition: 0.4s;
		transform: scale(1);
	  }
	}

	.portfolio-content {
	  padding-top: 15px;
	}

	.p-title {
	  padding: 0;
	}

	.categories, .p-title {
	  position: static;
	}

	&:hover .portfolio-img-sinlge img {
	  transform: scale(1.2);
	}
  }

  &.gap_no .portfolio-slider .portfolio-item {
	margin: 0;
  }

  &.vertical-slider.style4 .portfolio-slider {
	.portfolio-img {
	  position: relative;
	  height: 100vh;
	  overflow: hidden;
	  background-position: center top !important;
	  transition: all 1s ease;
	}

	.portfolio-item {
	  text-align: center;

	  .categories {
		top: auto;
		bottom: 50px;
		left: 0;
		right: 0;
		padding: 0 25px;
		color: #fff !important;

		a {
		  color: #fff !important;
		  font-size: 14px;
		}
	  }

	  .p-title {
		bottom: 80px;
		padding-top: 30px;

		a {
		  color: #fff !important;
		  position: relative;

		  &:before {
			content: "";
			width: 2px;
			height: 40px;
			background: $titleColorUnit;
			text-align: center;
			display: block;
			margin: 0px auto;
			position: relative;
			top: -10px;
			transition: 0.4s;
		  }
		}
	  }

	  &:hover {
		.p-title a {
		  color: $titleColorUnit !important;

		  &:before {
			height: 100px;
		  }
		}

		.portfolio-img {
		  transform: scale(1.04);
		}
	  }
	}
  }
}

.rs-project-section {
  &.gray-bg {
	background: #f7f7fc;
	padding: 90px 0 50px;

	h3 {
	  margin-bottom: 50px !important;
	}
  }

  .project-item {
	position: relative;
	overflow: hidden;
	z-index: 1;

	.project-content {
	  .p-icon, .title {
		position: absolute;
		z-index: 11;
		margin: 0;
	  }

	  .p-icon {
		visibility: hidden;
		transition: all 0.3s ease 0s;
		top: -100px;
		right: 25px;
		text-align: right;
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		background: $primaryColor;
		border-radius: 50%;

		i {
		  color: #ffffff;
		  font-size: 15px;

		  &:before {
			font-size: 15px;
		  }
		}
	  }

	  .title {
		font-size: 18px;
		font-weight: 600;
		bottom: -100px;
		left: 25px;

		span {
		  font-size: 16px;
		  font-weight: 400;
		  padding-bottom: 5px;
		  display: block;
		  color: #ffffff;
		}

		a {
		  color: #ffffff;

		  &:hover {
			color: $primaryColor;
		  }
		}
	  }
	}

	&:hover .project-content {
	  .title {
		bottom: 20px;
	  }

	  .p-icon, .title {
		opacity: 1;
		visibility: visible;
	  }

	  .p-icon {
		top: 20px;
	  }
	}
  }

  .view-project {
	margin-top: 60px;
  }

  .nav-style .owl-controls .owl-nav {
	position: absolute;
	left: 17.5%;
  }
}

body.single-services .rs-porfolio-details {
  padding: 120px 0 0;
}

.rs-portfolio-style7 {
  .showcase li {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 0 0 0;
	position: relative;
  }

  a .showcase-caption {
	display: inline-block;
	z-index: 2;
	color: white;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.33);
	padding: 20px;
  }

  .showcase {
	margin: 0 auto 0;
	display: block;

	li:nth-of-type(3n+4) {
	  clear: left;
	}
  }

  .showcase-item {
	line-height: 1;
	z-index: 3;

	&.hover {
	  z-index: 1;
	}

	a {
	  display: block;
	  padding: 15px 25px 10px 0;
	}

	img {
	  position: fixed;
	  z-index: 1;
	  opacity: 1;
	  display: none;
	  transition: opacity 0.35s, transform 0.35s;
	}

	a {
	  h3 {
		position: relative;
		z-index: 3;
		transition: opacity 0.35s, transform 0.35s;
	  }

	  p {
		position: relative;
		z-index: 3;
		transition: opacity 0.35s, transform 0.35s;
		margin: 0 !important;
	  }

	  &:hover {
		+ img {
		  top: 0;
		  left: 0;
		  right: 0;
		  bottom: 0;
		  width: 100%;
		  display: block;
		}

		color: white;
		background: none;
	  }
	}

	h3 {
	  font-size: 36px;
	  padding: 0.45em 0.6em 15px 0;
	  font-weight: 600;
	  letter-spacing: 0px;
	  margin: 0;
	}
  }
}

/*responsive styles below*/
@media screen and (max-width: 1023px) {
  .showcase {
	margin: 0 auto;
  }

  .showcase-item a img {
	border: 0px;
  }
}

/* ----------------------------------
	10. cl-testimonial style 7
-------------------------------------*/

#cl-testimonial {
  &.testimonials-area.slider8 .images-testimonial .desc-text .ri-right-quote:before {
	font-size: 50px !important;
  }

  .testimonial-slide7 {
	.slick-track {
	  padding-bottom: 40px;
	}

	.single-testimonial {
	  padding: 0;
	  background: rgba(11, 43, 167, 0.6) !important;
	  border-radius: 0;
	  padding: 40px 45px 46px 146px;
	  position: relative;
	  margin: 0 20px;
	  border-radius: 5px;
	  color: #fff;

	  &:after, &:before {
		content: "";
		position: absolute;
		display: block;
		background: transparent;
		transition: all 0.2s;
		width: 0px;
		height: 0px;
		z-index: 100;
		top: -3px;
		border: none !important;
		right: 0;
	  }

	  &:after {
		top: auto;
		bottom: 0;
		border-bottom: 0 solid;
		border-top: 30px solid transparent;
		border-bottom-color: #fff;
	  }
	}

	.right-content {
	  width: 100%;
	  float: none;
	}

	.testimonial-left {
	  width: 100%;
	  float: none;

	  img {
		border: 2px solid #fff;
	  }
	}

	.right-content {
	  position: relative;

	  i {
		top: 5px;
		padding-right: 0;
		position: absolute;
		left: -18px;
	  }
	}

	.testimonial-left {
	  position: absolute;
	  left: 33px;
	  top: 50%;
	  transform: translateY(-50%);
	  max-width: 100%;
	  width: auto;
	  border-radius: 50%;
	}

	p {
	  margin: 0;
	  padding: 0;
	}
  }

  &.testimonials-area.slider8 {
	position: relative;

	.images-testimonial {
	  img {
		display: block;
		width: 90px !important;
		height: 90px !important;
		margin: 1em auto;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		border-radius: 99em;
		border: 5px solid #eee;
		box-shadow: 0 3px 70px 0 rgb(255, 255, 255) !important;
	  }

	  .desc-text {
		margin: 0;
		padding: 80px 0px 40px !important;
		text-align: center !important;
		font-size: 17px;
		line-height: 32px;
		max-width: 620px;
		margin: 0 auto;
		position: relative;

		i {
		  display: block;
		  text-align: center;
		  font-size: 50px;
		  opacity: 0.3;
		  margin: 0;
		  top: 10px;
		  position: absolute;
		  left: 50%;
		  transform: translateX(-50%);
		}
	  }

	  img {
		width: 90px;
		margin: 0 auto 12px;
		box-shadow: 0 20px 68px rgba(34, 34, 34, 0.4);
	  }
	}

	p {
	  margin: 0 auto !important;
	}

	ul.author {
	  text-align: center;
	  padding: 0px !important;

	  li {
		font-size: 20px;
		text-transform: uppercase;
		font-weight: 500;

		&.titles-dsignation {
		  text-transform: capitalize;
		  font-size: 15px;
		  padding-top: 0;
		}
	  }
	}

	&.text-left {
	  .images-testimonial {
		padding-left: 20px;
		padding-top: 45px;

		p {
		  position: relative;
		  max-width: 100%;
		  text-align: left;
		  margin: 0 auto !important;
		}

		i {
		  font-size: 80px;
		  position: absolute;
		  left: -18px;
		  opacity: 1;
		  top: -30px;
		  z-index: -1;
		}

		ul.author, p {
		  text-align: left !important;
		}
	  }
	}
  }
}

body .rselement-dual-btn {
  font-size: 16px;
}

#cl-testimonial.cl-testimonial1 .testimonial-slide.slider1 {
  ul.cl-author-info li:first-child {
	font-size: 16px !important;
  }

  .testimonial-item {
	.testimonial-content {
	  padding: 60px !important;
	  text-align: center;

	  p {
		text-align: center;
		font-style: normal !important;
	  }
	}

	i {
	  display: none;
	}
  }
}

.cl-testimonial.cl-testimonial9 {
  .content-box {
	background: #fff;
	padding: 40px;
	min-height: 250px;
	position: relative;

	p {
	  padding: 0 !important;
	  margin-bottom: 0 !important;
	  font-style: normal;

	  i {
		text-align: left;
	  }
	}

	&:after {
	  content: "//";
	  position: absolute;
	  bottom: -17px;
	  text-align: center;
	  left: 40px;
	  right: auto;
	  display: block;
	  font-size: 20px;
	  color: $titleColorUnit;
	}
  }

  .testimonial-image {
	flex: 1;
	padding-left: 20px;

	img {
	  border-radius: 50%;
	  max-width: 90px;
	}
  }

  .img-box {
	display: flex;
	flex-wrap: wrap;
	margin-top: 35px;
	margin-bottom: 30px;
	align-content: space-around;
  }

  i {
	display: block;

	&:before {
	  font-size: 45px;
	  color: $titleColorUnit;
	}
  }

  ul.cl-author-info {
	flex: 1;
	padding-left: 0px !important;
	padding-top: 15px !important;
  }
}

body .cl-testimonial2 {
  .image-testimonial .testimonial-content {
	box-shadow: none;
	padding: 0;
	background: transparent !important;
	text-align: left !important;
	font-size: 24px !important;

	.quote-arrow .ri-right-quote {
	  transform: rotate(180deg) !important;

	  &:before {
		font-size: 60px !important;
	  }
	}

	.cl-author-info li:nth-child(2) {
	  font-size: 18px !important;
	}

	p, ul li {
	  text-align: left !important;
	}

	&:hover {
	  box-shadow: none !important;
	}

	li.ratings img {
	  margin-top: 5px;
	  margin-left: 0 !important;
	}
  }
}

/* ----------------------------------
cl-testimonial style 10 Custom By Rashid
-------------------------------------*/

.testimonial-slide10.slider9 {

  .single-testimonial {
	overflow: inherit;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 0;

	.image-testimonial {
	  position: relative;
	  padding-bottom: 100px;

	  .testimonial-image {
		width: 70%;
		margin-right: auto;
	  }

	  .testimonial10-content-wrap {
		max-width: 380px;
		position: absolute;
		bottom: 50px;
		z-index: 99;
		background: #fff;
		padding: 40px;
		right: 0px;
		box-shadow: 0 8px 30px -6px #ccc;

		.content-testimonial {
		  padding-bottom: 15px;

		  i {
			position: absolute !important;
			top: 60px !important;
			font-size: 150px;
			left: 30px;
			width: 60px;
			height: 60px;
			line-height: 60px;
			text-align: center;
			color: #fff !important;
			border-radius: 50%;
			padding-right: 0px !important;
			z-index: -1;
			opacity: 0.2;
		  }
		}
	  }
	}
  }
}

.testimonial-transparent .image-testimonial {
  background: transparent !important;
}



ul.latest_projects {
  margin: 0;
  padding: 0;
  list-style: none;
}

.testimonial-light #cl-testimonial {
  .testimonial-slide7 .single-testimonial {
	margin: 0;
	border-left: 4px solid $primaryColor;
	box-shadow: none;

	&:before {
	  border-top-color: $primaryColor;
	  border-right-color: $primaryColor;
	  border-right: 30px solid $primaryColor;
	}

	&:after {
	  border-top-color: $primaryColor;
	  border-right-color: $primaryColor;
	  border-right: 30px solid $primaryColor;
	  border-top: 30px solid transparent;
	  border-bottom-color: $primaryColor;
	}

	.cl-author-info li:first-child {
	  font-size: 18px;
	  color: $titleColorUnit;
	  margin-bottom: 0;
	  padding-bottom: 0 !important;
	  line-height: 28px;
	  margin-top: 5px;
	}
  }
}


.mfp-close-btn-in .mfp-close {
  top: 0px;
  right: 0px;
  text-align: right;
  padding-right: 0;
  display: inline-block;
  text-align: center;
  background: $primaryColor;
  width: 44px;
  border-radius: 50%;
  font-size: 27px;
}

.rs_button.btn-border {
  border-width: 2px;
  color: $titleColorUnit;
  border-style: solid;
  border-color: $titleColorUnit;
  background: transparent;

  &:hover {
	background: $titleColorUnit;
	color: #ffffff;
  }
}


.portfolio-filter {
  margin-bottom: 20px;

  &.filter-center {
	text-align: center;
  }

  &.filter-right {
	text-align: right;
  }

  &.filter-left {
	text-align: left;
  }

  button {
	font-size: 16px;
	background: transparent;
	color: $titleColor;
	margin: 0 0 30px;
	display: inline-block;
	padding: 0;
	transition: 0.4s;
	outline: none;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
	position: relative;
	padding: 5px 20px;
	border-radius: 30px;
	border: 0;

	&:hover, &.active {
	  color: $titleColorUnit;
	  background: transparent;
	}
  }
}

.recent-post-widgets li.show-featured {
  float: left;
  width: 33.33%;
  padding: 0;
}

.rs-vertical-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rs-vertical-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.gutter-no-gap .row {
  margin: 0 !important;

  [class*=col-] {
	padding: 0 !important;
	margin: 0 !important;
  }
}

.rs-sl-social-icons a {
  color: #ffffff;

  &:hover {
	color: $titleColorUnit;
  }
}

.rs-slider {
  * {
	outline: none;
  }

  .slider-item {
	background-size: cover;
	background-repeat: no-repeat;
  }

  .slide-description {
	max-width: 640px;

	p {
	  margin-bottom: 0;
	  font-size: 18px;
	}
  }

  .slide-title {
	font-size: 65px;
	line-height: 75px;
	font-weight: 700 !important;
  }

  .slide-content {
	max-width: 1250px;
	margin: 0 auto;
	padding: 150px 0;
	position: relative;

	.watermark {
	  z-index: 5;
	  position: absolute;
	  font-size: 200px;
	  font-weight: 900;
	  top: 10%;
	  opacity: 0.1;
	}

	span.number {
	  position: absolute;
	  left: 0;
	  right: 0;
	  text-align: center;
	  top: auto;
	  bottom: 42px;
	  font-size: 20px;
	  font-weight: 400;
	  color: #303030;

	  .first {
		font-size: 60px;
		font-weight: 700;
		color: #000;
	  }
	}

	.slide-content-wrap {
	  max-width: 800px;
	  position: relative;
	  z-index: 10;
	}

	&.center {
	  text-align: center;

	  .slide-content-wrap {
		display: block;
		margin: 0 auto;
	  }

	  .slide-description {
		margin-left: auto;
		margin-right: auto;
	  }
	}

	&.right {
	  text-align: right;

	  .slide-description {
		margin-left: auto;
	  }

	  .slide-content-wrap {
		display: block;
		margin-left: auto;
	  }
	}
  }

  .slider-button {
	margin-top: 48px;

	ul {
	  margin: 0;
	  list-style-type: none;

	  li {
		display: inline-block;

		+ li {
		  margin-left: 10px;
		}
	  }
	}
  }

  .readons {
	border: 2px solid #000;
	color: #000;
	padding: 14px 35px;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 500;

	&:hover {
	  background: #000;
	  color: #fff;
	  border: 2px solid #000;
	}
  }
}

.recent-post-widgets li.show-featured {
  float: left;
  width: 33.33%;

  .post-img {
	padding: 3px;
	float: none;
	width: auto;
	display: block;

	img {
	  width: 100%;
	  border-radius: 3px;
	}
  }
}

.single-teams {
  .details-tabs-area {
	margin-right: 30px;

	.team-detail-wrap {
	  background: #fff;
	  padding: 25px 50px 30px;
	  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
	  margin-bottom: 40px;
	}
  }

  .row.btm-row {
	align-items: center;
	position: relative;
	box-shadow: 0px 0px 32px 0px rgba(7, 28, 31, 0.05);
	background: #fff;
	margin-bottom: 70px;
	padding: 40px 0 40px 25px;

	.col-lg-7.rs-con-info {
	  position: relative;

	  &:before {
		content: "\f10b";
		font-size: 250px;
		position: absolute;
		right: 130px;
		color: $titleColor;
		font-family: remixicon;
		height: 100%;
		top: 74px;
		opacity: 0.02;
	  }
	}
  }

  .title-bg-gray {
	color: $titleColor;
	padding-bottom: 0px;
	margin-bottom: 0;
  }

  .designation-info {
	display: block;
	color: $primaryColor;
	margin-top: 0;
	padding-bottom: 5px;
	text-transform: uppercase;
	font-weight: 600;
  }

  .single-title, .title-bg-gray {
	padding-bottom: 15px;
  }

  .team-skill {
	display: block;
	margin-bottom: 40px;
  }

  .ps-image img {
	border-radius: 0px;
  }

  .short-desc {
	margin-bottom: 25px;
	padding-right: 50px;
  }

  .ps-informations {
	text-align: left;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;

	h4.single-title {
	  margin: -8px 0 0px;
	  font-weight: 600 !important;
	  font-size: 24px;
	  color: #fff;
	}

	.designation-info {
	  font-size: 16px;
	  font-weight: 500;
	}

	ul {
	  margin: 0;
	  padding: 0;
	  text-align: left;
	  list-style: none;
	  font-weight: 500;

	  li {
		border: none !important;
		margin: 0;
		color: #555;

		span {
		  width: auto;
		  color: #555;
		}

		i:before {
		  margin-left: 0 !important;
		  font-size: 16px;
		}

		&.social-icon {
		  border: none;
		  margin-top: 0;
		  display: inline-block;
		  padding-top: 0;

		  i {
			line-height: 35px;
			width: 30px;
			height: 35px;
			font-size: 14px;
			transition: 0.4s;

			&:hover {
			  color: $titleColorUnit;
			}
		  }
		}

		&.phone, &.email {
		  margin: 5px 0 10px;
		  padding: 0;
		  display: block;
		}

		&.phone a, &.email a {
		  color: #555;
		}

		&.phone a:hover, &.email a:hover {
		  color: $titleColorUnit;
		}

		&.phone i, &.email i {
		  font-size: 16px;
		  color: $titleColorUnit;
		  margin-right: 10px;
		  position: relative;
		  top: 5px;
		  font-weight: 500;
		  display: inline-block;
		  text-align: center;
		}

		&.phone i:before, &.email i:before {
		  font-size: 20px;
		}

		&.phone {
		  margin-left: 0;
		}
	  }
	}

	.social-info {
	  margin-top: 15px;
	  margin-left: 0px;

	  a {
		color: #555;
	  }
	}
  }

  .project-desc {
	margin-bottom: 40px;
	background: #fff;
	overflow: hidden;
	padding-right: 55px;

	p {
	  margin-bottom: 18px;
	}

	.nav {
	  margin-left: 0;
	  background: #f4f7fc;

	  li {
		width: 33.333%;
		text-align: center;

		+ li {
		  border-left: 1px solid #ddd;
		}
	  }

	  .nav-link {
		position: relative;
		overflow: hidden;
		font-weight: 600;
		font-size: 20px;
		padding: 15px 0;

		&:before {
		  position: absolute;
		  content: "";
		  width: 100%;
		  height: 3px;
		  background: $primaryColor;
		  bottom: -5px;
		  left: 0;
		  transition: 0.4s;
		}

		&.active:before {
		  bottom: 0;
		}
	  }
	}
  }

  .inner-images {
	padding: 0 30px 0 0;
  }

  .team-detail-wrap-btm.team-inner {
	background: $primaryColor;
	padding-bottom: 54px;
	margin-top: 40px;

	.siderbar-title {
	  color: #fff;

	  &:before {
		background: #fff;
	  }
	}

	tbody tr {
	  background: none;

	  td {
		padding: 8px 0;
		color: #fff;
	  }
	}
  }

  .team-inner {
	padding: 40px 40px 44px;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);

	h3 {
	  margin-bottom: 0;
	  position: relative;
	  padding-bottom: 6px;
	  font-size: 20px;
	  text-transform: capitalize;

	  &:before {
		content: "";
		position: absolute;
		background: $primaryColor;
		height: 2px;
		width: 50px;
		left: 0;
		bottom: 0;
		display: block;
		z-index: 1;
		opacity: 0.5;
	  }
	}

	ul {
	  margin: 0;
	  padding: 0;
	  list-style: none;

	  li {
		display: block;
		border-bottom: 1px solid #eee;
		padding: 13px 0;

		i {
		  color: $primaryColor;
		  margin-right: 5px;
		  display: none;
		}

		&:last-child {
		  border-bottom: none;
		  padding-bottom: 0;
		}
	  }
	}
  }

  .doctor-awardss.team-inner {
	padding-top: 25px;
  }

  .siderbar-title {
	margin: 0 0 30px;
	color: $primaryColor;
	text-transform: capitalize;
  }

  .chevron-right-icon li {
	float: left;
	width: 50%;
	margin: 4px 0;
  }

  h3.title-left-border {
	margin-top: 45px;
  }

  .emergency-time {
	padding: 40px 15px 32px;

	.emergency-title {
	  margin: 14px 0 4px;
	}

	i {
	  color: $primaryColor;

	  &:before {
		font-size: 50px;
	  }
	}

	p {
	  margin-bottom: 0;
	}
  }

  .team-skill {
	padding-left: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: -20px;

	h3 {
	  font-weight: 500;
	  margin-bottom: 20px;
	}

	.rs-progress {
	  height: 8px;
	  border: 1px solid $primaryColor;
	  border-radius: 0;
	  overflow: visible;
	  padding: 1px;
	  background: #fff;
	  margin-top: 50px;

	  .progress-bar {
		position: relative;
		text-align: left;
		line-height: 4px;
		border-radius: 0;
		box-shadow: none;
		background-image: linear-gradient(250deg, $titleColorUnit 19%, $primaryColor 100%);
		font-size: 16px;

		.pb-label {
		  position: absolute;
		  left: 0px;
		  top: -24px;
		  color: #303030;
		}

		.pb-percent {
		  position: absolute;
		  right: -13px;
		  top: -30px;
		  padding: 8px 5px;
		  color: #303030;
		}
	  }
	}
  }
}



.rs-team.team-slider-style5 .team-item {
  padding: 0;
  margin: 0 22px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);

  .team-inner-wrap .team-content {
	padding: 12px 20px;
  }
}


.ps-navigation {
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;

  ul {
	margin: 0 !important;
	list-style: none;

	.prev {
	  display: inline-block;
	  text-align: left;
	}

	.next {
	  display: inline-block;
	  text-align: right;
	  word-break: break-all;
	}

	a {
	  text-transform: uppercase;

	  span {
		display: block;
		font-weight: normal;
		text-transform: capitalize;

		&:first-child {
		  margin-top: 0;
		}

		&.pagi-date {
		  font-size: 13px;
		  color: #aaa;
		  line-height: normal;
		  margin-top: 5px;
		}
	  }

	  &:hover {
		color: $titleColorUnit;
	  }
	}
  }
}

.rs-breadcrumbs-meta-elementor{
    padding: 0;
    border-radius: 0px;
    margin: 0;
	display: inline-flex;
	justify-content: left !important;
}


.single-portfolios {
  .owl-carousel .owl-nav [class*=owl-] {
	top: 50%;
  }

  .ps-navigation {
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	width: 100%;

	ul li a {
	  span.next_link {
		font-size: 15px;
		font-weight: 500;



	  }
	  span.link_text{
		color: #091D2D;
		font-size: 28px;
		line-height: 32px; 
	  }
	}
  }

  .owl-stage-outer {
	height: auto !important;
	margin-bottom: 50px;
  }
}


/* ------------------------------------
	21. Portfolio Details
  ---------------------------------------*/

.rs-porfolio-details {
  img.mb-30 {
	margin-top: 20px;
  }

  .ps-informations {
	ul {
	  margin: 0;
	  list-style: none;
	  text-align: left;
	  padding: 0;

	  li {
		color: #fff;

		+ li {
		  padding-top: 10px;
		  margin-top: 10px;
		  border-top: 1px solid rgba(54, 54, 54, 0.1);
		}

		span {
		  width: 150px;
		  display: inline-block;
		  font-weight: 600;
		}
	  }
	}

	padding: 40px 30px 46px;
	border-radius: 5px;
	margin-bottom: 60px;
	background-image: linear-gradient(250deg, $titleColorUnit 19%, $primaryColor 100%);

	.info-title {
	  padding-bottom: 10px;
	  color: #fff;
	}
  }

  .widget-title {
	font-size: 28px;
	margin-bottom: 20px;
  }

  .widget_custom_html, .contact-me-widget {
	padding: 60px 30px 40px;
	border-radius: 5px;
	margin-bottom: 60px;
	background-image: linear-gradient(250deg, #0b70e1 19%, #03228f 100%);
  }

  .widget_custom_html {
	.sidebar_number, .sidebar_question {
	  color: #FFFFFF;
	}
  }

  .contact-me-widget {
	.sidebar_number, .sidebar_question {
	  color: #FFFFFF;
	}
  }

  .widget_custom_html .sidebar_question, .contact-me-widget .sidebar_question {
	font-size: 24px;
	line-height: 42px;
	margin-top: 50px;
  }

  .widget_custom_html .sidebar_number, .contact-me-widget .sidebar_number {
	font-size: 28px;
	margin-top: 27px;
  }

  .widget_custom_html .sidebar_number a, .contact-me-widget .sidebar_number a {
	color: #ffffff;
  }

  .widget_custom_html .sidebar_number a:hover, .contact-me-widget .sidebar_number a:hover {
	color: #eee;
  }

  .rs-contact-box .address-item .address-icon {
	background: #fff;

	&:before {
	  background: #fff;
	}

	i {
	  color: $titleColorUnit;
	}
  }


  #custom_html-5 {
	.rs_button, .brochures-button {
	  margin-top: 35px;
	  font-size: 16px;
	  font-weight: 600;
	  color: #fff;
	  padding: 14px 40px 14px 40px;
	}
  }

  .brochures-widget {
	.rs_button, .brochures-button {
	  margin-top: 35px;
	  font-size: 16px;
	  font-weight: 600;
	  color: #fff;
	  padding: 14px 40px 14px 40px;
	}
  }

  #custom_html-5 p.brochures-txt, .brochures-widget p.brochures-txt {
	margin: 0;
  }

  .information-sidebar .widget_nav_menu li {
	a {
	  display: block;
	  border: 2px solid #e8e8e8;
	  padding: 16px 18px;
	  transition: all 0.5s ease;
	  border-radius: 5px;
	  position: relative;
	  font-size: 16px;
	  font-weight: 700;
	}

	&:hover a, &.current-menu-item a {
	  background-image: linear-gradient(250deg, #1273eb 19%, #03228f 100%);
	  color: #ffffff;
	}
  }

  .ps-image {
	text-align: center;
	margin-bottom: 10px;
  }

  .ps-share {
	margin-top: 40px;

	ul {
	  margin: 0;
	}

	.share-title {
	  font-size: 20px;
	  font-weight: 500;
	  margin-bottom: 20px;
	}

	ul li {
	  display: inline-block;
	  margin: 0 10px 14px 0;

	  a {
		font-size: 20px;
		display: block;
		width: 50px;
		height: 48px;
		line-height: 48px;
		border: 1px solid $primaryColor;
		text-align: center;
		transition: all 0.3s ease 0s;

		&:hover {
		  background-color: $primaryColor;
		  color: $titleColorUnit;
		}
	  }
	}
  }

  .project-desc {
	line-height: 30px;

	p:last-child {
	  margin-bottom: 0;
	}

	.ps-title {
	  margin-bottom: 20px;
	}
  }

  .ps-related-project {
	margin-top: 50px;

	.ps-related-title {
	  font-size: 20px;
	  font-weight: 500;
	  margin-bottom: 30px;
	}

	.portfolio-item {
	  margin-bottom: 20px;
	}
  }

  .portfolio-carousel {
	.owl-dots {
	  display: none;
	}

	.owl-stage-outer {
	  height: auto !important;
	}

	.owl-nav {
	  display: none;

	  .owl-prev {
		left: 10px !important;
		min-height: 1px;
		transition: all 0.5s ease;
	  }

	  .owl-next {
		right: 10px !important;
		min-height: 1px;
		transition: all 0.5s ease;
	  }
	}

	&:hover .owl-nav {
	  display: block;
	}

	.file-list-image img {
	  border-radius: 5px;
	}
  }

  &.project-gallery {
	.ps-image-wrap {
	  margin-top: 60px;
	}

	.file-list-image {
	  margin-bottom: 30px;
	  position: relative;
	  background: #000000;
	  border-radius: 5px;

	  a:hover i {
		color: #fff;
	  }

	  img {
		transition: 0.3s all ease;
		border-radius: 5px;
	  }

	  .p-zoom {
		display: inline-block;
		font-size: 14px;
		color: #fff;
		transition: all 0.3s ease 0s;
		height: 46px;
		line-height: 44px;
		width: 46px;
		border: 1px solid #ffffff;
		border-radius: 50%;
		text-align: center;
		position: absolute;
		left: 50%;
		top: 60%;
		opacity: 0;
		transform: translateY(-50%) translateX(-50%);
		transition: 0.3s all ease;
	  }

	  &:hover {
		img {
		  opacity: 0.4;
		}

		.p-zoom {
		  top: 50%;
		  opacity: 1;

		  &:hover {
			background: $primaryColor;
			color: #ffffff;
			border: 1px solid $titleColorUnit;
		  }
		}
	  }
	}
  }
}

/*--------------------------------------------------------------
Rs service slider css
--------------------------------------------------------------*/

#rs-services-slider {
  padding-bottom: 30px;

  .item-thumb {
	width: 100%;
	padding-right: 16px;

	img {
	  border-radius: 5px;
	}

	.owl-dot {
	  width: 48%;
	  display: inline-block;
	  justify-content: center;
	  padding: 10px;
	  float: left;
	  cursor: pointer;
	  margin-left: 10px;
	  margin-bottom: 10px;
	}
  }

  .device-lg .item-thumb .owl-dot, .device-sm .item-thumb .owl-dot {
	height: 150px;
  }

  .device-xs .item-thumb .owl-dot {
	width: 50%;
	padding: 10px;
	height: 100px;
  }

  .feature-content {
	margin-bottom: 12px;
  }

  .img_wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 24px;

	.feature-title {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  margin: 0;
	  padding: 33px;
	  z-index: 9;
	  color: #fff;

	  a {
		color: #fff;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}

	a img {
	  width: 100%;
	}

	&:before {
	  content: "";
	  position: absolute;
	  background: $titleColorUnit;
	  left: -60px;
	  right: 0;
	  bottom: -80px;
	  display: block;
	  height: 192px;
	  opacity: 0.8;
	  z-index: 1;
	  transform: rotate(-3deg);
	  width: 150%;
	}

	&:after {
	  content: "";
	  position: absolute;
	  background: $titleColorUnit;
	  left: -150px;
	  right: 0;
	  bottom: -80px;
	  display: block;
	  height: 204px;
	  opacity: 0.8;
	  z-index: 1;
	  transform: rotate(-3deg);
	  width: 150%;
	}
  }

  .item-thumb .owl-dot {
	span {
	  position: relative;
	  display: block;
	  background-size: cover;
	  background-position: center center;
	  width: auto;
	  height: 100%;
	  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
	  transition: all 0.3s ease;
	}

	&.active span, &:hover span {
	  opacity: 0.7;
	}
  }

  .menu-carousel {
	.heading-block h4 {
	  margin-bottom: 7px;
	  margin-top: 10px;
	  letter-spacing: 2px;
	  font-size: 20px;
	  line-height: 20px;
	  text-transform: uppercase;

	  a {
		font-weight: 600;
		color: $titleColor;
		transition: 0.2s;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}

	.feature-content {
	  position: relative;
	  padding: 16px 0 0;
	  border-radius: 0 0 5px 0px;
	  text-align: left;

	  .service_details {
		padding-top: 36px;
	  }
	}

	.heading-block {
	  p {
		margin-bottom: 0;
	  }

	  .readon {
		margin-top: 20px;
	  }

	  .food-info {
		color: #BBB;
		text-transform: uppercase;
		font-weight: 400;
		letter-spacing: 2px;
		font-size: 14px;
	  }
	}
  }

  .food-price {
	position: absolute;
	top: 40px;
	right: 50px;
	font-size: 20px;
	letter-spacing: -1px;
	font-weight: 500;
  }

  .menu-carousel .more-link {
	margin-top: 35px;
	border-bottom: 1px solid #333 !important;
  }

  .more-link {
	font-style: normal;
	border-bottom: 0;
	color: #333;
	margin-top: 10px;
	font-size: 14px;
  }

  .team-title {
	h4 {
	  font-size: 15px;
	}

	span {
	  font-style: normal;
	  margin-bottom: 15px;
	  color: #aaa !important;
	  font-size: 12px;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	}
  }

  .entry {
	padding: 0;
	margin: 0;
	border-bottom: 0;
	box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.08);
  }

  .entry-title {
	background-color: #FFF;
	padding: 15px;

	h2 {
	  text-transform: none;
	  font-size: 17px;
	  font-weight: 500;
	  letter-spacing: 0;
	}
  }

  .entry-meta {
	margin: 8px 0 0;
  }

  .ipost .entry-meta li a {
	font-size: 11px;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
  }

  .entry-meta li:before {
	content: "·";
	opacity: 1;
  }

  .service-button {
	margin: 80px 0 80px 15px;
  }

  .device-sm .service-button, .device-xs .service-button {
	margin: 30px 0 0;
  }

  .clfeatures .cl-ft-item {
	border-radius: 5px;

	img {
	  display: block;
	  margin: 0;
	  border-radius: 5px;
	}
  }

  .item-thumb .owl-dot {
	position: relative;

	&:before {
	  content: "";
	  position: absolute;
	  left: 10px;
	  top: 10px;
	  z-index: 99;
	  width: calc(100% - 20px);
	  height: calc(100% - 20px);
	  background: rgba(0, 0, 0, 0.8);
	  transition: all 500ms ease;
	  opacity: 0;
	  border-radius: 5px;
	}
  }

  h5.overlay-feature-title {
	font-size: 16px;
	line-height: 140%;
	font-weight: normal;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	text-align: center;
	width: calc(100% - 20px);
	transition: all 500ms ease;
	opacity: 0;

	a {
	  color: #fff;
	  pointer-events: none;
	}
  }

  .item-thumb .owl-dot {
	&:hover:before, &.active:before {
	  opacity: 1;
	}

	&.service_icon_style {
	  float: none;
	  text-align: center;
	  background: #ffffff;
	  padding-top: 28px;
	  padding-bottom: 22px;
	  border-radius: 3px;
	  box-shadow: 0 0 7px 7px rgba(0, 0, 0, 0.02);

	  &:before {
		display: none;
	  }

	  .tile-content {
		margin-top: 10px;
		font-weight: 600;
		margin-bottom: 0;
		font-size: 16px;
		text-transform: uppercase;

		a {
		  color: $titleColor;
		}
	  }

	  &.active .tile-content a, &:hover .tile-content a {
		color: #032e42;
	  }
	}

	&:hover h5.overlay-feature-title, &.active h5.overlay-feature-title {
	  opacity: 1;
	}
  }

  .services-wrap {
	.services-item {
	  position: relative;
	  padding: 0px 25px 65px;
	  z-index: 10;

	  &:after {
		content: "";
		position: absolute;
		left: 0;
		z-index: -1;
		height: 100%;
		width: 100%;
		background: #fff;
		transition: all 0.3s ease 0s;
		top: 50%;
		transform: scale(1, 0.9) translateY(-50%);
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		opacity: 0;
	  }

	  &:hover {
		.services-desc:after {
		  background: $primaryColor;
		  width: 100px;
		}

		&:after {
		  opacity: 1;
		  transform: scale(1, 1) translateY(-50%);
		}
	  }
	}

	.services-icon {
	  position: relative;
	  display: inline-block;
	  font-size: 64px;
	  color: $primaryColor;
	}

	.services-title {
	  font-size: 20px;
	  margin-top: 35px;
	  margin-bottom: 25px;
	}

	.services-desc {
	  position: relative;

	  &:after {
		content: "";
		position: absolute;
		left: 0;
		height: 2px;
		width: 50px;
		bottom: -45px;
		background: rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease 0s;
	  }

	  p {
		margin-bottom: 55px;
	  }
	}
  }
}

@media (min-width: 992px) {
  #rs-services-slider {
	#header, #header-wrap {
	  z-index: 200;
	  background-color: transparent !important;
	  background-repeat: repeat-x;
	  background-position: center bottom;
	  background-size: auto 100%;
	  transition: all 0.5s ease;
	}

	#primary-menu ul li > a {
	  padding-top: 32px;
	  padding-bottom: 10px;
	}

	#header.sticky-header #header-wrap {
	  background-color: transparent !important;
	  box-shadow: none;
	}

	.slider-caption h2 {
	  font-size: 76px;
	}

	.food-price {
	  font-size: 24px;
	  top: 50px;
	  right: 60px;
	}
  }
}

/*--------------------------------------------------------------
Rs service Grid css
--------------------------------------------------------------*/

.rs-service-grid {
  .service-item {
	position: relative;

	.service-img {
	  position: relative;
	  overflow: hidden;

	  img {
		border-radius: 0;
		transition: all 0.4s linear;
	  }

	  &:before {
		content: "";
		position: absolute;
		background: $titleColorUnit;
		left: -73px;
		right: 0;
		bottom: -28px;
		display: block;
		height: 155px;
		opacity: 0.8;
		z-index: 1;
		transform: rotate(-8deg);
		width: 150%;
		transition: all 0.4s ease-in-out;
	  }

	  &:after {
		content: "";
		position: absolute;
		background: $titleColorUnit;
		left: -73px;
		right: 0;
		bottom: -28px;
		display: block;
		height: 136px;
		opacity: 0.6;
		z-index: 1;
		transform: rotate(-8deg);
		width: 150%;
		transition: all 0.4s ease-in-out;
	  }

	  .p-title {
		font-size: 20px;
		margin: 0;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		text-align: center;
		padding: 28px 0;
		font-weight: 500;
		margin: 0;
		z-index: 9;

		a {
		  color: #fff;
		  opacity: 1;
		}
	  }
	}

	.service-content {
	  display: block;

	  .service-excerpt {
		padding-top: 0;

		p {
		  transform: translateY(-100px);
		  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
		  filter: alpha(opacity = 0);
		  opacity: 0;
		  transition: all 0.4s ease-in-out;
		  padding: 0 25px;
		}
	  }

	  position: absolute;
	  opacity: 0;
	  padding: 20px;
	  color: #fff;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  text-align: center;
	  overflow: hidden;
	  transition: all 0.4s ease-in-out;
	  z-index: 9;

	  &:before {
		content: "";
		position: absolute;
		background: $titleColorUnit;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		top: 0;
		opacity: 0;
		z-index: 0;
	  }

	  .service-button {
		transform: translateY(100px);
		-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity = 0);
		opacity: 0;
		transition: all 0.4s linear;

		.readon.rs_button {
		  height: 50px;
		  line-height: 48px;
		  background: #fff;
		  border: 2px solid;
		  border-color: #fff;
		  color: $titleColorUnit;

		  &:hover {
			background: #fff;
			padding-right: 55px;
			border: 2px solid;
			border-color: $titleColorUnit;
			color: $titleColorUnit;

			&:before {
			  right: 35px;
			  color: $titleColorUnit;
			}
		  }
		}
	  }
	}

	&:hover {
	  .service-content {
		opacity: 1;

		&:before {
		  opacity: 0.8;
		}
	  }

	  .service-button {
		transform: translateY(0px);
		opacity: 1;
	  }

	  .service-img {
		h3.p-title {
		  display: none;
		}

		&:before, &:after {
		  opacity: 0;
		  height: 0;
		}

		img {
		  transform: scale(1.1, 1.1);
		}
	  }

	  .service-content .service-excerpt p {
		transform: translateY(0px);
		opacity: 1;
	  }
	}
  }

  &.rs-service-style2 .service-item {
	.service-img {
	  &:before, &:after {
		height: 90px;
		transform: rotate(0deg);
		bottom: 0;
		z-index: 0;
	  }

	  h3.p-title {
		padding: 20px 0 14px;
	  }
	}

	.service-content .service-excerpt {
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  width: 100%;
	  left: 0;
	  right: 0;
	  z-index: 99;
	}
  }

  &.rs-service-stylestyle4 .service-item-four {
	position: relative;
	overflow: hidden;

	&:after {
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  opacity: 0.9;
	  content: "";
	  position: absolute;
	  border-radius: 0;
	  z-index: 0;
	  transition: 0.4s;

	  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0b2ba7+0,7db9e8+100&1+0,0+100 */

	  /* FF3.6-15 */

	  /* Chrome10-25,Safari5.1-6 */
	  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(51, 51, 51, 0.5) 70%);

	  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#333333", endColorstr="#000000333",GradientType=0 );

	  /* IE6-9 */
	}

	&:before {
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  opacity: 0.9;
	  content: "";
	  position: absolute;
	  background: transparent;
	  border-radius: 0;
	  z-index: 1;
	  transition: 0.4s;
	}

	&:hover:before {
	  background-color: rgba(0, 0, 0, 0.7);
	}

	.service-content {
	  padding: 0 20px;
	  position: absolute;
	  left: 0;
	  width: 100%;
	  z-index: 1;
	  transition: 0.4s;
	  bottom: 15px;

	  .p-title {
		margin-bottom: 12px;
		font-size: 20px;
		width: 100%;
	  }

	  p {
		line-height: 22px;
		opacity: 0;
		visibility: hidden;
		margin-bottom: 0;
		height: 0;
		transition: 0.4s;
		color: #ffffff;
		display: block;
	  }

	  h3 {
		color: #fff;
		padding: 12px 15px 0;
		display: inline-block;
		font-size: 18px;
		margin: 0;
	  }

	  &:after, &:before {
		background: transparent;
	  }
	}

	&:hover .service-content {
	  bottom: 15px;

	  h3 {
		color: #fff;
		background: transparent;
	  }

	  p {
		opacity: 1;
		visibility: visible;
		height: auto;
	  }
	}
  }

  .show_cate_ser {
	display: block;
	font-size: 14px;
  }
}

.porfolio-sidebar {
  margin: 0;
  padding: 0;
  list-style: none;

  li {
	margin-bottom: 10px;
	width: 100%;
	overflow: hidden;

	span {
	  width: 55%;
	  font-weight: 700;
	  float: left;
	  color: $titleColor;
	  font-size: 16px;
	}
  }
}

.box-service .rs-services-default .services-wrap .services-item {
  padding: 25px 25px 25px 10px;
  transition: all 0.6s ease 0s;
  background: #fff;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border-radius: 5px;
}

/* Processbar CSS */

.cdev div {
  position: absolute;
  height: 150px;
  width: 150px;
  border-radius: 50%;
}

.skillbar-wrap {
  position: relative;
  height: 150px;
  width: 150px;

  .skill-title {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 113px;

	&:after {
	  content: "";
	  position: absolute;
	  height: 113px;
	  width: 1px;
	  border: 1px dashed $titleColorUnit;
	  display: block;
	  left: 50%;
	  bottom: 26px;
	  transform: translateX(-50%);
	}
  }
}

.cdev {
  div span {
	position: absolute;
	font-size: 25px;
	line-height: 105px;
	height: 70%;
	width: 70%;
	left: 15%;
	top: 15%;
	text-align: center;
	border-radius: 50%;
	background-color: white;
  }

  .background {
	background-color: #b3cef6;
  }

  .rotate {
	clip: rect(0 75px 150px 0);
	background-color: #4b86db;
  }

  .left {
	clip: rect(0 75px 150px 0);
	opacity: 1;
	background-color: #b3cef6;
  }

  .right {
	clip: rect(0 75px 150px 0);
	transform: rotate(180deg);
	opacity: 0;
	background-color: #4b86db;
  }
}

@-webkit-keyframes toggle {
  0% {
	opacity: 0;
  }

  100% {
	opacity: 1;
  }
}

@keyframes toggle {
  0% {
	opacity: 0;
  }

  100% {
	opacity: 1;
  }
}

/*--------------------------------------------------------------
	Floating CSS
--------------------------------------------------------------*/

.floating-top {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
   Latest product slider
--------------------------------------------------------------*/

.rs-products-slider {
  .product-item {
	background: #fff;
	text-align: center;
	padding: 0px 0px 30px;
	box-shadow: 0 0 150px #eee;

	h4.product-title {
	  padding-top: 20px;
	  margin-bottom: 15px;

	  a {
		color: $titleColor;

		&:hover {
		  color: $primaryColor;
		}
	  }
	}

	.product-img img {
	  width: auto;
	  margin: 0 auto;
	}

	.product-price {
	  font-size: 16px;
	  color: $titleColor;

	  ins {
		background: transparent !important;
		color: $primaryColor;
	  }
	}

	.product-btn {
	  padding-top: 15px;

	  a {
		padding: 0 30px;
		height: 44px;
		line-height: 44px;
		display: inline-block;
		position: relative;
		font-size: 17px;
		background: #032e42;
		font-weight: 500;
		border-radius: 0;
		color: #fff;

		&:hover {
		  background: #fff;
		}
	  }
	}
  }

  &.rs-products-grid {
	.product-item-inner {
	  padding: 0 0 30px;
	  background: none;
	  text-align: center;
	  margin-bottom: 30px;

	  .product-img {
		position: relative;

		img {
		  width: 100%;
		}

		.product-btn a {
		  background: none;
		  font-size: 0;
		  background: #fff;
		  border: none;
		  padding: 0;
		  position: absolute;
		  bottom: 25px;
		  transform: translateY(-200px);
		  right: 10px;
		  transition: all 0.5s ease-in-out 0s;
		  padding: 0;
		  opacity: 0;
		  margin: 0;
		  height: 45px;
		  width: 45px;
		  line-height: 45px;
		  border-radius: 3px;

		  &:before {
			color: $titleColor;
			font-size: 27px;
		  }

		  &:hover:before {
			color: $primaryColor;
		  }

		  &.wc-forward {
			font-size: 14px;
			color: $titleColor;
			padding: 0;
			width: 90px;
			height: 34px;
			line-height: 37px;

			&:hover {
			  background: $primaryColor;
			  color: #fff;
			}
		  }

		  &.added {
			display: none;
		  }
		}
	  }

	  ins {
		background: none;
	  }
	}

	.product-item {
	  background: none;
	  text-align: center;
	  padding: 0 15px;
	  box-shadow: none;

	  h4.product-title {
		margin-bottom: 5px;
	  }

	  &:hover .product-img .product-btn a {
		transform: translateY(0);
		opacity: 1;
	  }
	}
  }
}

.wp-block-button__link {
  background: $primaryColor !important;
  padding: 0.467em 1.333em !important;
}

.wp-block-button {
  margin-bottom: 20px !important;
}
.wp-block-button__link {
	border-radius: 6px !important;
}
.is-style-outline {
  color: $primaryColor !important;

  a {
	background: transparent !important;
	border-color:$primaryColor !important;
  }
}

.wp-block-quote {
  &.is-large, &.is-style-large {
	padding: 0 40px 40px;
  }
}

.rs-search-form-area{
	margin:-66px 0 90px;
    padding: 35px 40px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	box-shadow: 0px 70px 99px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: #fff;
	position: relative;
	z-index: 1;
	align-items: center;
	&:before {
		left: 20px;
		right: 20px;
		z-index: -1;
		bottom: -10px;
		height: 100%;
		opacity: 0.5;
		content: "";
		position: absolute;
		border-radius: 12px;
		background-color: #ffffff;
		-webkit-box-shadow: 0px 70px 90px rgba(0, 0, 0, 0.08);
		box-shadow: 0px 70px 90px rgba(0, 0, 0, 0.08);
	}
	li.rs-input-serch-only{
		width: 30%;
	}
	li.rs-input-serch-only{
		position: relative;
		z-index: 11;
		i{
			position: absolute;
			top: 16px;
			z-index: 11;
			line-height: 20px;
			left: 0;
			font-size: 25px;
		}
		input[type=text]{
			padding: 15px 20px 15px 40px;
		}
		input[type=text]::-webkit-input-placeholder { /* Edge */
			color: $bodyColor;
			opacity: 1;
		}		  
		input[type=text]:-ms-input-placeholder { /* Internet Explorer 10-11 */
			color: $bodyColor;
			opacity: 1;
		}		  
		input[type=text]::placeholder {
			color: $bodyColor;
			opacity: 1;
		}
	}
	li.rs-input-btn{
		margin-left: 50px;
		width: 20%;
	}
	li.rs-input-serch.select-service-category{
		border-left: 1px solid #33333324;
		position: relative;
		&::before{			
			content: "\ed70";
			position: absolute;
			font-family: "remixicon" !important;
			left: 30px;
			top: 11px;
			transition: 0.4s;
			z-index: 3;
			font-size: 22px;
		}
		&::after{			
			content: "\ea4e";
			position: absolute;
			font-family: "remixicon" !important;
			right: -5px;
			top: 12px;
			transition: 0.4s;
			z-index: 3;
			pointer-events: none;
			font-size: 23px;
		}
		select{
			padding: 15px 20px 15px 70px;
			background: none;
		}
	}
	select,
	input[type="submit"],
	input[type=text]{
		margin-bottom: 0;
		border: 0;
		appearance: none;
	}
	select:valid {
		color: #303030e0;
	}
	input[type="submit"]{
		width: 100%;
		border-radius: 10px;
		padding: 22px 20px;
		font-size: 18px;
		background: $primaryColor;
	}
}

.rs-service-areas{
	.service-item{
		.service-item-inner{
			border-radius: 10px;
    		border: 1px solid #3333330a;
    		box-shadow: 0 0 25px #9999990d;
			margin-bottom: 25px;
			.rs-service-thumb{
				position: relative;
				img{
					border-radius: 10px 10px 0 0;
				}
				.rs-service-categorys{
					position: absolute;
					bottom: -25px;
					left: 35px;
					a{
						background: $primaryColor;
						color: $whiteColor;
						font-size: 16px;
						padding: 5px 16px;
						margin: 0 8px 8px 0;
						border-radius: 5px;
						display: inline-block;
					}
				}
			}
			
			.service-normal-text{
				padding: 35px 35px 35px;
				.rs-service-categorys{
					margin-bottom: 6px;
					a{
						background: $primaryColor;
						color: $whiteColor;
						font-size: 16px;
						padding: 5px 16px;
						margin: 0 8px 8px 0;
						border-radius: 5px;
						display: inline-block;
					}
				}
				ul{
					margin: 10px 0 0;
					padding: 0;
					list-style: none;
					display: inline-flex;
					font-size: 16px;
					line-height: 18px;
					li{
						i:before{
							font-size: 18px;
							color: $primaryColor;
						}
						&.rs-service-location{
							margin-left: 36px;
							position: relative;
							&::before{
								content: "";
								position: absolute;
								left: -17px;
								width: 1px;
								height: 11px;
								background: #0000003d;
								top: 7px;
							}
						}
					}
				}
				.rs-service-title{
					font-size: 22px;
					line-height: 1.6;
					margin: 0;
					a{
						color: $titleColor;
						&:hover{
							color: $primaryColor;
						}
					}
				}
				.rs-custom-excerpt{
					font-size: 16px;
    				margin-top: 18px;
				}
			}
			&.rs-thumb{
				.service-normal-text{
					padding: 40px 35px 35px;
				}
			}
		}
	}
}

/*--------------------------------------------------------------
	Parter CSS
--------------------------------------------------------------*/

.partner-carousel .partner-item {
  width: 100px;
  display: block;
  margin: 0 auto;

  img {
	opacity: 0.3;
  }

  &:hover img {
	opacity: 1;
  }
}

.wp-block-cover-image-text, .wp-block-cover-text, section.wp-block-cover-image h2, .wp-block-cover-text a {
  color: #fff !important;
}

.rs-pricing-table-btn span {
  display: block;
  font-size: 12px;
}

.rs-timeline {
  position: relative;

  &:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 3px;
	left: 50%;
	margin: 1px;
	border: 2px dashed #032e42;
	transform: translateX(-50%);
  }

  ul {
	margin: 0;
	padding: 0;

	li {
	  margin-bottom: 50px;
	  list-style-type: none;
	  display: flex;
	  flex-direction: row;

	  .content {
		padding: 0 20px;
		width: 50%;

		h3 {
		  padding: 12px 20px 8px;
		  background-color: #bb0b0b;
		  margin-bottom: 0;
		  border-top-left-radius: 10px;
		  border-top-right-radius: 10px;

		  a {
			color: #fff;

			&:hover {
			  opacity: 0.85;
			}
		  }
		}

		p {
		  padding: 30px;
		  background-color: #FBFBFB;
		  margin-top: 0;
		  border-bottom-left-radius: 10px;
		  border-bottom-right-radius: 10px;
		}
	  }

	  .date {
		padding: 0 20px;
		width: 50%;

		h4 {
		  background-color: #032E42;
		  padding: 8px 20px 6px;
		  border-radius: 10px;
		  color: #fff;
		  display: inline-block;
		}
	  }
	}
  }

  .point {
	min-width: 20px;
	height: 20px;
	background-color: #bb0b0b;
	border-radius: 100%;
	z-index: 2;
	border: 3px #333333 solid;
	position: relative;
	left: 1px;
  }

  ul li {
	&:nth-child(odd) {
	  .content {
		padding-left: 0;
	  }

	  .date {
		padding-right: 0;
	  }
	}

	&:nth-child(even) {
	  .content {
		padding-right: 0;
	  }

	  .date {
		padding-left: 0;

		h4 {
		  float: right;
		}
	  }

	  flex-direction: row-reverse;
	}

	p, &:last-child {
	  margin-bottom: 0;
	}
  }
}

.bs-sidebar .widget_product_search {
  input[type=search] {
	height: 44px;
	padding: 8px 15px;
	border-radius: 5px;
	width: 100%;
	position: relative;
	border: 1px solid #ddd;
  }

  button {
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;

	&:hover {
	  opacity: 0.95;
	}
  }
}

/*-----------------------------
	Cart icon design
-------------------------------*/

.menu-cart-area {
  float: right;
  position: relative;
  padding-left: 25px;
  padding-top: 44px;
  padding-bottom: 44px;
  top: 0;

  .cart-icon-total-products {
	font-size: 13px;
	line-height: 20px;
	background-color: #fff;
	position: absolute;
	right: 0;
	font-size: 14px;
	top: 100%;
	width: 278px;
	z-index: 10000;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all 0.2s ease 0s;
	box-shadow: 0 0 15px #eee;
	border-radius: 3px;

	.widget_shopping_cart {
	  margin-bottom: 0px;
	  padding: 25px 10px 0;

	  .quantity {
		border: none;
		padding: 3px 0 0 0;
		display: block;
	  }
	}
  }

  .woocommerce-mini-cart__empty-message {
	text-align: center;
	text-transform: uppercase;
	color: $titleColor;
	position: relative;
	padding-top: 50px;

	&:before {
	  position: absolute;
	  content: "\f290";
	  color: $titleColor;
	  left: 50%;
	  transform: translateX(-50%);
	  bottom: 42px;
	  font: normal normal normal 14px/1 FontAwesome;
	  font-size: 24px;
	  font-style: normal;
	}
  }

  .widget_shopping_cart {
	.cart_list li {
	  padding: 20px 30px;
	  border-bottom: 1px solid rgba(170, 170, 170, 0.25);

	  a {
		color: #303030;

		img {
		  width: 40px;
		}
	  }

	  .quantity {
		color: $titleColor;
	  }

	  a.remove {
		color: $titleColor;
		top: 19px;
	  }

	  &:first-child {
		padding-top: 0;

		a.remove {
		  top: 0px;
		}
	  }
	}

	.total {
	  padding: 29px 0 0;
	  text-align: center;
	  border-top: none;
	}
  }

  i {
	cursor: pointer;
	color: #28406d;
	font-size: 18px;

	&:before {
	  font-size: 18px;
	}
  }

  &:hover .cart-icon-total-products {
	opacity: 1;
	transform: scaleY(1);
	visibility: visible;
  }

  span.icon-num {
	border-radius: 50%;
	font-size: 11px;
	line-height: 18px;
	min-height: 18px;
	min-width: 18px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	text-align: center;
	margin-top: -12px;
	right: -2px;
  }

  .woocommerce-mini-cart__buttons {
	text-align: center;
  }

  .button.wc-forward {
	padding: 9px 20px;
	font-size: 12px;
  }
}

input {
  &[type="text"], &[type="number"], &[type="email"], &[type="url"] {
	position: relative;
	z-index: 1;
  }
}

select, input[type="password"] {
  position: relative;
  z-index: 1;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ccc;
  border-radius: 0px;
  height: 40px;
  line-height: 40px;

  .select2-selection__arrow {
	top: 10px;
  }

  .select2-selection__rendered {
	line-height: 48px;
  }
}

em.rs__menu_sp{
	display: none;
}

.hfe-layout-vertical .right-arrow-style2 ul .menu-item em.rs__menu_sp{
	display: inline-block;
    width: 25px;
    height: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    left: -18px;
    top: -7px;
	&:after {
		content: "" !important;
		position: absolute;
		left: -10px;
		top: 52% !important;
		font-size: 20px;
		text-align: center;
		transform: translate(-10px, -50%) !important;
		display: block;
		background: url(../images/arrow.svg);
		height: 13px;
		width: 30px;
		background-repeat: no-repeat;
		line-height: 30px;
		transition: all .5s ease;
	}	
}



.industrie-social-custom .elementor-widget-container .elementor-social-icon:hover i {
	color: $primaryColor;
}
.hfe-layout-vertical .right-arrow-style2 ul .menu-item a:after { 
	color:$primaryColor;
}
input[type=tel] {
  padding: 10px 14px;
  border: none;
  outline: none;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(54, 54, 54, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-left: -8px;
}

#order_review {
  padding: 0 15px;
}

textarea.input-text {
  border: 1px solid #ccc;
}

.button.yith-wcqv-button, .post-type-archive .learn-press-courses .course .course-title {
  display: none !important;
}


/* -----------------------
	404
--------------------------*/

.page-error {
  position: relative;
  display: table;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background: #fff;
  background-position: center center !important;

  #content {
	padding-bottom: 60px !important;
  }

  .container {
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
  }

  .content-area {
	position: relative;
	z-index: 101;
	margin: 0 auto;
	text-align: center;
	h1.page-title {
	  color: #00204A;
	  font-size: 100px;
	  margin-bottom: 30px;
	  margin-top: 0px;
	}

	h2 {
	  color: $titleColor;
	  font-size: 35px;
	  margin: 0 auto 40px;
	  max-width: 550px;
	  line-height: 50px;
	  span {
		display: block;
		font-size: 250px;
		line-height: 270px;
		color: $titleColor;
		font-weight: 700;
	  }
	}
  }

  &.enable__text_left .content-area {
	text-align: left;
  }

  .bs-sidebar {
	max-width: 400px;
	margin: 0 auto;
	padding-bottom: 20px;
	padding: 10px 0 35px;
  }

  .ri-right-arrow:before {
	padding-left: 5px;
  }

  &.coming-soon {
	height: 100vh;
	background: #101010;

	.content-area h3 {
	  font-size: 30px;
	  margin-top: 40px;
	  margin-bottom: 60px;
	  display: block;

	  span {
		font-size: 80px;
		text-shadow: unset;
		text-transform: uppercase;
		line-height: 90px;
		padding-bottom: 20px;
		letter-spacing: 5px;
		display: block;
		font-weight: 900 !important;
	  }
	}

	.countdown-inner {
	  width: 600px;
	  margin: 0 auto;
	  max-width: 100%;

	  .time_circles {
		position: relative;
		justify-content: center;
		align-items: center;

		canvas {
		  opacity: 0;
		  display: none;
		}

		div {
		  color: #ffffff;
		  font-size: 36px;
		  font-weight: 600;
		  padding-top: 25px;
		  width: 120px !important;
		  height: 120px !important;
		  display: grid;
		  align-items: center;
		  margin: 0 auto;
		  border-radius: 100%;
		  border: 5px solid #ffffff;
		  background:$primaryColor;
		  box-shadow: 0 0 52px rgba(0, 0, 0, 0.3);
		  display: inline-block;
		  margin: 0 12px;

		  &:first-child {
			padding-left: 0;
		  }

		  &:last-child {
			margin-right: 0;
		  }

		  span, h4 {
			color: #ffffff;
		  }

		  span {
			line-height: 1;
			font-size: 55px;
			display: block;
		  }

		  h4 {
			margin: 0;
			font-weight: 400 !important;
			text-transform: uppercase;
		  }
		}
	  }
	}

	.follow-us-sbuscribe {
	  p {
		color: #ffffff;
		font-size: 30px;
		padding-top: 50px;
		font-weight: 500;
		margin-bottom: 5px;
	  }

	  ul {
		list-style: none;
		margin: 0;

		li {
		  display: inline-block;
		  margin-right: 18px;

		  &:last-child {
			margin-right: 0;
		  }

		  a {
			width: 45px;
			height: 45px;
			line-height: 35px;
			border-radius: 50%;
			padding: 0;
			color: #ffffff;

			&:hover {
			  opacity: 0.9;
			}
		  }

		  i {
			line-height: 45px;
			font-size: 18px;
		  }
		}
	  }
	}
  }
}

/* ------------------------------------
	02. Global Class
---------------------------------------*/

.header-logo-skew{
	position: relative;
	&::before{
		content: "";
		position: absolute;
		width: 60px;
		height: 100%;
		right: -44px;
		background: transparent;
		transform: skew(-27deg);
		pointer-events: none;
		left: auto;
	}
}
.fold{
	position: relative;
	background: #ffca1b;
	&::before{
		content:"";
		position: absolute;
		bottom: 0;
		right: 0;
		border-style: solid;
		@media (max-width: 1024px){
			border-width: 0 0 20px 20px;
		}
		border-width: 0 0 30px 30px;
		border-color: #0dcd87 #eee;
		transition: all ease 0.5s;
	}
	&:hover{
		&::before{
			@media (max-width: 1024px){
				border-width: 0 0 30px 30px;
			}
			border-width: 0 0 50px 50px;
			border-color: #0dcd87 #eee;
		}
	}
}

.rectangle {
  position: relative;

  &:after {
	position: absolute;
	content: "";
	height: 120px;
	width: 1px;
	background: #404c51;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
  }
}

.orange {
  color: $titleColorUnit;
}

span.yellow {
  color: $primaryColor;
}

.overflow-show {
  overflow: visible !important;
}

input {
  &[type=checkbox], &[type=radio] {
	margin-right: 8px;
	vertical-align: text-top;
  }
}

.sticky .menu-area {
  padding: 0;
}

.alignleft, .alignright {
  margin-bottom: 26px;
}

.vertical-middle {
  display: table;
  width: 100%;
  height: 100%;

  .vertical-middle-cell {
	display: table-cell;
	vertical-align: middle;
  }
}

.display-table {
  display: table;
  height: 100%;
  width: 100%;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}



.bs-sidebar .wp-block-categories-list.wp-block-categories h2{
	margin-top: 45px;
}


mark, ins, kbd {
  background: $titleColorUnit;
  color: #fff;
  padding: 0 4px;
}

code {
  background: $titleColorUnit;
  color: #fff !important;
}

button, html input[type=button] {
  color: #fff;
  padding: 17px 30px;
  font-size: 14px;
  text-transform: capitalize;
  outline: none;
  transition: all 0.5s ease;
  background: $titleColorUnit;
  position: relative;
  border: none;
}

input {
  &[type=reset], &[type=submit] {
	color: #fff;
	padding: 17px 30px;
	font-size: 14px;
	text-transform: capitalize;
	outline: none;
	transition: all 0.5s ease;
	background: $titleColorUnit;
	position: relative;
	border: none;
  }
}

.mb-30 {
  margin-bottom: 30px;
}

.top-float {
  float: left;
}


button:hover, html input[type=button]:hover {
  background: $primaryColor;
  color: #fff;
}

input {
  &[type=reset]:hover {
	background: $primaryColor;
	color: #fff;
  }

  &[type=submit]:hover {
	opacity: 0.9;
  }
}

#content{
  padding-top: 120px;
  padding-bottom: 120px;
}

body.page-template-service-area-php{
	#content{
		padding-top:0px;
	}
}

.main-contain {
  .rs-porfolio-details #content {
	padding-bottom: 110px;
  }

  .page-error #content {
	padding-top: 60px;
  }
}

.post-password-required input[type=submit] {
  margin-left: -4px;
  padding: 11px 20px;
}

input {
  &[type=text], &[type=number], &[type=password] {
	color: #303030;
	width: 100%;
	max-width: 100%;
	opacity: 1;
  }
}

textarea {
  color: #303030;
  width: 100%;
  max-width: 100%;
  opacity: 1;
}

input {
  &[type=email] {
	color: #303030;
	width: 100%;
	max-width: 100%;
	opacity: 1;
  }

  &[type=text]::-webkit-input-placeholder, &[type=number]::-webkit-input-placeholder, &[type=password]::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }
}

textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(68, 68, 68, 0.4784313725);
  opacity: 1;
}

input {
  &[type=email]::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }

  &[type=text]::-moz-placeholder, &[type=number]::-moz-placeholder, &[type=password]::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }
}

textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(68, 68, 68, 0.4784313725);
  opacity: 1;
}

input {
  &[type=email]::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }

  &[type=text]:-ms-input-placeholder, &[type=number]:-ms-input-placeholder, &[type=password]:-ms-input-placeholder {
	/* IE 10+ */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }
}

textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(68, 68, 68, 0.4784313725);
  opacity: 1;
}

input {
  &[type=email]:-ms-input-placeholder {
	/* IE 10+ */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }

  &[type=text]:-moz-placeholder, &[type=number]:-moz-placeholder, &[type=password]:-moz-placeholder {
	/* Firefox 18- */
	color: rgba(68, 68, 68, 0.4784313725);
	opacity: 1;
  }
}

textarea:-moz-placeholder, input[type=email]:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(68, 68, 68, 0.4784313725);
  opacity: 1;
}

select {
  color: #303030;
  cursor: pointer;

  &:valid {
	color: #303030;
  }
}

/*--------------------------------------------------------------

## Links

--------------------------------------------------------------*/

a {
  color: $primaryColor;

  &:hover, &:focus, &:active {
	color: $titleColorUnit;
  }

  &:focus {
	outline: thin dotted;
  }

  &:hover, &:active {
	outline: 0;
  }
}

.wp-block-calendar tfoot a {
  color: $primaryColor;

  &:hover {
	color: $titleColorUnit;
  }
}

/********************* RS Particle Banner **************************/

.rs-particle-banner {
  width: 100%;
  position: relative;

  .particle-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	.banner_title {
	  display: inline-block;
	  margin-bottom: 25px;
	  font-size: 65px;
	  position: relative;
	  z-index: 9;
	  color: #444;
	  line-height: 70px;
	}

	.banner-button {
	  margin-top: 20px;

	  &.btn-light .readon {
		&:not(.border):hover {
		  background: transparent;
		  border-color: #fff !important;
		  color: #fff !important;
		}

		&.border {
		  border-color: #fff !important;
		  color: #fff !important;

		  &:hover {
			border-color: $primaryColor !important;
		  }
		}
	  }

	  a:hover {
		opacity: 0.8;
	  }
	}

	.banner-introtext {
	  display: block;
	  font-size: 16px;
	  line-height: 22px;
	  padding-bottom: 25px;
	}
  }

  ul {
	list-style-type: none;
	margin: 0;
	padding: 0;

	li {
	  display: inline-block;
	  margin: 0 25px 25px 0;
	}
  }

  .arrow-btn {
	width: 26px;
	height: 55px;
	bottom: 0%;
	left: 50%;
	z-index: 2;
	text-align: center;
	position: absolute;
	border: 1px solid #999;
	border-radius: 20px;
	transform: translate(-50%, -50%);

	i {
	  color: #999;
	  font-size: 22px;
	  line-height: 80px;
	  -webkit-animation: bounce 2s infinite;
	  animation: bounce 2s infinite;
	  transition: 0.4s;
	  -webkit-transition: 0.4s;
	  -webkit-font-smoothing: antialiased;
	  font-smoothing: antialiased;

	  &:hover {
		-webkit-animation: none;
		animation: none;
	  }
	}
  }
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translate3d(0, 0, 0);
  }

  40%, 43% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -30px, 0);
  }

  70% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -15px, 0);
  }

  90% {
	transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translate3d(0, 0, 0);
  }

  40%, 43% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -30px, 0);
  }

  70% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -15px, 0);
  }

  90% {
	transform: translate3d(0, -4px, 0);
  }
}
.rs-slider-btn-icon img{
	top: 3px;
    position: relative;
    height: .8em;
	margin-left: 7px;
}

.hfe-nav-menu nav.border-tops > ul > li.current-menu-ancestor > div > a,
.hfe-nav-menu nav.border-tops > ul > li.current_page_item > div > a,
.hfe-nav-menu nav.border-tops > ul > li.current_page_item > a {
	position: relative;
	// &::before{
	// 	content: "";
	// 	position: absolute;
	// 	left: 18px;
	// 	right: 18px;
	// 	top: 0;
	// 	background: $primaryColor;
	// 	height: 3px;
	// 	z-index: 1;
	// 	display: block !important;
	// 	opacity: 1 !important;
	// 	transition: all .5s ease;
	// }
}

.hfe-nav-menu {
    nav.border-bottoms,
    nav.border-tops {
        > ul {
            > li {
                > div > a,
                > a {
					position: relative;
					&::before{
						content: "";
						position: absolute;
						left: 0;
						right: 0;
						top: 0;
						background: $primaryColor;
						height: 4px;
						z-index: 1;
						display: block !important;
						transition: $transition;
						opacity: 0;
					}
					&:hover {
						&::before { 
							opacity: 1 !important;
						}
					}
                }
				&.current-menu-ancestor,
				&.current_page_item,
				&.current_page_item {
					> div > a,
                	> a {
						&::before {
							opacity: 1 !important;
						}
					}
				}
            }
        }
    }
	nav.border-bottoms {
        > ul {
            > li {
                > div > a,
                > a {
					&::before{
						top: unset;
						bottom: 0;
					}
					&:hover {
						&::before { 
							opacity: 1 !important;
						}
					}
                }
            }
        }
    }
}




.hfe-nav-menu nav.arrow-tops > ul > li > div > a,
.hfe-nav-menu nav.arrow-tops > ul > li > a {
	position: relative;
	&::before{
		height: 0;
		width: 0;
		content: '';
		position: absolute;
		top: 0;
		z-index: 1;
		display: block;
		transition: all 0.5s ease;
		left: 50%;
		transform: translateX(-50%);
		opacity: 0;
		border: solid transparent;
		border-color: transparent;
		border-top-color: $primaryColor;
		border-width: 7px;
	}
}

.hfe-nav-menu nav.arrow-tops > ul > li.current-menu-ancestor > div > a,
.hfe-nav-menu nav.arrow-tops > ul > li.current_page_ancestor > div > a,
.hfe-nav-menu nav.arrow-tops > ul > li.current_page_item > a {
	position: relative;
	&::before{
		opacity: 1 !important;
	}
}

.hfe-nav-menu nav.arrow-tops > ul > li > div > a:hover::before,
.hfe-nav-menu nav.arrow-tops > ul > li > a:hover::before{
	opacity: 1 !important;
}

.elementor-icon-list-text{
	em{
		font-style: normal;
		margin-right: 10px;
		font-weight: 600;
	}
}


.elementor-icon-list-text{
	em:not(.rs-white){
		color: $primaryColor;
	}
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu .sub-arrow {
    position: absolute;
    right: 22px;
}

.rs-title-highlight{
	color: #f7c600;
}

/*--------------------------------------------------------------

--------------------------------------------------------------*/

.ceo-founder p {
  font-weight: 500;
  color: $titleColor;
}

.sticky-logo {
  display: none;
}

.sticky .logo-area {
  display: none;

  &.sticky-logo {
	display: block;
  }
}

.owl-carousel {
  padding-top: 0;

  .owl-nav {
	right: 0;

	[class*=owl-] {
	  font-size: 0;
	  width: 42px;
	  height: 42px;
	  line-height: 42px;
	  background: $titleColorUnit;
	  color: #fff;
	  border-radius: 50%;
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  transition: 0.6s ease all;
	  opacity: 0;
	  visibility: hidden;

	  &:before {
		font-family: remixicon;
		position: absolute;
		font-size: 20px;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	  }

	  &.owl-prev {
		left: 0;

		&:before {
		  content: "\f112";
		}
	  }

	  &.owl-next {
		right: 0;

		&:before {
		  content: "\f113";
		  margin-left: 2px;
		}
	  }

	  &:hover {
		background: $primaryColor;
		color: #fff;
	  }
	}
  }

  &:hover .owl-nav [class*=owl-] {
	opacity: 1;
	visibility: visible;

	&.owl-prev {
	  left: -60px;
	}

	&.owl-next {
	  right: -60px;
	}
  }

  .partner-item a img {
	width: auto;
	margin: 0 auto;
  }
}

.blog .rs-blog .blog-item .blog-img .blog-meta, 
.archive .rs-blog .blog-item .blog-img .blog-meta {
	position: absolute;
    top: 25px;
    left: 27px;
    right: auto;
    z-index: 99;
    bottom: auto;
    width: auto;
	.btm-cate {
		overflow: hidden;
		list-style: none;
		margin: 0px;
		padding: 2px 19px 2px 16px;
		position: relative;
		font-size: 15px;
		display: inline-flex;
		align-items: center;
		background: $primaryColor;
		border-radius: 3px;
		flex-wrap: wrap;
		  li {
			float: none;
			color: $hovercolor;
			line-height: 24px;
			a {
			color: $whiteColor;
			}
			
			i{
				margin-right: 4px;
				&::before{
					font-size: 16px;
				}
				&.ri-user-4-line:before{
					font-size: 17px;
				}
				&.ri-calendar-line{
					position: relative;
					top: 3px;
				}
				&.ri-user-4-line{
					top: 3px;
				}
			}
			+li{
				position: relative;
				margin-left: 26px;
				&::before{
					content: "";
					position: absolute;
					left: -13px;
					top: 10px;
					height: 8px;
					width: 1px;
					background: #fff;
					transform: rotate(22deg);
				}			
			}
			&.rs___tag{
				&::before{
					content: "";
					position: absolute;
					left: -13px;
					top: 10px;
					height: 8px;
					width: 1px;
					background: #fff;
					transform: rotate(22deg);
				}
			}
		  }
	}
}


.btm-cate_no_thum{
    list-style: none;
    margin: 0px;
    position: relative;
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
  	li {
		float: none;
		color: $bodyColor;
		line-height: 24px;
		a {
			color: $bodyColor;
			&:hover {
				color: $primaryColor;
			}
		}
		+li{
			position: relative;
			margin-left: 30px;	
			&:before{
				content: "";
				position: absolute;
				width: 8px;
				height: 8px;
				border-radius: 0%;
				left: -18px;
				top: 50%;
				transform: translateY(-50%);
				background: $primaryColor
			}		
		}
		.info .name{
			font-weight: 700;
		}		
  	}
}

.widget.widget_custom_html{
	position: relative;
}

.rs_sidebar_cta{
	img{
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		border-radius: 5px;
	}
	.rs_sidebar_cta_content{
		position: relative;
		z-index: 1;
		color: #fff;
		h3{
			color: #fff;
			margin: 0;
			font-size: 40px;
			font-weight: 700;
			line-height: 50px;
		}
		p{
			color: #fff;
			margin: 15px 0 35px;
			font-size: 16px;
			font-weight: 500;
			max-width: 150px;
			line-height: 23px;
		}
		a.cta_btn{
			background: #fff;
			font-size: 16px;
			font-weight: 600;
			color: #1A73E9;
			padding: 12px 26px 12px 24px;
			border-radius: 10px;
			display: inline-block;
			&:hover{
				opacity: .9;
			}
		}
	}
}

.rs-unique-grid-services{
	.rs-service-slider{
		margin-bottom: 25px;
	}
}

.sidenav {
  width: 100%;

  .widget-title {
	color: #19082D !important;
	font-size: 25px !important;
	line-height: 35px;
	font-weight: 500 !important;
	position: relative;
  }

  .offcanvas_logo {
	padding-bottom: 40px;
  }

  .rs-innner-offcanvas-contents .widget {
	border-bottom: 1px solid rgba(62, 62, 62, 0.1);
	margin-bottom: 45px;
	padding-bottom: 24px;

	&:last-child {
	  border-bottom: none;
	}

	p {
	  opacity: 0.8;
	}

	ul.fa-ul li span {
	  font-size: 20px;
	  color: #19082D;
	  font-weight: 400;

	  em {
		display: block;
		font-style: normal;
		font-size: 14px;
		font-weight: 500;
		color: #3E3E3E;
	  }

	  a {
		font-size: 20px;
		color: #19082D;
		font-weight: 400;
	  }
	}

	.footer_social {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  display: flex;
	  flex-wrap: wrap;

	  li a {
		background: #f4f3f4;
		color: #626262;
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		display: block;
		border-radius: 7px;
		margin-right: 15px;
		margin-bottom: 15px;

		&:hover {
		  background: $titleColorUnit;
		  color: #fff;
		}
	  }
	}
  }

  .widget {
	padding: 0;

	.widget-title {
	  font-size: 26px;
	  color: #fff;
	  margin-bottom: 28px;
	}

	.search-form {
	  .search-input {
		height: 42px;
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.3) !important;
		color: #fff;
		font-size: 14px;
		outline: none;

		&::-webkit-input-placeholder {
		  /* Chrome/Opera/Safari */
		  color: #fff;
		}

		&::-moz-placeholder {
		  /* Firefox 19+ */
		  color: #fff;
		}

		&:-ms-input-placeholder {
		  /* IE 10+ */
		  color: #fff;
		}

		&:-moz-placeholder {
		  /* Firefox 18- */
		  color: #fff;
		}
	  }

	  button {
		padding: 8px 12px;
		color: #fff;
		background: transparent !important;
		transition: 0.3s ease all;

		&:hover {
		  opacity: 0.7;
		}
	  }
	}
  }

  .fa-ul {
	margin-left: 0;
	text-align: left;
	font-size: 15px;

	li {
	  padding: 5px 0 20px;
	  display: flex;
	  align-items: center;

	  &:last-child {
		padding-bottom: 0;
	  }

	  i {
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: $titleColorUnit;
		line-height: 45px;
		text-align: center;
		margin-right: 15px;

		&:before {
		  font-size: 16px;
		  margin-left: 0 !important;
		  color: #fff;
		}

		&.ri-email {
		  position: relative;
		  top: 1px;
		}
	  }

	  &.phone_li i {
		line-height: 48px;
	  }

	  &.address1 {
		padding-left: 58px;
		padding-top: 0;
		font-size: 18px;
		margin-bottom: 4px;

		i {
		  position: absolute;
		  top: 3px;
		  left: 0;
		}
	  }
	}
  }

  .offcanvas_social {
	margin-left: 0;
	list-style-type: none;
	padding-bottom: 0;
	margin: 50px 0 0;

	li {
	  display: inline-block;

	  a {
		transition: all 0.35s;
		-moz-transition: all 0.35s;
		-ms-transition: all 0.35s;
		float: left;
		margin-right: 0;

		i {
		  font-size: 15px;
		  color: #0a0a0a;
		  margin: 0 8px 0 0;
		  text-align: center;
		  border: 1px solid rgba(0, 0, 0, 0.06);
		  width: 35px;
		  height: 35px;
		  line-height: 35px;
		  border-radius: 0px;
		  transition: 0.4s;

		  &:hover {
			background: $titleColorUnit;
			border-color: $titleColorUnit;
			color: #fff;
		  }
		}
	  }

	  &:last-child a {
		margin-right: 0;
	  }
	}
  }

  .nav-close-menu-li {
	margin: 0;
	padding-bottom: 30px;
	text-align: right;

	a {
	  font-size: 0;
	  text-align: center;
	  display: inline-block;
	  border: 2px solid #fff;
	  width: 36px;
	  height: 36px;
	  line-height: 36px;
	  border-radius: 100%;
	  margin-right: 10px;
	  position: relative;

	  &:after {
		content: "";
		position: absolute;
		width: 2px;
		height: 14px;
		background-color: #fff;
		top: 9px;
	  }

	  &:before {
		content: "";
		position: absolute;
		width: 2px;
		height: 14px;
		background-color: #fff;
		top: 9px;
		transform: rotate(45deg);
	  }

	  &:after {
		transform: rotate(-45deg);
	  }

	  &:hover {
		background: #fff;
		color: #000;
		border-color: #fff;

		&:after, &:before {
		  background-color: $primaryColor;
		}
	  }
	}
  }

  .widget_nav_menu ul {
	padding: 0;
	margin: 0;
	text-align: left;

	li {
	  list-style: none;
	  border: none !important;
	  margin-left: 0;
	  padding: 0;
	  position: relative;

	  a {
		font-size: 15px;
		display: block;
		color: $titleColor;
		line-height: 45px;
		font-weight: 500 !important;

		&:hover {
		  color: $titleColorUnit;
		}
	  }

	  &:before {
		display: none;
	  }

	  ul li a {
		text-transform: capitalize;
		padding: 10px 0;
		line-height: 24px;
	  }
	}
  }

  .bs-search button {
	padding: 5px 11px;
  }

  li.nav-link-container {
	color: $titleColorUnit;
	text-align: center;
	display: block;
	border-radius: 30px;
	height: 40px;
	right: 15px;
	width: 40px;
	top: 5px;
	position: absolute;
	transition: transform 0.5s ease;

	&:hover a {
	  display: block;
	}

	a {
	  display: block;
	  background: none !important;

	  span {
		background: $primaryColor !important;
		height: 3px;
		width: 25px;
	  }
	}

	.nav-menu-link {
	  padding: 13px 15px 15px 10px !important;

	  span {
		&.hamburger1 {
		  transform: rotate(-45deg) translate(-5px, 5px);
		}

		&.hamburger3 {
		  transform: rotate(45deg) translate(0px, 0px);
		}
	  }
	}
  }
}

.rs__menu_sp_dyc{
	i{
		display: none;
	}
}

.hfe-nav-menu__layout-vertical{
	.rs__menu_sp_dyc{
		position: absolute;
		top: 50%;
		right: 0px;
		transform: translateY(-50%);
		opacity: 0;
		visibility: hidden;
		i{
			display: inline-block;
			font-size: 20px;
			color: currentColor;
		}
	}
	&.icon-enable{
		.rs__menu_sp_dyc{
			opacity: 1;
			visibility: visible;
		}
	}
}

.bs-sidebar .widget_search button {
  font-size: 0;

  i {
	display: none;
  }
}

.fa-ul {
  list-style: none;
}

.mobile-menu-container {
  .nav-close-menu-li {
	padding-top: 50px;

	a {
	  padding: 0;
	}
  }

  ul {
	padding-left: 0;
	margin: 0;
	text-align: left;

	li {
	  list-style: none;
	  border: none !important;
	  margin-left: 0;
	  padding: 0;

	  a {
		font-size: 15px;
		padding: 12px 0;
		display: block;
		color: #222;
		border-bottom: none;

		&:hover {
		  opacity: 0.9;
		}
	  }

	  &:before {
		display: none;
	  }
	}
  }
}

.nav-active-menu-container {
  transform: translate(0);
}

.testimonial2 .image-wrap.center-yes {
  justify-content: center;
  display: flex;
  flex-wrap: nowrap;
}

.content--teb-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  .content--left-area {
	flex: 0 0 50%;
	padding-left: 40px;

	ul.check-lists {
	  margin: 35px 0 0 0;
	}
  }

  .image--right-area {
	flex: 0 0 50%;
  }

  &.full-sec {
	display: block;

	.content--left-area {
	  padding-right: 0;
	}
  }
}

.prelements-heading {
  .pre-heading-line {
	height: 5px;
	width: 90px;
	background: $titleColorUnit;
	margin: 0px;
	position: relative;
	border-radius: 30px;

	&:before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: -2.7px;
	  height: 10px;
	  width: 10px;
	  border-radius: 50%;
	  background: $primaryColor;
	  -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: pre-move-dot;
	  animation-name: pre-move-dot;
	}
  }

  &.center {
	.pre-heading-line {
	  margin: 20px auto;
	}

	.sub-text .pre-heading-line {
	  margin: 0 auto 20px;
	}
  }

  &.right .pre-heading-line {
	margin-left: auto;
	margin-right: 0;
  }

  .title-inner {
	.title.h2 {
		font-size: 36px;
    	font-weight: 500;
	}
  }
}

.gradient_color .title .cd-headline p {
  background-color: transparent;
  background-image: linear-gradient(80deg, #D6A700 0%, #7D16FF 100%);
}

@-webkit-keyframes pre-move-dot {
  from {
	transform: translateX(0);
  }

  to {
	transform: translateX(88px);
  }
}

@keyframes pre-move-dot {
  from {
	transform: translateX(0);
  }

  to {
	transform: translateX(88px);
  }
}

.rs-portfolio-style6 .portfolio-item .portfolio-content:before {
  border-radius: 0;
}


.pre-heading-line1 {
  position: relative;
}

.prelements-heading.left .pre-heading-line1 {
  &:before, &:after {
	left: 0;
  }

  position: relative;
  margin-left: 44px;
  margin-top: 20px;
}

.prelements-gradient-heading .title-inner {
  .title, span.subtitle {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }
}

.not__hover {
  &:hover .elementor-widget-wrap:hover .services-style1, &:not(:hover) .elementor-widget-wrap .services-style1.rs_active {
	background: #fff;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
  }
}
.header-btn {
	.header-btn-wrapper {
		display: inline-block;
	}
}

.popup-text-video svg {
  display: block;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.prelements-heading .sub-text .pre-heading-line {
  display: block;
}

.popup-text-video {
  svg {
	position: absolute;
	transition: 0.5s;
	bottom: -12px;
	width: 112px;
  }

  &:hover svg {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation: expand2 2s;
	animation: expand2 2s;
  }
}



@-webkit-keyframes expand2 {
  from {
	width: 0;
  }

  to {
	width: 112px;
  }
}

@keyframes expand2 {
  from {
	width: 0;
  }

  to {
	width: 112px;
  }
}

.services-btn {
  svg {
	position: relative;
	transition: 0.5s;
	top: 0px;
  }
}

.blog-btn {
  svg {
	position: relative;
	transition: 0.5s;
	top: 2px;
	left: 2px;
  }

  &:hover svg {
	top: -1px;
  }
}

.anim10 {
  transition: all 500ms ease;
  transform: translateY(0px);

  &:hover {
	transform: translateY(-10px);
  }
}

.prelements-heading {
  &.center .sub-text .pre-heading-line1 {
	top: -22px;
	padding-right: 0;
	max-width: 120px;
	margin: 0 auto;
	display: block;
  }

  &.right .sub-text {
	.pre-heading-line1 {
	  top: -10px;
	  padding-left: 75px;
	  padding-right: 0;
	  float: right;
	  clear: right;
	}

	.pre-heading-line {
	  display: block;
	  top: 10px;
	  float: right;
	  clear: left;
	  margin-left: 25px;
	  margin-right: 0px;
	}
  }

  &.left .sub-text .pre-heading-line {
	display: block;
	top: 10px;
	float: left;
	clear: left;
	margin-right: 25px;
  }

  &.right {
	.pre-heading-line1 {
	  &:before, &:after {
		right: 0;
		left: auto;
	  }

	  position: relative;
	  margin-left: 44px;
	  margin-top: 20px;
	}

	.sub-text .pre-heading-line1:after {
	  margin-right: 25px;
	  margin-left: 0;
	}
  }
}

.elementor-widget-container:hover .pre-heading-line1:before {
  width: 65px;
  margin-left: -5px;
  background: $titleColorUnit;
}

.rs__custom_slider_btn {
  .rs_button {
	padding: 14px 45px 14px 35px;
  }

  .rs-btn.style3 a i {
	margin-left: 10px !important;
  }
}

.elementor-widget-container:hover {
  .pre-heading-line1:after {
	width: 12px;
	margin-left: 35px;
	background: $titleColorUnit;
  }

  .prelements-heading.right .sub-text .pre-heading-line1 {
	&:before {
	  margin-right: -14px;
	  margin-left: 0;
	}

	&:after {
	  margin-right: 0px;
	}
  }
}

.sub-text .pre-heading-line1 {
  top: -13px;
  padding-right: 75px;
}

#rs-header {
  &.header-transparent .menu-sticky.sticky ul.offcanvas-icon.sidenav .nav-link-container span {
	background: #fff !important;
  }

  .menu-area .navbar ul {
	.menu-item:not(.mega) ul li ul.sub-menu, .page_item:not(.mega) ul li ul.sub-menu {
	  position: absolute;
	  left: 100%;
	  top: 0px;
	  opacity: 0;
	  transform: translateY(20px);
	  visibility: hidden;
	}

	.menu-item:not(.mega) ul > li:hover > ul.sub-menu, .page_item:not(.mega) ul > li:hover > ul.sub-menu {
	  opacity: 1;
	  transform: translateY(0px);
	  visibility: visible;
	}
  }
}

.secondarycolor {
  color: $titleColorUnit;
}

#rs-header .menu-area .navbar ul li {
  &.three-col ul > li {
	width: 33.33%;
  }

  &.four-col ul > li {
	width: 25%;
  }
}

.transparent_header {
  position: absolute;

  .menu-area .navbar ul > li > a:after {
	background: #fff;
  }

  .sticky .navbar ul > li > a:after {
	background: $primaryColor;
  }
}

.default_header .menu-area .navbar ul > li > a:after {
  background: $primaryColor;
}

.customrev .rev-btn {
  i {
	position: absolute;
	top: 50%;
	right: 26px;
	transition: all 0.3s;
	transform: translateY(-50%);
	opacity: 1;
	font-size: 16px;
  }

  &:hover i {
	opacity: 1;
	right: 18px;
  }
}

.space15 .elementor-accordion-item {
  margin-bottom: 20px !important;
}

.elementor-widget-rs-logo .slick-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


/* ------------------------------------
	20. Breadcrumbs
  ---------------------------------------*/

.rs-breadcrumbs {
  position: relative;
  background: $titleColor;
  &.text-center {
	.breadcrumbs-inner {
	  max-width: 600px;
	  margin: 0 auto;
	}

	.breadcrumbs-meta, .breadcrumbs-title {
	  justify-content: center;
	}

	.breadcrumbs-inner .page-title {
	  text-align: left;
	}
  }

  &.text-right {
	.breadcrumbs-meta, .breadcrumbs-title {
	  justify-content: right;
	}

	.breadcrumbs-inner .page-title {
	  text-align: right;
	}
  }

  .breadcrumbs-inner {
	padding: 120px 0 120px;
	position: relative;
	margin: 0 auto;
	text-align: center;

	p {
	  font-weight: 500;
	  color: $titleColor;
	  max-width: 600px;
	  margin: 18px auto 0;
	}

	.banner-desc {
	  margin-top: 10px;
	  margin-bottom: 10px;
	  color: $titleColor;
	  text-align: left;
	}

	.cate-single .post-categories {
	  padding: 0 0 8px 0;

	  a {
		background: #fbfbfb;
		color: #fff !important;
		padding: 6px 19px 5px;
		border-radius: 5px;
		font-size: 13px;
		margin-right: 10px;
		margin-bottom: 10px;
		display: inline-block;
	  }
	}

	.bs-meta {
	  padding-left: 0;

	  li {
		margin-right: 13px;
		font-size: 13px;

		i {
		  margin-right: 3px;

		  &:before {
			font-size: 14px;
			font-weight: 600;
		  }
		}
	  }
	}
  }

  .container-fluid {
	padding-left: 70px;
	padding-right: 70px;
  }

  .breadcrumbs-single {
	background-size: cover;
  }

  .trail-browse {
	display: none !important;
  }

  .trail-items li {
	position: relative;

	a {
	  padding-right: 20px;
	}

	&::after {
	  right: 0px;
	  position: absolute;
	  padding: 0;
	  content: "\f147";
	  font-family: remixicon;
	  font-style: normal;
	  font-weight: 300;
	  display: block !important;
	  top: 0;
	}

	&.trail-end::after {
	  display: none !important;
	}
  }

  .page-title {
	margin: 0 auto !important;
	padding-bottom: 0px !important;
	color: $whiteColor;
	font-size: 65px;
	position: relative;
  }

  h6.intro-title {
	color: #19082D;
  }

  .breadcrumbs {
	text-align: center;
  }

  .trail-items li::after {
	font-size: 12px;
  }

  ul {
	display: inline-block;
	padding: 5px 20px;
	margin: 0px;

	li {
	  color: #fff;
	  display: inline-block;
	  font-size: 14px;

	  a {
		padding: 0 8px;
		color: #fff;

		&:hover {
		  color: #fff;
		}
	  }

	  &.trail-begin a {
		position: relative;
		display: inline-block;
		padding-left: 0;

		&:hover {
		  opacity: 0.7;
		}
	  }

	  &.trail-end {
		padding-left: 8px;
	  }
	}
  }

  &.porfolio-details {
	position: relative;
  }

  .breadcrumbs-meta {
	display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    margin-top: 20px;
	background-color: #FFFFFF0F;
    padding: 6px 15px;
	li {
	  margin-right: 23px;
	  color: $primaryColor;
	  .postedby {
		display: flex;
		align-items: center;

		.avatar {
		  margin-right: 15px;
		  border-radius: 50%;
		}

		.info {
		  color: #fff;

		  .name {
			margin: 0;
			text-transform: capitalize;
			color: #fff;
		  }

		  .designation {
			font-weight: 300;
		  }
		}
	  }

	  .single-posts-meta li {
		padding-right: 0;
	  }

	  .fi.fi-rr-book {
		position: relative;
		top: 2px;
		margin-right: 1px;
		color: #3E3E3E !important;
	  }

	  .title {
		color: #3E3E3E;
		margin: 0;
	  }

	  a {
		font-weight: 300;
		color: #fff;
		font-size: 16px;
		&:hover {
		  color: $bodyColor;
		}
	  }

	  span {
		font-weight: 400;
		color: #fff;
		font-size: 16px;

		i {
		  margin-right: 2px;
		  position: relative;
		  top: 1px;
		  color: $titleColorUnit !important;
		}

		svg {
		  width: 17px;
		  position: relative;
		  top: -2px;
		  margin-right: 5px;
		  color: $primaryColor;
		  &.feather-calendar {
			width: 17px;
		  }

		  &.feather-message-square {
			top: 0px;
		  }
		}
	  }

	  &:last-child {
		margin: 0;
		svg {
			width: 18px;
		}
	  }

	  svg.feather-file {
		width: 16px;
		position: relative;
		top: -1px;
		margin-right: 5px;
	  }
	}
  }
}


.mc4wp-form-fields input[type=email] {
  &::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #999;
  }

  &::-moz-placeholder {
	/* Firefox 19+ */
	color: #999;
  }

  &:-ms-input-placeholder {
	/* IE 10+ */
	color: #999;
  }

  &:-moz-placeholder {
	/* Firefox 18- */
	color: #999;
  }
}

.entry-content .page-links {
  padding-top: 30px;
  .pagination-pages {
	a {
		color: #fff;
		&:hover {
			opacity: 0.7;
		}
	}
  }
}

.comment-reply-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 14px;
}

.page .comments-title {
  font-size: 24px;
  font-weight: 700;
}

.single-post .bs-sidebar h2 {
  margin-top: 0;
}

.home5__brl__0 .elementor-accordion-item {
  border-left: 0 !important;
  border-right: 0 !important;
  margin: 22px 0;
  background: #fff;

  .elementor-tab-title.elementor-active {
	background: #4caf50 !important;
  }
}

.rs-innner-offcanvas-contents .widget_text {
  font-size: 15px;
  line-height: 1.8;
}

.recent-widget .show-featured .post-img img {
  border-radius: 1px;
}

.format-aside .single-content-full .bs-desc {
  margin-top: 0;
}

.bs-desc .wp-block-button__link{
	color: $secondaryColor !important;
}
.bs-desc .is-style-outline .wp-block-button__link{
	color: $secondaryColor !important;
}


.close5 {
  background: #28406d;
  color: #fff;
  border-radius: 50%;
}

.home1-contact {
  input.wpcf7-text, select, textarea {
	background: $titleColorUnit;
	border: none;
	color: #fff;
	width: 100%;
	margin-bottom: 30px;
	outline: none;
  }

  input {
	&[type=submit] {
	  background: $titleColorUnit;
	  width: 100%;
	  font-size: 16px;
	  letter-spacing: 2px;
	  text-transform: uppercase;
	  margin-top: -7px;
	  border-radius: 0;
	}

	&.wpcf7-text {
	  height: 55px;
	}
  }

  textarea {
	height: 170px;
  }

  input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #fff;
	opacity: 1;
  }

  input {
	&[type=email]::-webkit-input-placeholder {
	  /* Chrome/Opera/Safari */
	  color: #fff;
	  opacity: 1;
	}

	&[type=text]::-moz-placeholder {
	  /* Firefox 19+ */
	  color: #fff;
	  opacity: 1;
	}
  }

  textarea::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff;
	opacity: 1;
  }

  input {
	&[type=email]::-moz-placeholder {
	  /* Firefox 19+ */
	  color: #fff;
	  opacity: 1;
	}

	&[type=text]:-ms-input-placeholder {
	  /* IE 10+ */
	  color: #fff;
	  opacity: 1;
	}
  }

  textarea:-ms-input-placeholder {
	/* IE 10+ */
	color: #fff;
	opacity: 1;
  }

  input {
	&[type=email]:-ms-input-placeholder {
	  /* IE 10+ */
	  color: #fff;
	  opacity: 1;
	}

	&[type=text]:-moz-placeholder {
	  /* Firefox 18- */
	  color: #fff;
	  opacity: 1;
	}
  }

  textarea:-moz-placeholder, input[type=email]:-moz-placeholder {
	/* Firefox 18- */
	color: #fff;
	opacity: 1;
  }
}

.dark-contact {
  input.wpcf7-text, select, textarea {
	background: transparent;
	border: none;
	border-bottom: 2px solid #999;
	color: #fff;
	width: 100%;
	margin-bottom: 30px;
	outline: none;
	padding-left: 0;
  }

  input {
	&[type=submit] {
	  background: $titleColorUnit;
	  width: 100%;
	  font-size: 14px;
	  text-transform: uppercase;
	  border-radius: 0;
	  border-color: $titleColorUnit;
	  padding: 12px 30px;

	  &:hover {
		border-color: $titleColorUnit;
		background: transparent;
		color: #fff;
	  }
	}

	&.wpcf7-text {
	  height: 55px;
	}
  }

  textarea {
	height: 120px;
  }

  input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #fff;
	opacity: 1;
  }

  input {
	&[type=email]::-webkit-input-placeholder {
	  /* Chrome/Opera/Safari */
	  color: #fff;
	  opacity: 1;
	}

	&[type=text]::-moz-placeholder {
	  /* Firefox 19+ */
	  color: #fff;
	  opacity: 1;
	}
  }

  textarea::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff;
	opacity: 1;
  }

  input {
	&[type=email]::-moz-placeholder {
	  /* Firefox 19+ */
	  color: #fff;
	  opacity: 1;
	}

	&[type=text]:-ms-input-placeholder {
	  /* IE 10+ */
	  color: #fff;
	  opacity: 1;
	}
  }

  textarea:-ms-input-placeholder {
	/* IE 10+ */
	color: #fff;
	opacity: 1;
  }

  input {
	&[type=email]:-ms-input-placeholder {
	  /* IE 10+ */
	  color: #fff;
	  opacity: 1;
	}

	&[type=text]:-moz-placeholder {
	  /* Firefox 18- */
	  color: #fff;
	  opacity: 1;
	}
  }

  textarea:-moz-placeholder, input[type=email]:-moz-placeholder {
	/* Firefox 18- */
	color: #fff;
	opacity: 1;
  }
}

.footer-top-contact .rs-contact {
  color: #fff;

  .contact-address .address-text {
	h3 {
	  color: #fff;
	  font-weight: 500;
	}

	a {
	  color: #fff;

	  &:hover {
		color: $primaryColor;
	  }
	}
  }
}

.rs-portfolio-style7 .showcase-item img {
  -webkit-animation: scale-up-center 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-up-center 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes scale-up-center {
  0% {
	transform: scale(0.5);
  }

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

@keyframes scale-up-center {
  0% {
	transform: scale(0.5);
  }

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

.subscribe-form {
  p {
	text-align: center;
	margin: 0 auto;
  }

  .mc4wp-form-fields {
	margin: 0 auto;
  }

  input {
	display: inline-block;
	height: 70px;
	line-height: 70px;
	padding: 0 30px;

	&[type=email] {
	  width: 70%;
	  border-radius: 30px 0 0 30px;
	}

	&[type=submit] {
	  border-radius: 0 30px 30px 0;
	  position: relative;
	}
  }

  .signup-post {
	display: none;
  }
}

.request-a-services {
  .Services {
	position: relative;
	width: 100%;
	display: block;

	select {
	  display: none;

	  /*hide original SELECT element:*/
	}
  }

  .select-selected {
	background-color: #fff;
  }

  .select-items div {
	color: #7A7A7A;
	padding: 10px 20px;
	border: 1px solid #f1f1f1;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 50px;
	transition: 0.3s;
  }

  .select-selected {
	color: #7A7A7A;
	padding: 10px 20px;
	border: 1px solid #f1f1f1;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 50px;
	transition: 0.3s;
	padding: 16px 20px 16px 20px;
  }

  .select-items {
	position: absolute;
	background-color: transparent;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;

	div {
	  background: #fff;
	  border-radius: 0;
	}
  }

  .select-hide {
	display: none;
  }

  .select-items div:hover, .same-as-selected {
	background-color: #f1f1f1;
  }
}


/*----------------------------------------------
	Preloader
----------------------------------------------*/

#pre-load {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 999999;
  .cancel-loader {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 4px 20px;
	border-radius: 3px;
	background: $primaryColor;
	color: white;
	font-size: 14px;
	opacity: 0;
	&:hover {
		background: $primaryColor;
		color: white;
	}
  }
}

.loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid #ebebec;
  border-radius: 50%;

  &:before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-top: 3px solid $titleColorUnit;
	border-radius: 50%;
	animation: loaderspin 1.8s infinite ease-in-out;
	-webkit-animation: loaderspin 1.8s infinite ease-in-out;
  }
}

.gsap-cursor-attached-label {
    cursor: grab;
    .label-move {
        width: 80px;
        height: 80px;
        position: absolute;
        pointer-events: none;
        background: $primaryColor;
        color: #fff;
        display: flex;
        align-items: center;
		visibility: hidden;
        justify-content: center;
        z-index: 1;
        border-radius: 50%;
		transition: opacity 0.3s;
		font-weight: 500;
    }
    &:hover {
        .label-move {
            opacity: 0.7;
        }
    }
	&:active {
		cursor: grabbing;
	}
}
body {
	.hfeed {
		&:not(.gsap-enable) {
			.gsap-cursor-attached-label {
				.label-move {
					display: none;
				}
			}
		}
	}
	&.elementor-editor-active {
		.gsap-cursor-attached-label {
			.label-move {
				visibility: visible;
			}
		}
	}
}

.rs-slider-scrolldown {
  transform: rotate(90deg);

  a {
	color: #fff;
	transition: 0.4s;

	&:hover {
	  color: #19082D;
	}
  }
}

.loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;

  img {
	-webkit-animation: loaderpulse alternate 900ms infinite;
	animation: loaderpulse alternate 900ms infinite;
	width: 40px;
  }
}

@keyframes loaderspin {
  0% {
	transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
	transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderspin {
  0% {
	transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
	transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderpulse {
  0% {
	transform: scale(1);
  }

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

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

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

.slider-v-btn .rs-video.style2 .rs-icon-inners .animate-border .popup-border {
  background: #fff;
  text-align: center !important;
  line-height: 65px !important;
  width: 65px !important;
  height: 65px !important;

  i {
	color: #fd4a36;
  }

  &:after, &:before {
	border-color: #fff;
  }
}

/*-------------------------
	33.Preloader CSS
---------------------------*/

#braintech-load {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  z-index: 999999;

  img {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 15px;
	transform: translate(-50%, -50%);
  }
}

.loader-braintech {
  position: absolute;
  width: 75px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background-color: $titleColorUnit;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner_inner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes sk-scaleout {
  0% {
	-webkit-transform: scale(0);
  }

  100% {
	-webkit-transform: scale(1.1);
	opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
	transform: scale(0);
  }

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

.ri-cross.closes:before {
  color: #ffffff;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.sidenav .widget_nav_menu ul li.mega {
  position: relative !important;
}

.max1000 .slick-list {
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.artificial-price-plan .rs-pricing-table-features-list li i {
  background: transparent;
}

@-webkit-keyframes braintech-loader-anim {
  0% {
	opacity: 1;
	transform: scale(0.1);
  }

  70% {
	opacity: 0.5;
	transform: scale(1);
  }

  95% {
	opacity: 0;
  }
}

@keyframes braintech-loader-anim {
  0% {
	opacity: 1;
	transform: scale(0.1);
  }

  70% {
	opacity: 0.5;
	transform: scale(1);
  }

  95% {
	opacity: 0;
  }
}

@-webkit-keyframes anim {
  from {
	left: -100%;
  }

  to {
	left: 100%;
  }
}

@keyframes anim {
  from {
	left: -100%;
  }

  to {
	left: 100%;
  }
}

.zin-1 .rs-animation-shape-image .middle-image {
  z-index: -1 !important;
}

.rs-cenermore .testimonial-item {
  transition: 0.4s;

  &:not(.slick-center) {
	opacity: 0.7;
  }
}


.rs-logo-grid.style2tws .cols .logo-title {
  position: relative;

  &:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	height: 40px;
	width: 1px;
	transform: translateX(-50%);
	background-color: rgba(255, 255, 255, 0.1294117647);
	transition: all 0.25s ease;
  }

  &:after {
	content: "";
	position: absolute;
	top: 40px;
	left: 50.3%;
	height: 12px;
	border-radius: 50%;
	width: 12px;
	transform: translateX(-50%);
	background-color: rgba(255, 255, 255, 0.1294117647);
	transition: all 0.25s ease;
  }
}


.rs-gradient-yes .rs-counter-list .count-number span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, $titleColorUnit 10%, $primaryColor 100%);
}

.rs-counter-list .count-text span.rs-counter {
  position: relative;
  z-index: 2;

  &:after {
	content: "";
	height: 8px;
	position: absolute;
	bottom: 12px;
	right: 0;
	left: 0px;
	transition: all 0.3s ease;
	z-index: -1;
  }
}

.rsaddon-unique-slider .rs-addon-slider .slick-list .rs-grid-figure .logo-img {
  text-align: center;
}

.breadcrumbs-inner {
  span {
	margin-left: 4px;
	margin-right: 4px;
  }

  .page-title {
	position: relative;
	z-index: 2;
  }
}

.cd-title {
  position: relative;
  height: 160px;
  text-align: center;
}

.cd-intro {
  width: 90%;
  max-width: 768px;
  text-align: center;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: 10px;

  p {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;

	&.is-visible {
	  position: relative;
	}
  }
}

.no-js .cd-words-wrapper p {
  opacity: 0;

  &.is-visible {
	opacity: 1;
  }
}


.plumber-contact-form {
  textarea {
	margin-bottom: 8px !important;
  }

  .wpcf7-submit {
	top: 12px;
  }

  input[type=submit]:hover {
	opacity: 1;
  }
}

.blog-btn i, .rs-btn .rs_button i {
	transition: all 0.4s;
}

.blog-btn i:before, .rs-btn .rs_button i:before {
  font-size: 17px;
  margin: 0;
  position: relative;
  top: 3px;
}

.bs-sidebar {
  .widget_search button:hover, .bs-search button:hover {
	color: #515261;
  }
}

.rs__about .elementor-accordion-item, .rs__accor .elementor-accordion-item {
  box-shadow: 0px 0px 50px 0 rgba(0, 0, 1, 0.05);
  margin-bottom: 25px;
  border-radius: 30px;
  background: #fff;
}

.rs__about .elementor-accordion-item {
  .elementor-tab-title, .elementor-tab-content {
	background: none !important;
  }
}

.rs__accor .elementor-accordion-item {
  .elementor-tab-title, .elementor-tab-content {
	background: none !important;
  }
}

.rs__about .elementor-accordion-item {
  margin-bottom: 15px;
  border-radius: 0px;
}

.rs__accor .elementor-accordion-icon {
  margin-top: 10px;
}

/* --------------------------------

xrotate-1

-------------------------------- */

.cd-headline {
  &.rotate-1 {
	.cd-words-wrapper {
	  perspective: 300px;
	}

	p {
	  opacity: 0;
	  transform-origin: 50% 100%;
	  transform: rotateX(180deg);

	  &.is-visible {
		opacity: 1;
		transform: rotateX(0deg);
		-webkit-animation: cd-rotate-1-in 1.2s;
		animation: cd-rotate-1-in 1.2s;
	  }

	  &.is-hidden {
		transform: rotateX(180deg);
		-webkit-animation: cd-rotate-1-out 1.2s;
		animation: cd-rotate-1-out 1.2s;
	  }
	}
  }

  &.type .cd-words-wrapper {
	overflow: hidden;

	&::after {
	  /* vertical bar */
	  content: "";
	  position: absolute;
	  right: 0;
	  top: 50%;
	  bottom: auto;
	  transform: translateY(-50%);
	  height: 80%;
	  width: 1px;
	  background-color: #aebcb9;
	}
  }
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
	-webkit-transform: rotateX(180deg);
	opacity: 0;
  }

  35% {
	-webkit-transform: rotateX(120deg);
	opacity: 0;
  }

  65% {
	opacity: 0;
  }

  100% {
	-webkit-transform: rotateX(360deg);
	opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
	transform: rotateX(180deg);
	opacity: 0;
  }

  35% {
	transform: rotateX(120deg);
	opacity: 0;
  }

  65% {
	opacity: 0;
  }

  100% {
	transform: rotateX(360deg);
	opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
	-webkit-transform: rotateX(0deg);
	opacity: 1;
  }

  35% {
	-webkit-transform: rotateX(-40deg);
	opacity: 1;
  }

  65% {
	opacity: 0;
  }

  100% {
	-webkit-transform: rotateX(180deg);
	opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
	transform: rotateX(0deg);
	opacity: 1;
  }

  35% {
	transform: rotateX(-40deg);
	opacity: 1;
  }

  65% {
	opacity: 0;
  }

  100% {
	transform: rotateX(180deg);
	opacity: 0;
  }
}

/* --------------------------------

xtype

-------------------------------- */

.nicescroll-rails {
  z-index: 999 !important;
}

.cd-headline {
  &.type {
	.cd-words-wrapper {
	  &.waiting::after {
		-webkit-animation: cd-pulse 1s infinite;
		animation: cd-pulse 1s infinite;
	  }

	  &.selected {
		background-color: #aebcb9;

		&::after {
		  visibility: hidden;
		}

		p {
		  color: #0d0d0d;
		}
	  }
	}

	p {
	  visibility: hidden;

	  &.is-visible {
		visibility: visible;
	  }
	}

	i {
	  position: absolute;
	  visibility: hidden;

	  &.in {
		position: relative;
		visibility: visible;
	  }
	}
  }

  &.rotate-2 {
	.cd-words-wrapper {
	  perspective: 300px;
	}

	i, em {
	  display: inline-block;
	  -webkit-backface-visibility: hidden;
	  backface-visibility: hidden;
	}

	b {
	  opacity: 0;
	}

	i {
	  transform-style: preserve-3d;
	  transform: translateZ(-20px) rotateX(90deg);
	  opacity: 0;
	}
  }
}

@-webkit-keyframes cd-pulse {
  0% {
	-webkit-transform: translateY(-50%) scale(1);
	opacity: 1;
  }

  40% {
	-webkit-transform: translateY(-50%) scale(0.9);
	opacity: 0;
  }

  100% {
	-webkit-transform: translateY(-50%) scale(0);
	opacity: 0;
  }
}

@keyframes cd-pulse {
  0% {
	transform: translateY(-50%) scale(1);
	opacity: 1;
  }

  40% {
	transform: translateY(-50%) scale(0.9);
	opacity: 0;
  }

  100% {
	transform: translateY(-50%) scale(0);
	opacity: 0;
  }
}

/* --------------------------------

xrotate-2

-------------------------------- */

.is-visible .cd-headline.rotate-2 i {
  opacity: 1;
}

.cd-headline.rotate-2 {
  i {
	&.in {
	  -webkit-animation: cd-rotate-2-in 0.4s forwards;
	  animation: cd-rotate-2-in 0.4s forwards;
	}

	&.out {
	  -webkit-animation: cd-rotate-2-out 0.4s forwards;
	  animation: cd-rotate-2-out 0.4s forwards;
	}
  }

  em {
	transform: translateZ(20px);
  }
}

.no-csstransitions .cd-headline.rotate-2 i {
  transform: rotateX(0deg);
  opacity: 0;

  em {
	transform: scale(1);
  }
}

.has-blue-background-color {
  background-color: #20599e !important;
}

.no-csstransitions .cd-headline.rotate-2 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes cd-rotate-2-in {
  0% {
	opacity: 0;
	-webkit-transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
	opacity: 1;
	-webkit-transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
	opacity: 1;
	-webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}

@keyframes cd-rotate-2-in {
  0% {
	opacity: 0;
	transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
	opacity: 1;
	transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
	opacity: 1;
	transform: translateZ(-20px) rotateX(0deg);
  }
}

@-webkit-keyframes cd-rotate-2-out {
  0% {
	opacity: 1;
	-webkit-transform: translateZ(-20px) rotateX(0);
  }

  60% {
	opacity: 0;
	-webkit-transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
	opacity: 0;
	-webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}

@keyframes cd-rotate-2-out {
  0% {
	opacity: 1;
	transform: translateZ(-20px) rotateX(0);
  }

  60% {
	opacity: 0;
	transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
	opacity: 0;
	transform: translateZ(-20px) rotateX(-90deg);
  }
}

/* --------------------------------

xloading-bar

-------------------------------- */

.cd-headline {
  &.loading-bar {
	span {
	  display: inline-block;
	  padding: 0.2em 0;
	}

	.cd-words-wrapper {
	  &::after {
		/* loading bar */
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		height: 3px;
		width: 0;
		background: #0096a7;
		z-index: 2;
		transition: width 0.3s -0.1s;
	  }

	  &.is-loading::after {
		width: 100%;
		transition: width 3s;
	  }
	}

	p {
	  top: 0.2em;
	  opacity: 0;
	  transition: opacity 0.3s;

	  &.is-visible {
		opacity: 1;
		top: 0;
	  }
	}
  }

  &.slide {
	span {
	  display: inline-block;
	  padding: 0.2em 0;
	}

	.cd-words-wrapper {
	  overflow: hidden;
	  vertical-align: top;
	}

	p {
	  opacity: 0;
	  top: 0.2em;

	  &.is-visible {
		top: 0;
		opacity: 1;
		-webkit-animation: slide-in 0.6s;
		animation: slide-in 0.6s;
	  }

	  &.is-hidden {
		-webkit-animation: slide-out 0.6s;
		animation: slide-out 0.6s;
	  }
	}
  }

  &.clip {
	span {
	  display: inline-block;
	  padding: 0.2em 0;
	}

	.cd-words-wrapper {
	  overflow: hidden;
	  vertical-align: top;

	  &::after {
		/* line */
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 2px;
		height: 100%;
		background-color: #aebcb9;
	  }
	}

	p {
	  opacity: 0;
	  margin-bottom: 0;

	  &.is-visible {
		opacity: 1;
	  }
	}
  }

  &.zoom {
	.cd-words-wrapper {
	  perspective: 300px;
	}

	p {
	  opacity: 0;

	  &.is-visible {
		opacity: 1;
		-webkit-animation: zoom-in 0.8s;
		animation: zoom-in 0.8s;
	  }

	  &.is-hidden {
		-webkit-animation: zoom-out 0.8s;
		animation: zoom-out 0.8s;
	  }
	}
  }
}

.rs--goole__map{
	margin-top: 40px;
}

/* --------------------------------

xslide

-------------------------------- */


/* --------------------------------

service area sidebar css

-------------------------------- */

.service_single_wrap .widget_nav_menu .widget-title{
	margin-bottom: 37px !important;
}

.service_single_wrap .widget_nav_menu ul li:first-child{
	padding-top: 12px;
	margin-top: 12px;
}
.service_single_wrap .widget_nav_menu ul li{
	background: #fafafa;
    border: none;
    padding: 12px 20px;
    margin-top: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.service_single_wrap .widget_nav_menu ul li:hover{
	background: #337ccf;
}
.service_single_wrap .widget_nav_menu ul li a{
	position: relative;
	display: block;
}
.service_single_wrap .widget_nav_menu ul li:hover a{
	color: #fff;
}

.service_single_wrap .widget_nav_menu ul li a:after {
	position: absolute;
	content: "";
	opacity: 1 !important;
	visibility: visible;
	height: 2px;
	width: 7px;
	right: 6px;
	top: 50% !important;
	transform: translateY(-50%) !important;
	background: #606060;
	transition: unset !important;
  }
  .service_single_wrap .widget_nav_menu ul li a:before {
	position: absolute;
	content: "";
	font-family: unset !important;
	right: 0px;
	left: unset;
	opacity: 1 !important;
	visibility: visible;
	font-size: 18px;
	transition: unset !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	border-left: 6px solid #606060;
	border-bottom: 6px solid transparent;
	border-right: 0 solid transparent;
	border-top: 6px solid transparent;
  }
  .service_single_wrap .widget_nav_menu ul li:hover a:after{
	background: #fff;
  }
  .service_single_wrap .widget_nav_menu ul li:hover a::before{
	border-left-color: #fff;
  }

  .service-cta-box .service-cta-content > h3{
	color: #fff;
    font-size: 20px;
    line-height: 32px;
    font-weight: 700 !important;
    position: relative;
    z-index: 1;
    padding: 20px 20px;
	text-align: center;
	background: #337ccf;
	border-radius: 4px 4px 0 0;
	margin: 0 !important;

  }

  .rs-single-service-area .widget_custom_html{
	padding: 0;
	background: transparent;
  }
  .service-cta-box .service-cta-content .cta-content{
	background: #fff;
	padding: 30px;
	border-radius: 0 0 4px 4px;
  }

  .service-cta-box .service-cta-content .cta-content p{
	font-size: 16px;
  }

  .service-cta-content .cta-content .cta-contact-box{
	display: flex;
	align-items: center;
  }

	.service-cta-content .cta-content .cta-contact-box .icon{
		width: 40px;
		margin-right: 15px;
	}
	.service-cta-content .cta-content .cta-contact-box .content{
		display: flex;
		flex-direction: column;
	}
	.service-cta-content .cta-content .cta-contact-box .content span{
		font-size: 15px;
		font-weight: 500;
		color: #7A7A7A;
	}

	.service-cta-content .cta-content .cta-contact-box .content a{
		font-size: 20px;
		font-weight: 600;
		color: #071230;
	}

/* --------------------------------

service area sidebar css

-------------------------------- */

@-webkit-keyframes slide-in {
  0% {
	opacity: 0;
	-webkit-transform: translateY(-100%);
  }

  60% {
	opacity: 1;
	-webkit-transform: translateY(20%);
  }

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

@keyframes slide-in {
  0% {
	opacity: 0;
	transform: translateY(-100%);
  }

  60% {
	opacity: 1;
	transform: translateY(20%);
  }

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

@-webkit-keyframes slide-out {
  0% {
	opacity: 1;
	-webkit-transform: translateY(0);
  }

  60% {
	opacity: 0;
	-webkit-transform: translateY(120%);
  }

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

@keyframes slide-out {
  0% {
	opacity: 1;
	transform: translateY(0);
  }

  60% {
	opacity: 0;
	transform: translateY(120%);
  }

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

/* --------------------------------

xclip

-------------------------------- */

/* --------------------------------

xzoom

-------------------------------- */

@-webkit-keyframes zoom-in {
  0% {
	opacity: 0;
	-webkit-transform: translateZ(100px);
  }

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

@keyframes zoom-in {
  0% {
	opacity: 0;
	transform: translateZ(100px);
  }

  100% {
	opacity: 1;
	transform: translateZ(0);
  }
}

@-webkit-keyframes zoom-out {
  0% {
	opacity: 1;
	-webkit-transform: translateZ(0);
  }

  100% {
	opacity: 0;
	-webkit-transform: translateZ(-100px);
  }
}

@keyframes zoom-out {
  0% {
	opacity: 1;
	transform: translateZ(0);
  }

  100% {
	opacity: 0;
	transform: translateZ(-100px);
  }
}

/* --------------------------------

xrotate-3

-------------------------------- */

.cd-headline.rotate-3 {
  .cd-words-wrapper {
	perspective: 300px;
  }

  p {
	opacity: 0;
  }

  i {
	display: inline-block;
	transform: rotateY(180deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  }
}

.is-visible .cd-headline.rotate-3 i {
  transform: rotateY(0deg);
}

.cd-headline.rotate-3 i {
  &.in {
	-webkit-animation: cd-rotate-3-in 0.6s forwards;
	animation: cd-rotate-3-in 0.6s forwards;
  }

  &.out {
	-webkit-animation: cd-rotate-3-out 0.6s forwards;
	animation: cd-rotate-3-out 0.6s forwards;
  }
}

.no-csstransitions .cd-headline.rotate-3 {
  i {
	transform: rotateY(0deg);
	opacity: 0;
  }

  .is-visible i {
	opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-3-in {
  0% {
	-webkit-transform: rotateY(180deg);
  }

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

@keyframes cd-rotate-3-in {
  0% {
	transform: rotateY(180deg);
  }

  100% {
	transform: rotateY(0deg);
  }
}

@-webkit-keyframes cd-rotate-3-out {
  0% {
	-webkit-transform: rotateY(0);
  }

  100% {
	-webkit-transform: rotateY(-180deg);
  }
}

@keyframes cd-rotate-3-out {
  0% {
	transform: rotateY(0);
  }

  100% {
	transform: rotateY(-180deg);
  }
}

/* --------------------------------

xscale

-------------------------------- */

.cd-headline.scale {
  p {
	opacity: 0;
  }

  i {
	display: inline-block;
	opacity: 0;
	transform: scale(0);
  }
}
.bs-desc .wp-block-button__link{
	color: #fff !important;
}
.is-visible .cd-headline.scale i {
  opacity: 1;
}

.cd-headline.scale i {
  &.in {
	-webkit-animation: scale-up 0.6s forwards;
	animation: scale-up 0.6s forwards;
  }

  &.out {
	-webkit-animation: scale-down 0.6s forwards;
	animation: scale-down 0.6s forwards;
  }
}

.no-csstransitions .cd-headline.scale {
  i {
	transform: scale(1);
	opacity: 0;
  }

  .is-visible i {
	opacity: 1;
  }
}

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

  60% {
	-webkit-transform: scale(1.2);
	opacity: 1;
  }

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

@keyframes scale-up {
  0% {
	transform: scale(0);
	opacity: 0;
  }

  60% {
	transform: scale(1.2);
	opacity: 1;
  }

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

@-webkit-keyframes scale-down {
  0% {
	-webkit-transform: scale(1);
	opacity: 1;
  }

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

@keyframes scale-down {
  0% {
	transform: scale(1);
	opacity: 1;
  }

  60% {
	transform: scale(0);
	opacity: 0;
  }
}

/* --------------------------------

xpush

-------------------------------- */

.cd-headline.push p {
  opacity: 0;

  &.is-visible {
	opacity: 1;
	-webkit-animation: push-in 0.6s;
	animation: push-in 0.6s;
  }

  &.is-hidden {
	-webkit-animation: push-out 0.6s;
	animation: push-out 0.6s;
  }
}

@-webkit-keyframes push-in {
  0% {
	opacity: 0;
	-webkit-transform: translateX(-100%);
  }

  60% {
	opacity: 1;
	-webkit-transform: translateX(10%);
  }

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

@keyframes push-in {
  0% {
	opacity: 0;
	transform: translateX(-100%);
  }

  60% {
	opacity: 1;
	transform: translateX(10%);
  }

  100% {
	opacity: 1;
	transform: translateX(0);
  }
}

@-webkit-keyframes push-out {
  0% {
	opacity: 1;
	-webkit-transform: translateX(0);
  }

  60% {
	opacity: 0;
	-webkit-transform: translateX(110%);
  }

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

@keyframes push-out {
  0% {
	opacity: 1;
	transform: translateX(0);
  }

  60% {
	opacity: 0;
	transform: translateX(110%);
  }

  100% {
	opacity: 0;
	transform: translateX(100%);
  }
}
.clip-path--faq{
	clip-path: polygon(0 0, 50% 30%, 100% 0, 100% 100%, 0 100%);
}



//   Search Form Position

@media (min-width: 768px) and (max-width: 991px){
	.industrie--search--form .rs_stickys_form.search-form {
		top: 210% !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.industrie--search--form-plumbing .rs_stickys_form.search-form{
		top: 188% !important;
	}
}

// header car reapair
@media (min-width: 1367px) and (max-width: 1724px){

	#car-phone-contact{
		.rs-contact-box{
			margin-bottom: 35px;
		}
	} 
}


/*=====Portfolio Single Sidebar====*/

.rs-portfolio-single-sidebar {
	padding-left: 50px;
	.widget_nav_menu {
		padding: 30px 40px;
		border-radius: 2px;
		background: #F9F9F9;
		.widget-title {
			color: #000;
			font-size: 28px;
			font-style: normal;
			line-height: 32px; /* 150% */
		}
		ul {
			margin: 0px;
			list-style: none;
			li {
				min-width: 100%;
				margin-bottom: 12px;
				position: relative;
				a {
					display: block;
					color: #606060;
					padding: 14px 20px 14px 25px;
					font-size: 16px;
					font-weight: 600;
					line-height: 29px;
					background-color: #FFFFFF;
					-webkit-transition: all 0.4s ease 0s;
					transition: all 0.4s ease 0s;
					&::before{
						display: block;
						position: absolute;
						-webkit-transition: all 0.4s ease 0s;
						transition: all 0.4s ease 0s;
						content: "\ea6c";
						font-family: remixicon !important;
						right: 25px;
						left: auto;
						opacity: 1 !important;
						visibility: visible;
						font-size: 18px;
					}
					&:hover{
						color: #C3002F;
						&::before{
							transform: translateX(3px) !important;
						}
					}
				  }
			}
		  }
	}
}
.rs-portfolio-widget-inner {
  padding: 265px 30px 30px 30px;
  position: relative;
  .watermark {
	content: "";
	  position: absolute;
	  right: 30px;
	  top: 30px;
	  padding: 11px 10px 11px 10px;
	  transform: rotate(180deg);
	  background-color: #FFFFFF;
  
	  font-size: 15px;
	  font-weight: 600;
	  line-height: 15px;
	  color: #606060;
	  margin: 0px 0px 0px 0px!important;
	  writing-mode: vertical-rl;
  }
}
.rs-portfolio-call-to-action {
	position: relative;
	background-size: cover!important;
	background-repeat: no-repeat!important;
	margin-top: 20px;
	margin-bottom: 0px;
	border-radius: 2px;
	&::before{
		content: "";
		position: absolute;
		height: 100%;
		width: 100%;
		bottom: 0;
		border-radius: 2px;
		background: linear-gradient(180deg, rgba(10, 14, 46, 0.00) 42.65%, rgba(9, 19, 45, 0.85) 84.23%);
	}
	.title-inner .title {
		font-size: 24px;
		line-height: 30px;
		color: #FFFFFF;
		margin: 0px 0px 25px 0px!important;
	}
	.address-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		min-width: 60px;
		max-width: 60px;
		height: 60px;
		line-height: 58px !important;
		margin: 0px 0px 0px 0px;
		border: 2px solid #ebeef07a;
		border-radius: 50%;
	}
	.description{
		p {
			color: #FFFFFF;
		}
	}
	.call-action-info {
		display: flex;
		align-items: center;
		gap: 15px;
		font-weight: 600;
		&:hover{
			.address-icon{
				background-color: #091D2D;
				i{
					animation: vibrate 0.4s infinite;
				}
			}
		}
		.phone{
			a{
				font-size: 24px;
				color: #fff;
				font-weight: 600;
				position: relative;
				&::after { 
					position: absolute;
					content: "";
					background: #fff;
					width: 0;
					height: 2px;
					bottom: -2px;
					left: auto;
					right: 0;
					transition: width 0.3s;
				}
				&:hover{
					&::after{
						width: 100%;
						left: 0;
						right: auto;
					}
				}
			}
			p {
				margin: 0;
				color: #fffffff2;
			}

		}

		.address-icon i{
			font-size: 24px;
			color: #fff;
			font-weight: 400;
		}
	}
}

.who-we-are-sec .rstab-main .tab-menu-wrapper .nav-tabs .nav-link:first-child{
	padding-left: 0;
}

.who-we-are-sec .rstab-main .tab-menu-wrapper .nav-tabs .nav-link:last-child{
	padding-right: 0;
	border-right: 0;
}

.what-we-do-sec div.rs-accordion-area.style1 .accordion-header .accordion-button .elementor-accordion-icon{
	border: 1px solid #ebebeb;
}

.what-we-do-sec div.rs-accordion-area.style1 .accordion-item .accordion-header .accordion-button .elementor-accordion-icon svg,
.what-we-do-sec div.rs-accordion-area.style1 .accordion-item .accordion-header .accordion-button .elementor-accordion-icon svg path,
.what-we-do-sec div.rs-accordion-area.style1 .accordion-item .accordion-header .accordion-button .elementor-accordion-icon{
	transition: all linear 0.3s;
}

.what-we-do-sec div.rs-accordion-area.style1 .accordion-item:hover .accordion-header .accordion-button .elementor-accordion-icon svg path{
	fill: #fff;
}
.what-we-do-sec div.rs-accordion-area.style1 .accordion-item:hover .accordion-header .accordion-button .elementor-accordion-icon{
	background: #5d5ad6;
}

.skill-sec .rs-skill-bar .skillbar .skill-bar-percent{
	height: 28px;
	width: 48px;
	text-align: center;
	line-height: 24px;
	position: absolute;
}
.skill-sec .rs-skill-bar .skillbar .skill-bar-percent::before{
content: "";
    position: absolute;
    display: block;
    top: -3px;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 2px;
    box-sizing: border-box;
    clip-path: polygon(0% 105%, 0% 0%, 105% 0%, 105% 105%, 23px 105%, 43px 80%, 21px 80%, 21px 105%);
}
.skill-sec .rs-skill-bar .skillbar .skill-bar-percent::after{
	content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 15px;
    background: #fff;
    top: calc(100% - 3px);
    left: 20px;
    box-sizing: border-box;
    clip-path: polygon(0 0, 0% 100%, 100% 0%, calc(100% - 2px) 0, 1px calc(100% - 2px), 1px 0);
}

.search-no-results .bs-search input{
	border: 1px solid rgba(62, 62, 62, 0.1);
}


.partner-box .rsaddon-unique-slider.rsaddons-logo-showcase .rs-grid-figure .logo-img img{
	opacity: 0.7;
}



/*=====form Css====*/

.form-btn-area{
	em {
		display: inline-block;
		overflow: hidden;
		position: absolute;
		right: 32px;
		width: 18px;
		height: 18px;
		transform: translate(0px, -39px);
		line-height: 20px;
		flex-shrink: 0;
		> * {
			height: inherit;
			width: inherit;
			line-height: inherit;
			font-size: 18px;
			position: absolute;
			top: 0;
			left: 0;
			transition: $transition;
			&:nth-child(2) {
				transform: translateX(-150%);
			}
		}
		svg {
			path {
				fill: $titleColor;
				transition: $transition;
			}
		}
		i {
			color: $titleColor;
		}
	}
	&:hover{
		em {
			> *  {
				transform: translateX(150%);
				&:nth-child(2) {
					transform: translateX(0);
				}
			}
			svg {
				path {
					fill: $primaryColor;
				}
			}
			i {
				color: $primaryColor;
			}
		}
	}
}

body .services-2-page .gallery-item,
body .project-2-page .gallery-item,
body.portfolios-template .gallery-item,
body.services-template .gallery-item{
	margin-bottom: 1em !important;
}


/*===== Advanced Css ====*/

.rs-faq-home{
	div{
		&.rs-accordion-area{
			.accordion-item{
				&:last-child{
					border-bottom: 0 !important;
				}
			}
		}
	}
}

.contact-clip-path{
	clip-path: polygon(50% 0%, 92% 0, 99% 100%, 50% 100%, 8% 100%, 0 0) !important;
}
.rs-slider-video-ani{
	.rs-video{
		padding: 28px 20px;
	}
	.rs-video .popup-videos i{
		font-size: 30px !important;
	}
	.rs-video .popup-videos{
		width: 120px;
    	height: 120px;
	}
	.rs-video .popup-videos i {
		width: 120px;
		height: 120px;
		line-height: 120px !important;
		text-align: center !important;
		background: $primaryColor;
		border-radius: 50%;
	}
	.rs-video .popup-videos:before{
		background: #ffffff80;
		width: 115px;
		height: 115px;
	}
}

@media only screen and (max-width: 767px){
	.rs-slider-video-ani .rs-video .popup-videos{
		width: 90px;
		height: 90px;
	}
	.rs-slider-video-ani .rs-video .popup-videos i {
		width: 90px;
		height: 90px;
		line-height: 90px !important;
		text-align: center !important;
		background: $primaryColor;
		border-radius: 50%;
	}
	.rs-slider-video-ani .rs-video .popup-videos::before {
		width: 85px;
		height: 85px;
	}
}

.wpcf7 label {
	display: unset;
 }
 .price_range_slider{
	position: relative;
	.uacf7-slider-label{
		display: none;
	}
	.price_range_slider-value{
		position: absolute;
		right: 0;
		top: -28px;
		display: inline-block;
		color: $titleColor;
		&::before{
			content: '$';
		}
	}
	.uacf7-slidecontainer{
		 width: 100%;
		 position: relative;
		 input[type="range"]{
			overflow: hidden;
		 }
		 input[type="range"]::-webkit-slider-thumb {
			 -webkit-appearance: none;
			 appearance: none; 
			 height: 16px;
			 width: 16px;
			 background: $whiteColor;
			 border-radius: 0%;	
			 border: 2px solid $primaryColor;		
			 box-shadow: -450px 0 0 450px $primaryColor, inset 0 0 0 40px $whiteColor;

		}
	}
	input[type='range']{
		margin: 10px 0 22px !important;
	}
}
.slider-form-custom{
	#tracking-form{
		display: flex;
		align-items: center;
		background-color: #443F49;
		border-radius: 0px;
		padding: 10px;
		width: 100%;
		margin: 0 auto;
		input[type="email"],
		input[type="text"]{
			font-size: 14px;
			font-family: sarabun;
			width: 100%;
            padding: 10px;
            margin-bottom: 0;
			margin-right: 15px;
			background-color: transparent;
			border-color: #fffffff7;
			border-width: 0px 0px 2px;
		}
		/* Placeholder Text */
		::placeholder {
			color: #888; /* Gray placeholder text */
		}
        /* Button Styling */
        #track-trace-btn {
            background-color: #007bff;
            color: #ffffff;
            border: none;
			width: 100%;
            padding: 20px 40px 20px !important;
            cursor: pointer;
        }
        #track-trace-btn:hover {
            background-color: #0056b3;
        }
        #track-trace-btn:active {
            background-color: #004085;
        }
	}
}

.footer-width-fixer{
	.hfe-nav-menu__layout-vertical .rs__menu_sp_dyc {
		left: 0;
		right: auto;
	}
	.hfe-layout-vertical ul .menu-item a{
		transition: all .5s ease;
		padding-left: 25px !important;
		i{
			opacity: 1;
			transition: all .5s ease;
			transform: translateX(0px);
			
		}
		&:hover {
			padding-left: 35px !important;
			i{
				opacity: 1;
				transform: translateX(10px);
			}
		}
	}
}

 /* Wrapper for Select */
.select-full {
	position: relative;
  }
  
  /* Select Element */
  .select-full select {
	appearance: none; /* Removes default browser styles */
	-webkit-appearance: none; /* Safari compatibility */
	-moz-appearance: none; /* Firefox compatibility */
	cursor: pointer;
  }
  
  /* Custom Arrow */
  .select-full::after {
	content: '';
	position: absolute;
	right: 15px; /* Adjust position for padding */
	top: 50%;
	transform: translateY(-50%);
	z-index: 11;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #f55b1f;
  }

.banner-rev-area #rev_slider_1_1_wrapper rs-bullets.logistics-dot{
	width: 200px !important;
	justify-content: flex-start;
}
.banner-rev-area #rev_slider_1_1_wrapper rs-bullets.logistics-dot rs-bullet{
	background: #fff;
	border: 0;
		opacity: 0.5;
	display: inline-block;
	position: static;
	margin: 0 10px 0 0;
	width: 48px !important;
}
.banner-rev-area #rev_slider_1_1_wrapper rs-bullets.logistics-dot rs-bullet.selected{
	background: #F55B1F;
		opacity:1;
	width: 33px !important;
}


/****************************************************
	# Woocommerce Style Start
****************************************************/
@import './woocommerce';