/*-------------------------------------    
CSS INDEX
===================================
#. EL: Default
#. EL: Button
#. EL: Section Title
#. EL: Title Text With button
#. EL: Owl Nav 1
#. EL: Owl Nav 2
#. EL: Owl Nav 3
#. EL: Owl Nav 4
#. EL: Revolution Slider
#. EL: Slider
#. EL: Info Box
#. EL: Working Process
#. EL: RT Story
#. EL: About Image Text
#. EL: Skill
#. EL: Rating
#. EL: Service Layout
#. EL: Single Service
#. EL: Team Layout
#. EL: Team Single
#. EL: Portfolio Layout
#. EL: Portfolio Single
#. EL: Testimonial 1
#. EL: Testimonial 2
#. EL: Testimonial 3
#. EL: Testimonial 4
#. EL: Testimonial 5
#. EL: Testimonial 7
#. EL: Testimonial 8
#. EL: Testimonial 9
#. EL: Post Grid 1
#. EL: Post Grid 2
#. EL: Post Grid 3
#. EL: Post grid 5 , Slider 2
#. EL: Post Grid 7
#. EL: Pricing Table
#. EL: Logo Slider
#. EL: App Slider
#. EL: Related product slider
#. EL: Contact Address
#. EL: Contact Info
#. EL: Coll To Action
#. EL: Accordion
#. EL: Tab
#. EL: Video
#. EL: Progress Circular
#. EL: Progress Bar
#. EL: Counter
#. EL: Theia Sticky Sidebar
#. EL: Instagram
#. EL: Animate Image
#. EL: Animate Shape
#. EL: Three Image
#. EL: Divider
#. EL: Elementor css
#. EL: Pagepiling css
#. EL: Content Toggle
#. EL: Custom css
---------------------------------------*/
/*-----------------------
#. EL: Default
------------------------*/
@media(max-width: 991px) {
	.custom-align-center {
		text-align: center;
	}
	.custom-align-left {
		text-align: left;
	}
	.custom-align-right {
		text-align: right;
	}
}
.top:after,
.bottom:after,
.left:after,
.right:after {
	display: none;
}
.compress-left-side {
	padding-left: calc(calc(100% - 1200px)/2);
}
@media only screen and (max-width: 1199px) {
	.compress-left-side {
		padding-right: inherit;
		padding-left: inherit;
	}
}
.compress-right-side {
	padding-right: calc(calc(100% - 1200px)/2);
}
@media only screen and (max-width: 1199px) {
	.compress-right-side {
		padding-left: inherit;
		padding-right: inherit;
	}
}
/*-----------------------
#. EL: Button
------------------------*/
.button-1 {
    font-weight: 500;
    font-size: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.button-1 i {
    margin-top: 3px;
    margin-left: 10px;
    line-height: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.button-1 i:before {
    font-size: 18px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.button-1:hover {
    color: #7a64f2;
}
.button-1:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
/*btn fill*/
.btn-fill {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    padding: 10px 27px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #5a49f8;
    border: 0.125rem solid;
    border-color: #5a49f8;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-fill:hover {
    color: #5a49f8;
    background-color: transparent;
}
.btn-fill i {
    margin-top: 0.125rem;
    line-height: 1;
    margin-left: 12px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-fill:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
/*btn-fill-gradient*/
.btn-fill.btn-fill-gradient {
    border: 0;
    padding: 12px 35px;
}
@media( max-width: 480px ) {
	.btn-fill.btn-fill-gradient {
		margin-bottom: 5px;
		padding: 10px 20px;
	}
}
.btn-fill.btn-fill-gradient:hover {
    color: #ffffff;
}
.btn-fill.btn-fill-gradient:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    right: inherit;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 4px;
    background: #5a49f8;
    background: -o-linear-gradient(30deg, #5a49f8 0%, #04d5f4 100%);
    background: linear-gradient(60deg, #5a49f8 0%, #04d5f4 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-fill.btn-fill-gradient:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    right: inherit;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 4px;
    background: #5a49f8;
    background-image: -o-linear-gradient(30deg, #04d5f4 0%, #5a49f8 100%);
    background-image: linear-gradient(60deg, #04d5f4 0%, #5a49f8 100%);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-fill.btn-fill-gradient:hover:before {
    opacity: 1;
    visibility: visible;
}
.btn-fill.btn-fill-gradient:hover:after {
    opacity: 0;
    visibility: hidden;
}
/*btn fill light*/
.btn-fill-light {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    padding: 10px 27px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    border: 0.125rem solid;
    border-color: #ffffff;
    color: #1d2124;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-fill-light:hover {
    color: #ffffff;
    background-color: transparent;
}
.btn-fill-light i {
    margin-top: 0.125rem;
    line-height: 1;
    margin-left: 12px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-fill-light:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
/*btn ghost and dark*/
.btn-ghost {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    padding: 10px 27px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    border-width: 0.125rem;
	border-style: solid;
    border-color: #5a49f8;
    color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-ghost:hover {
    color: #ffffff;
    background-color: #5a49f8;
}
.btn-ghost i {
    margin-top: 0.125rem;
    line-height: 1;
    margin-left: 12px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-ghost:hover i {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
.btn-ghost.btn-dark {
    border-color: #1d2124 !important;
    color: #1d2124;
    background-color: transparent;
}
.btn-ghost.btn-dark:hover {
    background-color: #7a64f2;
    border-color: #7a64f2 !important;
	color: #ffffff;
}
.btn-dark:not(:disabled):not(.disabled).active:focus, 
.btn-dark:not(:disabled):not(.disabled):active:focus, 
.show>.btn-dark.dropdown-toggle:focus
.btn-dark.focus, 
.btn-dark:focus {
    box-shadow: none;
}
/*btn light*/
.btn-light {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    padding: 10px 27px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
	border-width: 0.0625rem;
	border-style: solid;
    border-color: #e6e6e6;
    color: #1d2124;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-light:hover {
    background-color: #5a49f8;
	border-color: #5a49f8 !important;
	color: #ffffff;
}
.btn-light i,
.btn-light img {
    margin-right: 0.625rem;
}
.btn-light img {
	width: 20px;
}
.btn-light i:before {
    font-size: 1.125rem;
}
/*btn ghost gradient*/
.btn-ghost.btn-ghost-gradient {
    color: #000000;
    border: 0;
    padding: 10px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: -o-linear-gradient(#fff, #fff), -o-linear-gradient(205deg, #04d5f4, #5a49f8);
    background-image: linear-gradient(#fff, #fff), linear-gradient(245deg, #04d5f4, #5a49f8);
    position: relative;
    z-index: 1;
}
@media( max-width: 480px ) {
	.btn-ghost.btn-ghost-gradient {
		margin-bottom: 5px;
		padding: 10px 20px;
	}
}
.btn-ghost.btn-ghost-gradient:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    background-image: -o-linear-gradient(205deg, #04d5f4, #5a49f8);
    background-image: linear-gradient(245deg, #04d5f4, #5a49f8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-ghost.btn-ghost-gradient:hover {
	color: #ffffff;
}
.btn-ghost.btn-ghost-gradient:hover:before {
    opacity: 1;
    visibility: visible;
}
/*-------------------------------------
#. EL: Section Title
--------------------------------------*/
.section-default-style .rtin-title {
	font-size: 2.25rem;
    line-height: 3.125rem;
    margin-bottom: 0.9375rem;
	font-weight: 700;
}
.section-default-style .sub-title {
	color: #5a49f8;
}
.section-default-style .sub-text {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 1199px) {
	.section-default-style .sub-text {
		width: 60%;
	}
}
@media only screen and (max-width: 991px) {
	.section-default-style .sub-text {
		width: 90%;
	}
}
@media only screen and (max-width: 767px) {
	.section-default-style .sub-text {
		width: 100%;
	}
}
/*title style 1*/
.section-title-style1 {
    position: relative;
    z-index: 1;
    text-align: center;
}
.section-title-style1 .heading-icon {
    line-height: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.section-title-style1 .heading-icon i {
	color: #5a49f8;
}
.section-title-style1 .heading-icon i:before {
    font-size: 1.875rem;
}
.section-title-style1 .heading-icon .dash-left {
  margin-right: 1.5625rem;
}
.section-title-style1 .heading-icon .dash-right {
	margin-left: 0.9375rem;
}
.section-title-style1 .has-animation .heading-icon .dash-left .dashed1 {
	stroke-dashoffset: 100;
}
.section-title-style1 .has-animation .heading-icon .dash-right .dashed1 {
	stroke-dashoffset: -100;
}
.section-title-style1 .has-animation .heading-icon .dashed1 {
	stroke-dasharray: 100;
	stroke: #aca4fb;
}
.section-title-style1 .has-animation .heading-icon .dashed2 {
	stroke-dasharray: 4;
}
.section-title-style1 .no-animation .heading-icon .dashed1 {
    stroke-dasharray: 100;
    stroke: #aca4fb;
}
@keyframes dash_animation {
  to {
    stroke-dashoffset: 0;
  }
}
.section-title-style1 .has-animation.active-animation .heading-icon .dashed1 {
    -webkit-animation: dash_animation 1.5s linear forwards;
    animation: dash_animation 1.5s linear forwards;
}
/*title style 2*/
.section-title-style2 .section-title-holder {
    position: relative;
    z-index: 1;
    text-align: center;
}
.section-title-style2 .sub-title {
	font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.25rem;
}
/*title style 3*/
.section-title-style3 .section-title-holder {
    position: relative;
    z-index: 1;
    text-align: center;
}
.section-default-style.section-title-style3 .rtin-title {
	margin-bottom: 0;
}
.section-title-style3 .sub-title {
    font-weight: 500;
    letter-spacing: 0.25rem;
	margin-top: 0.625rem;
}
.section-default-style.section-title-style3 .sub-text {
	margin-top: 0.9375rem;
}
/*title style 4*/
.section-title-style4 .section-title-holder {
	text-align: center;
}
.section-title-style4 .sub-title {
    background-color: rgba(163, 74, 248, 0.21);
	display: inline-block;
    padding: 6px 20px 5px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0;
	font-weight: 500;
}
/*section style 1*/
.section-style-1 {
	position: relative;
    z-index: 1;
}
.section-style-1:before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 50%;
    background-color: #5a49f8;
    left: 0;
    top: 0;
}
.section-style-1:after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 20%;
    background-image: -webkit-gradient(linear, left top, right top, from(#5a49f8), to(transparent));
    background-image: -o-linear-gradient(left, #5a49f8 0%, transparent 100%);
    background-image: linear-gradient(90deg, #5a49f8 0%, transparent 100%);
    left: 50%;
    top: 0;
}
@media only screen and (max-width: 991px) {
	.section-style-1:before {
		width: 100%;
		background-color: rgba(107, 86, 245, 0.9);
	}
	.section-style-1:after {
		display: none;
	}
}
/*-------------------------------------
#. EL: Title Text With button
--------------------------------------*/
.title-text-button .rtin-title {
    font-size: 2.25rem;
	font-weight: 700;
    color: #1d2124;
    line-height: 3.125rem;
    position: relative;
    margin-bottom: 15px;
}
.title-text-button .rtin-title span {
	font-weight: 300;
}
.title-text-button .subtitle {
    color: #5a49f8;
    margin-bottom: 0.3125rem;
    font-size: 0.9375rem;
    letter-spacing: 0.25rem;
    font-weight: 500;
}
.title-text-button .rtin-content {
    font-size: 16px;
}
.title-text-button .rtin-content h4 {
	font-size: 1.125rem;
	font-weight: 500;
    color: #444444;
    font-style: italic;
    margin-bottom: 0.625rem;
}
.title-text-button .rtin-content .sub-content {
	font-size: 1.125rem;
	font-weight: 500;
    color: #444444;
    font-style: italic;
    margin-bottom: 0.625rem;
}
.title-text-button .rtin-button {
    margin-top: 30px;
}
.title-text-button .digeco-button i {
    padding-left: 8px;
    font-weight: 900;
}
.title-text-button ul {
	margin: 0;
	padding: 0;
	list-style: none;
	clear: both;
	overflow: hidden;
}
.title-text-button ul li {
    text-align: left;
    padding-left: 1.875rem;
    margin-bottom: 0.625rem;
    position: relative;
}
.title-text-button ul li:before {
    position: absolute;
    z-index: 1;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    top: 0;
    color: #5a49f8;
}
.title-text-button ul.dubble-list li {
	width: 50%;
	float: left;
}
.title-text-button ul.dubble-list li:before {
    position: absolute;
    z-index: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #5a49f8;
    top: 0.3125rem;
    font-size: 0.625rem;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
}
.title-text-button .rtin-button a {
    margin-right: 1.25rem;
}
.title-text-button .rtin-button a:last-child {
    margin-right: 0;
}
@media(max-width: 991px) {
	.custom-align-center .title-text-button {
		text-align: center;
	}
}
@media(max-width: 767px) {
	.title-text-button ul.dubble-list li {
		float: inherit;
		width: 100%;
		padding-right: 0;
	}
}
.title-text-button .rtin-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.title-text-style4 .subtitle {
    background-color: rgba(163, 74, 248, 0.21);
	display: inline-block;
    padding: 6px 20px 5px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0;
}
/*style 5*/
.title-text-style5 {
    background-color: #5a49f8;
    padding: 70px 130px 80px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}
.title-text-style5 .offer-heading {
    border-radius: 50%;
    height: 130px;
    width: 130px;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    z-index: 1;
    color: #5a49f8;
    font-weight: 700;
    font-size: 24px;
    left: -65px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.title-text-style5.title-text-button .subtitle {
    margin-bottom: 20px;
    font-size: 18px;
}
.title-text-style5.title-text-button .subtitle span {
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
}
.title-text-button ul.list-arrow li:before {
    content: "\f054";
    color: #646464;
}
@media(max-width: 1199px) {
	.title-text-style5 {
		padding: 60px 80px 70px 120px;
	}
}
@media(max-width: 991px) {
	.title-text-style5 .offer-heading {
		top: -65px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.title-text-style5 {
		padding: 100px 80px 80px 80px;
	}
}
@media only screen and (max-width: 575px) {
	.title-text-style5 {
		padding: 100px 30px 30px;
	}
}
/*-------------------------------------
#. EL: Owl Nav 1
---------------------------------------*/
.owl-theme .owl-controls .owl-prev {
    left: -45px;
    opacity: 1 !important;
    font-size: 18px !important;
    margin: 0 4px !important;
    height: 40px;
    width: 40px;
    border-radius: 0 !important;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 40%;
    border: 2px solid #444444;
    line-height: 1.4;
}
.owl-theme .owl-controls .owl-prev i {
    line-height: 30px;
    color: #ffffff;
    transition: all 0.3s ease-out;
}
.owl-theme .owl-controls .owl-prev:hover i {
    color: #ffffff;
    transition: all 0.3s ease-out;
}
.owl-theme .owl-controls .owl-next {
    right: -45px;
    opacity: 1 !important;
    font-size: 18px !important;
    margin: 0 4px !important;
    height: 40px;
    width: 40px;
    border-radius: 0 !important;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 40%;
    border: 2px solid #444444;
    line-height: 1.4;
}
.owl-theme .owl-controls .owl-next i {
    line-height: 30px;
    color: #ffffff;
    transition: all 0.3s ease-out;
}
.owl-theme .owl-controls .owl-next:hover {
    transition: all 0.3s ease-out;
}
.owl-theme .owl-controls .owl-next:hover i {
    color: #ffffff;
    transition: all 0.3s ease-out;
}
/*owl nav*/
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav {
    margin-top: 0;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 2.8125rem;
    border: 0.0625rem solid #d9d9d9;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-1.slider-nav-enabled:hover .owl-carousel .owl-nav > div {
    opacity: 1;
    visibility: visible;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav > div:hover {
    background-color: #5a49f8;
    border: 0.0625rem solid #5a49f8;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav i {
    margin-top: 0.1875rem;
    color: #999797;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav > div:hover i {
	color: #ffffff;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav i:before {
    font-size: 1.5rem;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav .owl-prev {
    left: 0.9375rem;
}
.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav .owl-next {
    right: 0.9375rem;
}
.rt-owl-nav-1.slider-nav-enabled:hover .owl-carousel .owl-nav .owl-prev {
    left: -1.5rem;
}
.rt-owl-nav-1.slider-nav-enabled:hover .owl-carousel .owl-nav .owl-next {
    right: -1.5rem;
}
@media(max-width: 991px) {
	.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav > div {
		height: 3rem;
		width: 3rem;
	}
	.rt-owl-nav-1.slider-nav-enabled:hover .owl-carousel .owl-nav .owl-prev {
		left: 0;
	}
	.rt-owl-nav-1.slider-nav-enabled:hover .owl-carousel .owl-nav .owl-next {
		right: 0;
	}
}
/*owl dot*/
.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dots .owl-dot {
    position: relative;
}
.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dot span {
    width: 18px;
    height: 8px;
    background: #cfd6e4;
    display: block;
	margin: 0px 5px;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dot:hover span {
    background: #5a49f8;
}
.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dot.active span {
    background: #5a49f8;
	width: 22px;
}
.rt-owl-nav-1 .owl-theme .owl-dots {
    margin-top: 30px !important;
}
.rt-owl-nav-1 .owl-nav {
	opacity: 1;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-1:hover .owl-nav {
	opacity: 1;
}
/*-------------------------------------
#. EL: Owl Nav 2
---------------------------------------*/
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    height: 3.275rem;
    width: 3.275rem;
    border-radius: 2.8125rem;
    border: 0.0625rem solid #d9d9d9;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-2.slider-nav-enabled:hover .owl-carousel .owl-nav > div {
    opacity: 1;
    visibility: visible;
}
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav > div:hover {
    background-color: #7a64f2;
    border: 0.0625rem solid #7a64f2;
}
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav i {
    line-height: 1;
    color: #999797;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav > div:hover i {
	color: #ffffff;
}
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav i:before {
    font-size: 1.5rem;
}
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav .owl-prev {
    left: -5rem;
}
.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav .owl-next {
    right: -5rem;
}
.rt-owl-nav-2.slider-nav-enabled:hover .owl-carousel .owl-nav .owl-prev {
    left: 0rem;
}
.rt-owl-nav-2.slider-nav-enabled:hover .owl-carousel .owl-nav .owl-next {
    right: 0rem;
}
/*owl dot*/
.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dots {
    display: block !important;
}
.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dot span {
    width: 18px;
    height: 8px;
    background: #cfd6e4;
	margin: 4px;
    transition: all 0.3s ease 0s;
}
.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dot:hover span {
    background: #5a49f8;
}
.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dot.active span {
    background: #5a49f8;
	width: 22px;
}
.rt-owl-nav-2 .owl-theme .owl-dots {
    margin-top: 30px !important;
}
@media (max-width: 1199px) {
	.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav > div {
		height: 3rem;
		width: 3rem;
	}
}
/*-------------------------------------
#. EL: Owl Nav 3
---------------------------------------*/
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav > div {
	margin: 0 0.3125rem;
    padding: 0;
    height: 3.125rem;
    width: 3.125rem;
    border-radius: 2.8125rem;
    border: 0.0625rem solid #eaeef2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #eaeef2;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-prev {
    left: -60px;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-next {
    right: -60px;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav > div:hover {
    background-color: #5a49f8;
	border: 0.0625rem solid transparent;
    color: #ffffff;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav i {
    font-size: 1.5rem;
    line-height: 1;
    color: #959595;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav > div:hover i {
	color: #ffffff;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav i:before {
    font-size: 1.5rem;
}
.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav {
    margin-top: 1.875rem;
}
.rt-owl-nav-3.slider-dot-enabled .owl-carousel .owl-dots {
    display: block !important;
}
.rt-owl-nav-3.slider-dot-enabled .owl-carousel .owl-dot span {
    width: 18px;
    height: 8px;
    background: #cfd6e4;
	margin: 4px;
    transition: all 0.3s ease 0s;
}
.rt-owl-nav-3.slider-dot-enabled .owl-carousel .owl-dot:hover span {
    background: #5a49f8;
}
.rt-owl-nav-3.slider-dot-enabled .owl-carousel .owl-dot.active span {
    background: #5a49f8;
	width: 22px;
}
.rt-owl-nav-3 .owl-theme .owl-dots {
    margin-top: 30px !important;
}
@media (max-width: 1199px) {
    .rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-prev {
        left: -54px;
    }
    .rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-next {
        right: -54px;
    }
}
@media (max-width: 991px) {
    .rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-prev {
        left: 0px;
    }
    .rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-next {
        right: 0px;
    }
}
@media (max-width: 480px) {
	.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav {
		display: none;
	}
}
/*-------------------------------------
#. EL: Owl Nav 4
---------------------------------------*/
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-nav > div {
	margin: 0 0.3125rem;
    padding: 0;
    border-radius: 0;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: none;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-prev {
    left: -60px;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-next {
    right: -60px;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-nav > div:hover {
    background-color: none;
	border: none;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-nav i {
    font-size: 1.8rem;
    line-height: 1;
    color: #adacac;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-nav > div:hover i {
	color: #000000;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-nav i:before {
    font-size: 1.8rem;
	font-weight: 900;
}
.rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-nav {
    margin-top: 1.875rem;
}
.rt-owl-nav-4.slider-dot-enabled .owl-carousel .owl-dots {
    display: block !important;
}
.rt-owl-nav-4.slider-dot-enabled .owl-carousel .owl-dot span {
    width: 18px;
    height: 8px;
    background: #cfd6e4;
	margin: 4px;
    transition: all 0.3s ease 0s;
}
.rt-owl-nav-4.slider-dot-enabled .owl-carousel .owl-dot:hover span {
    background: #5a49f8;
}
.rt-owl-nav-4.slider-dot-enabled .owl-carousel .owl-dot.active span {
    background: #5a49f8;
	width: 22px;
}
.rt-owl-nav-4 .owl-theme .owl-dots {
    margin-top: 30px !important;
}
@media (max-width: 1199px) {
    .rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-prev {
        left: -54px;
    }
    .rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-next {
        right: -54px;
    }
}
@media (max-width: 991px) {
    .rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-prev {
        left: 0px;
    }
    .rt-owl-nav-4.slider-nav-enabled .owl-carousel .owl-next {
        right: 0px;
    }
}
/*-----------------------------------------
#. EL: Revolution Slider
------------------------------------------*/
.rs-parallax-wrap .rtin-play {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	color: #ffffff;
}
.rs-parallax-wrap .rtin-play .rtin-icon {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 2.8125rem;
    width: 2.8125rem;
    border-radius: 50%;
    margin-right: 0.625rem;
	font-size: 1.25rem;
    color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rs-parallax-wrap .rtin-play .rtin-icon:before {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7a64f2), to(#750ed5));
    background-image: -o-linear-gradient(top, #7a64f2 0%, #750ed5 100%);
    background-image: linear-gradient(180deg, #7a64f2 0%, #750ed5 100%);
    font-size: 0.875rem;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rs-parallax-wrap .rtin-play .rtin-icon:after {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background-color: #ffffff;
    font-size: 0.875rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rs-parallax-wrap .rtin-play .rtin-icon i {
    margin-left: 0.3125rem;
}
.rs-parallax-wrap .rtin-play:hover .rtin-icon {
	color: #ffffff;
}
.rs-parallax-wrap .rtin-play:hover .rtin-icon:before {
    opacity: 1;
}
.rs-parallax-wrap .rtin-play:hover .rtin-icon:after {
    opacity: 0;
}
.rs-parallax-wrap .item-figure {
	margin-top: 3.125rem;
	-webkit-animation: up_down 15s infinite;
	animation: up_down 15s infinite;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
.linebar {
	position: relative;
}
.linebar:before {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: -55px;
}
.linebar:after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 10px;
    right: -45px;
}
@media(max-width: 480px) {
	.rs-parallax-wrap .rtin-play .rtin-icon {
		height: 2rem;
		width: 2rem;
		font-size: 1rem;
	}
}
@media (max-width: 320px) {
	.rs-parallax-wrap .rtin-play .rtin-icon {
		height: 1.75rem;
		width: 1.75rem;
		font-size: 14px;
	}
}
/*animation slider 1*/
@-webkit-keyframes up_down {
	0% {
		-webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
	}
	25% {
		-webkit-transform: translateY(-1.875rem) translateX(0);
        transform: translateY(-1.875rem) translateX(0);
	}
	75% {
		-webkit-transform: translateY(1.875rem) translateX(0);
        transform: translateY(1.875rem) translateX(0);
	}
}
@keyframes up_down {
	0% {
		-webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
	}
	25% {
		-webkit-transform: translateY(-1.875rem) translateX(0);
        transform: translateY(-1.875rem) translateX(0);
	}
	75% {
		-webkit-transform: translateY(1.875rem) translateX(0);
        transform: translateY(1.875rem) translateX(0);
	}
}

/*animation slider 2*/
.slider2_animate1 {
	-webkit-animation: shape_one 100s alternate infinite linear;
	animation: shape_one 100s alternate infinite linear;
}
.slider2_animate2 {
	-webkit-animation: shape_two 100s alternate infinite linear;
    animation: shape_two 100s alternate infinite linear;
}
.slider2_animate3 {
	-webkit-animation: shape_three 100s alternate infinite linear;
	animation: shape_three 100s alternate infinite linear;
}
.slider2_animate4 {
	-webkit-animation: shape_four 100s alternate infinite linear;
	animation: shape_four 100s alternate infinite linear;
}
.slider2_animate5 {
	-webkit-animation: shape_five 100s alternate infinite linear;
    animation: shape_five 100s alternate infinite linear;
}
.slider2_animate6 {
	-webkit-animation: shape_six 100s alternate infinite linear;
    animation: shape_six 100s alternate infinite linear;
}
/*animation slider 2*/
@-webkit-keyframes shape_one {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -100px) rotate(36deg);
            transform: translate(73px, -100px) rotate(36deg);
  }
  50% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(144deg);
            transform: translate(40px, -72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_one {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -100px) rotate(36deg);
            transform: translate(73px, -100px) rotate(36deg);
  }
  50% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(144deg);
            transform: translate(40px, -72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes shape_two {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
            transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
            transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
            transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
            transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_two {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
            transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
            transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
            transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
            transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes shape_three {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
            transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
            transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
            transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
            transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_three {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
            transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
            transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
            transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
            transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
            transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
            transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
            transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
            transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
            transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
            transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
            transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
            transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
            transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
            transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
            transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
            transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
            transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
            transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
            transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
            transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
            transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
            transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
            transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
            transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
            transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@media(min-width: 1024px) {
	.rs-parallax-wrap .button-gradient-1 {
		line-height: 1.875rem !important;
	}
	.rs-parallax-wrap .btn-ghost {
		line-height: 1.875rem !important;
	}
	.rs-parallax-wrap .btn-light {
		line-height: 1.875rem !important;
	}
}

/*-------------------------------------
#. EL: Slider
---------------------------------------*/
.rt-el-slider {
    color: #fff;
    position: relative;
}
.rt-el-slider .rt-nivoslider {
    opacity: 0;
}
.rt-el-slider .rtin-content {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}
.rt-el-slider .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
	color: #1c1b1b;
    line-height: 1.2;
    font-size: 40px;
    font-weight: 700;
    padding: 0;
}
.rt-el-slider .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-mob {
    font-weight: 400;
    color: #ffffff;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
    display: none;
}
.rt-el-slider .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-btn {
    margin: 40px 0 0;
}
/*slider one layout*/
.rtin-slider1 .rtin-content .rtin-content-inner {
    margin: 0 18.3%;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap {
    text-align: left;
	border-radius: 4px;
    background: rgba(1, 16, 63, 0.73);
    padding: 70px 45px 60px 75px;
    max-width: 620px;
	position: relative;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap:after {
	content: "";
	border-radius: 4px;
    background: rgba(1, 16, 63, 0.73);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
	z-index: -1;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
    color: #ffffff;
    line-height: 1.2;
    font-size: 36px;
    font-weight: 700;
    padding: 0;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-sub-title {
    font-weight: 400;
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-desk {
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
    margin: 25px 35px 0 0;
    padding: 0;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-btn {
    margin: 28px 0 0;
}
.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .slider-white-button {
	line-height: 1.4;
}
/*slider two layout*/
.rtin-slider2 .rtin-content {
	position: relative;
}
.rtin-slider2 .rtin-content:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
}
.rtin-slider2 .rtin-content .rtin-content-inner {
    margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}
.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
    color: #ffffff;
    line-height: 1.2;
    font-size: 60px;
    font-weight: 700;
    padding: 0;
}
.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-sub-title {
    font-weight: 400;
    display: block;
    font-size: 24px;
    margin-bottom: 15px;
	letter-spacing: 4px;
}
.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-desk {
    line-height: 1.4;
	font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin: 10px 0 0 0;
    padding: 0;
	letter-spacing: 2px;
}
.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-btn {
    margin: 28px 0 0;
}
.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .slider-white-button {
	line-height: 1.4;
}
@media only screen and (max-width: 1199px) {
	.rtin-slider1 .nivoSlider,
	.rtin-slider1 .nivoSlider img { 
		height: 600px !important;
    }
	.rtin-slider2 .nivoSlider,
	.rtin-slider2 .nivoSlider img { 
		height: 600px !important;
    }
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
		font-size: 48px;
	}
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-desk {
		font-size: 36px;
	}
}
@media only screen and (max-width: 991px) {
	.rt-el-slider .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-mob {
		display: block;
	}
	.rt-el-slider .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-desk {
		display: none;
	}
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-mob {
		font-size: 26px;
		letter-spacing: 2px;
	}
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-btn,
	.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-btn	{
		margin-top: 15px;
	}
	.rtin-slider1 .rtin-content .rtin-content-inner {
		margin: 0 18%;
	}
	.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap {
		padding: 70px 30px 60px 45px;
	}
	.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
		font-size: 30px;
	}
	.rtin-slider2 .nivoSlider,
	.rtin-slider2 .nivoSlider img { 
		height: 500px !important;
    }
}
@media only screen and (max-width: 767px) {
	.rtin-slider1 .nivoSlider,
	.rtin-slider1 .nivoSlider img { 
		height: 400px !important;
    }
	.rtin-slider2 .nivoSlider,
	.rtin-slider2 .nivoSlider img { 
		height: 350px !important;
    }
	.rtin-slider1 .rtin-content .rtin-content-inner {
		margin: 0 15% 0 12%;
	}
	.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap {
		padding: 50px 30px 25px 45px;
	}
	.rtin-slider1 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
		font-size: 26px;
	}
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
		font-size: 36px;
	}
	
}
@media only screen and (max-width: 480px) {
	.rtin-slider1 .nivoSlider,
	.rtin-slider1 .nivoSlider img { 
		height: 320px !important;
    }
	.rtin-slider2 .nivoSlider,
	.rtin-slider2 .nivoSlider img { 
		height: 300px !important;
    }
	.rt-el-slider .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-content-mob {
		display: none;
	} 
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-title {
		font-size: 28px;
	}
	.rtin-slider2 .rtin-content .rtin-content-inner .rtin-content-wrap .rtin-sub-title {
		font-size: 20px;
	}
}
.rt-el-slider .nivo-caption a {
    display: inline-block !important;
}
.rtin-slider1 .rtin-content.rtin-odd .rtin-content-inner .rtin-content-wrap {
    animation: fadeInRight 800ms ease-in-out;
}
.rtin-slider1 .rtin-content.rtin-even .rtin-content-inner .rtin-content-wrap {
    animation: fadeInLeft 800ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-odd .rtin-sub-title {
    animation: fadeInRight 1000ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-odd .rtin-title,
.rt-el-slider .rtin-content.rtin-odd .title-medium-light {
    animation: fadeInRight 1500ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-odd .rtin-content-desk,
.rt-el-slider .rtin-content.rtin-odd .rtin-content-mob,
.rt-el-slider .rtin-content.rtin-odd .post-meta-light {
    animation: fadeInRight 2000ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-odd .rtin-btn,
.rt-el-slider .rtin-content.rtin-odd .topic-box-sm {
    animation: fadeInRight 2500ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-even .rtin-sub-title {
    animation: fadeInLeft 1000ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-even .rtin-title,
.rt-el-slider .rtin-content.rtin-even .title-medium-light {
    animation: fadeInLeft 1500ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-even .rtin-content-desk,
.rt-el-slider .rtin-content.rtin-even .rtin-content-mob,
.rt-el-slider .rtin-content.rtin-even .post-meta-light {
    animation: fadeInLeft 2000ms ease-in-out;
}
.rt-el-slider .rtin-content.rtin-even .rtin-btn,
.rt-el-slider .rtin-content.rtin-even .topic-box-sm {
    animation: fadeInLeft 2500ms ease-in-out;
}
.rt-el-slider .slider-direction {
    display: none;
}
.rt-el-slider .nivo-directionNav a.nivo-prevNav,
.rt-el-slider .nivo-directionNav a.nivo-nextNav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #7a64f2;
    transition: all 0.5s ease-out;
}

.rt-el-slider .nivo-directionNav a.nivo-prevNav:before,
.rt-el-slider .nivo-directionNav a.nivo-nextNav:before {
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    top: 10px;
    transition: all 0.5s ease-out;
}

.rt-el-slider .nivo-directionNav a.nivo-prevNav:hover,
.rt-el-slider .nivo-directionNav a.nivo-nextNav:hover {
    background-color: #7a64f2;
    transition: all 0.5s ease-out;
}
.rt-el-slider .nivo-directionNav a.nivo-prevNav:hover:before,
.rt-el-slider .nivo-directionNav a.nivo-nextNav:hover:before {
    color: #fff;
}
.rt-el-slider .nivo-directionNav a.nivo-prevNav {
    left: 15px;
}

.rt-el-slider .nivo-directionNav a.nivo-prevNav:before {
    content: "\f053";
    left: 17px;
}

.rt-el-slider .nivo-directionNav a.nivo-nextNav {
    right: 15px;
}
.rt-el-slider .nivo-directionNav a.nivo-nextNav:before {
    content: "\f054";
    right: 17px;
}
.rt-el-slider .nivo-caption {
    height: 100%;
    opacity: 1;
    background: inherit;
	padding: 0;
}
.rt-el-slider .nivo-controlNav {
    position: absolute;
    bottom: 20px;
    padding: 0 5px;
	width: 100%;
    z-index: 8;
}
.rt-el-slider .nivo-controlNav .nivo-control {
    text-indent: -9999px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #c4c7cb;
    color: #c4c7cb;
    font-weight: 400;
    margin: 0 5px;
    display: inline-block;
}
.rt-el-slider .nivo-controlNav .nivo-control.active {
    background-color: #7a64f2;
    font-weight: 400;
}
.rt-el-slider.rt-post-slider .rtin-content-inner .topic-box-sm {
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}
.rt-el-slider.rt-post-slider .rtin-content .rtin-content-inner {
    vertical-align: bottom;
    padding-bottom: 50px;
}
.rt-el-slider.rt-post-slider .rt-nivoslider {
    width: 100% !important;
    margin-left: 0 !important;
}
.rt-el-slider.rt-post-slider .rtin-content .rtin-content-inner .rtin-content-wrap {
    margin: 0 40px;
}
.rt-el-slider.rt-post-slider .nivo-controlNav {
    padding: 0 45px;
}
/*-------------------------------------
#. EL: Info Box
---------------------------------------*/
/*info style 1*/
.info-box-style1 {
	margin-bottom: 1.875rem;
	background-color: #ffffff;
	padding: 3.4375rem 2.5rem 3.125rem;
	border-radius: 0.25rem;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 767px) {
	.info-box-style1 {
		padding: 2.1875rem 0.9375rem 1.875rem;
	}
}
.info-box-style1 .icon-holder {
	position: relative;
	z-index: 1;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
}
.info-box-style1 .icon-holder .item-icon {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style1 .icon-holder .item-icon i:before {
	font-size: 2.25rem;
	margin-left: 0;
}
.info-box-style1 .icon-holder .item-icon .svg-img img {
	width: 2.25rem;
}
.info-box-style1 .icon-holder .icon-bg-shape path {
	fill: #f5f5f5;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style1 .icon-color-california {
	color: #ff930e;
}
.info-box-style1 .icon-color-emerald {
	color: #18dc59;
}
.info-box-style1 .icon-color-royal-blue {
	color: #5a49f8;
}
.info-box-style1 .icon-color-dodger-blue {
	color: #36bafe;
}
.info-box-style1 .icon-color-sunset-orange {
	color: #ff3838;
}
.info-box-style1 .icon-color-turquoise {
	color: #01daba;
}
.info-box-style1 .rtin-title {
	margin-bottom: 0.625rem;
}
.info-box-style1 .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style1 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style1 p {
	margin-bottom: 0.625rem;
}
.info-box-style1:hover {
	-webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.1);
}
.info-box-style1:hover .icon-holder.icon-bg-california .icon-bg-shape path {
	fill: #ff930e;
}
.info-box-style1:hover .icon-holder.icon-bg-emerald .icon-bg-shape path {
	fill: #18dc59;
}
.info-box-style1:hover .icon-holder.icon-bg-royal-blue .icon-bg-shape path {
	fill: #5a49f8;
}
.info-box-style1:hover .icon-holder.icon-bg-dodger-blue .icon-bg-shape path {
	fill: #36bafe;
}
.info-box-style1:hover .icon-holder.icon-bg-sunset-orange .icon-bg-shape path {
	fill: #ff3838;
}
.info-box-style1:hover .icon-holder.icon-bg-turquoise .icon-bg-shape path {
	fill: #01daba;
}
.info-box-style1:hover .icon-color-turquoise,
.info-box-style1:hover .icon-color-sunset-orange,
.info-box-style1:hover .icon-color-dodger-blue,
.info-box-style1:hover .icon-color-royal-blue,
.info-box-style1:hover .icon-color-emerald,
.info-box-style1:hover .icon-color-california {
	color: #ffffff;
}
.info-box-style1 .info-box-button {
	margin-top: 0.625rem;
}
/*Info box 2*/
.info-box-style2 .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style2 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style2 .rtin-item {
    border: 1px solid #d9d9d9;
    padding: 55px 40px 50px;
    text-align: center;
    margin-bottom: 30px;
    background-color: #ffffff;
}
.info-box-style2 .rtin-item .rtin-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.info-box-style2 .rtin-item .rtin-icon:before {
	background-color: #fff7ec;
    position: absolute;
    z-index: -1;
    content: "";
    height: 60px;
    width: 60px;
    right: 0;
    left: -50px;
    top: 0;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-animation: right_to_left 0.7s linear forwards;
    animation: right_to_left 0.7s linear forwards;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style2 .rtin-item:hover .rtin-icon:before {
    -webkit-animation: left_to_right 0.7s linear forwards;
    animation: left_to_right 0.7s linear forwards;
}
.info-box-style2 .rtin-item .rtin-icon i {
	font-size: 3.5rem;
	color: #1d2124;
    line-height: 1;
    display: inline-block;
}
.info-box-style2 .rtin-item .rtin-icon i:before {
    font-size: 3.5rem;
}
.info-box-style2 .rtin-item .rtin-icon .svg-img img {
	width: 3.5rem;
}
.info-box-style2 .info-box-button {
	margin-top: 1rem;
}
/*Info box 3*/
.info-box-style3 .rtin-item  {
    padding: 3.125rem 1.875rem;
    text-align: center;
    border-radius: 0.25rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 1.875rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	-webkit-box-shadow: 0 0.125rem 2.1875rem 0 rgba(179, 179, 179, 0.22);
    box-shadow: 0 0.125rem 2.1875rem 0 rgba(179, 179, 179, 0.22);
}
.info-box-style3 .rtin-item:hover {
    -webkit-box-shadow: 0 0.3125rem 2.5rem 0 rgba(179, 179, 179, 0.8);
    box-shadow: 0 0.3125rem 2.5rem 0 rgba(179, 179, 179, 0.8);
}
.info-box-style3 .rtin-item:before {
	background-color: #5a49f8;
    position: absolute;
    content: "";
    top: 99.5%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.info-box-style3 .rtin-item .rtin-title {
	margin-bottom: 0.625rem;
	-webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style3 .rtin-item .rtin-title a {
    color: #1d2124;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style3 .rtin-item .rtin-title a:hover {
	text-decoration: underline;
}
.info-box-style3 .rtin-item .rtin-media {
	margin-bottom: 1rem;
}
.info-box-style3 .rtin-item:hover:before {
    border-radius: 4px;
    top: 0;
    bottom: 0;
}
.info-box-style3 .rtin-item .rtin-icon i {
	color: #5a49f8;
	font-size: 2.25rem;
    background: #f5f5f5;
    border-radius: 50%;
    line-height: 1;
    height: 5rem;
    width: 5rem;
    line-height: 80px;
    display: inline-block;
	-webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style3 .rtin-item:hover .rtin-icon i {
	background: #ffffff;
}
.info-box-style3 .rtin-item .rtin-icon i:before {
	font-size: 2.25rem;
}
.info-box-style3 .rtin-item .rtin-icon .svg-img img {
	width: 2.25rem;
}
.info-box-style3 .rtin-item .rtin-content {
	-webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style3 .rtin-item .info-box-button {
	margin-top: 1.25rem;
}
.info-box-style3 .rtin-item .info-box-button a {
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style3 .rtin-item:hover .rtin-title,
.info-box-style3 .rtin-item:hover .rtin-title a,
.info-box-style3 .rtin-item:hover .rtin-content,
.info-box-style3 .rtin-item:hover .rtin-content .button-1,
.info-box-style3 .rtin-item:hover .rtin-content .button-1 i {
	color: #ffffff;
}

@media(min-width: 991px) and (max-width: 1199px) {
	.responsive-991-1199 .elementor-row {
		display: initial;
	}
	.responsive-991-1199 .elementor-row > .elementor-element {
		width: 50%;
		float: left;
	}
	.responsive-991-1199 .elementor-row > .elementor-element:nth-child(5) {
		display: none;
	}
}
/*Info box 4*/
.info-box-style4 .rtin-item {
	padding: 2.5rem 2.1875rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.07);
    border-radius: 0.25rem;
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style4 .rtin-item:hover {
	background-color: #5a49f8;
}
.info-box-style4 .rtin-item .rtin-icon {
    color: #5a49f8;
    margin-bottom: 1.25rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style4 .rtin-item .rtin-icon i:before {
    font-size: 3.5rem;
}
.info-box-style4 .rtin-item .rtin-icon .svg-img img {
    width: 3.5rem;
}
.info-box-style4 .rtin-item .rtin-title {
    font-size: 1.25rem;
    margin-bottom:  0.625rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style4 .rtin-item .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style4 .rtin-item .rtin-title a:hover {
	text-decoration: underline;
}
.info-box-style4 .rtin-item .rtin-text {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style4 .rtin-item:hover .rtin-icon,
.info-box-style4 .rtin-item:hover .rtin-title,
.info-box-style4 .rtin-item:hover .rtin-title a,
.info-box-style4 .rtin-item:hover .rtin-text {
	color: #ffffff;
}
.info-box-style4 .rtin-item:hover .button-1,
.info-box-style4 .rtin-item:hover .rtin-content .button-1 i {
	color: #ffffff !important;
}
.info-box-style4 .rtin-item .info-box-button {
    margin-top: 1.25rem;
}
/*Info box 5*/
.info-box-style5 .rtin-item {
    padding-left: 1.875rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3.125rem;
}
.info-box-style5 .rtin-item:before {
    position: absolute;
    z-index: 1;
    height: 0.5625rem;
    width: 0.5625rem;
    background-color: #646464;
    border-radius: 50%;
    content: "";
    top: 0.75rem;
    left: 0;
}
.info-box-style5 .rtin-item:after {
    position: absolute;
    z-index: 1;
    height: calc(100% + 40px);
    width: 0.0625rem;
    background-color: #e9e9e9;
    content: "";
    top: 1.3125rem;
    left: 0.25rem;
}
.elementor-widget-rt-info-box:last-child .info-box-style5 .rtin-item {
	margin-bottom: 0;
}
.elementor-widget-rt-info-box:last-child .info-box-style5 .rtin-item:after {
    height: calc(100% - 30px);
}
/*Info box 6*/
.info-box-style6 .rtin-title a {
    color: #1d2124;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style6 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style6 .rtin-item {
	text-align: center;
	margin-bottom: 1.875rem;
	padding: 0 30px;
}
.info-box-style6 .rtin-item .rtin-media {
	margin-bottom: 10px;
}
.info-box-style6 .rtin-item.rtin-image .rtin-media {
	margin-bottom: 20px;
}
.info-box-style6 .rtin-item.rtin-icon .rtin-icon i {
	color: #ffffff;
	font-size: 2.25rem;
    background: #ff930e;
    border-radius: 50%;
    line-height: 1;
    height: 5rem;
    width: 5rem;
    line-height: 80px;
    display: inline-block;
	-webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style6 .rtin-item.rtin-icon .rtin-icon i:before {
    font-size: 28px;
}
.info-box-style6 .rtin-item.rtin-icon .rtin-icon:before {
    background-color: rgba(255, 147, 14, 0.2);
    position: absolute;
    content: "";
    height: 5rem;
    width: 5rem;
    right: 0;
    left: -17px;
    top: 0;
	z-index: -1;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-animation: right_to_left 0.7s linear forwards;
    animation: right_to_left 0.7s linear forwards;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style6 .rtin-item:hover .rtin-icon:before {
	left: 17px;
}
.info-box-style6 .rtin-item .info-box-button {
	margin-top: 8px;
}
.info-box-style6 .rtin-item.rtin-icon .rtin-icon .svg-img img {
	width: 60px;
}
@media(max-width: 1199px) {
	.info-box-style6 .rtin-item {
		padding: 0;
	}
}
@media(max-width: 767px) {
	.info-box-style6 .rtin-item {
		padding: 0;
	}
}
/*Info box 7*/
.info-box-style7 .rtin-item {
	text-align: center;
    padding: 0 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    padding: 50px 30px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style7 .rtin-item:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
.info-box-style7 .rtin-title a {
    color: #1d2124;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style7 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style7 .rtin-item .rtin-media {
	margin-bottom: 20px;
}
.info-box-style7 .rtin-item .rtin-icon {
	margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    -o-transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.info-box-style7 .rtin-item:hover .rtin-icon {
    -webkit-transform: translate3d(0px, -6px, 0);
    transform: translate3d(0px, -6px, 0);
}
.info-box-style7 .rtin-item .rtin-icon i,
.info-box-style7 .rtin-item .rtin-icon i:before {
	font-size: 60px;
}
.info-box-style7 .rtin-item .info-box-button {
	margin-top: 12px;
}
/*Info box 8*/
.info-box-style8 .rtin-item {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}
.info-box-style8 .rtin-item .rtin-icon  {
	margin-right: 20px;
	line-height: 1;
}
.info-box-style8 .rtin-item.rtin-icon .rtin-icon i:before {
	font-size: 42px;
}
.info-box-style8 .rtin-item.rtin-image .rtin-icon img {
	border-radius: 6px;
	width: 60px;
}
.info-box-style8 .rtin-item.rtin-icon .rtin-icon .svg-img img {
	width: 100px;
}
.info-box-style8 .rtin-item .rtin-media {
	margin-top: 8px;
}
.info-box-style8 .rtin-item .rtin-title {
	margin-bottom: 8px;
}
/*info style 9*/
.info-box-style9 {
	margin-bottom: 1.875rem;
	border: 1px solid #e1e1e1;
	padding: 35px 15px 30px;
	border-radius: 0.25rem;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 767px) {
	.info-box-style9 {
		padding: 25px 10px 20px;
	}
}
.info-box-style9 .icon-holder {
	position: relative;
	z-index: 1;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
}
.info-box-style9 .icon-holder .item-icon {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style9 .icon-holder .item-icon i:before {
	font-size: 2.25rem;
	margin-left: 0;
}
.info-box-style9 .icon-holder .item-icon .svg-img img {
	width: 2.25rem;
}
.info-box-style9 .icon-holder .icon-bg-shape path {
	fill: #f5f5f5;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style9 .icon-color-california {
	color: #ff930e;
}
.info-box-style9 .icon-color-emerald {
	color: #18dc59;
}
.info-box-style9 .icon-color-royal-blue {
	color: #5a49f8;
}
.info-box-style9 .icon-color-dodger-blue {
	color: #36bafe;
}
.info-box-style9 .icon-color-sunset-orange {
	color: #ff3838;
}
.info-box-style9 .icon-color-turquoise {
	color: #01daba;
}
.info-box-style9 .rtin-title {
	margin-bottom: 0.625rem;
}
.info-box-style9 .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.info-box-style9 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style9 p {
	margin-bottom: 0.625rem;
}
.info-box-style9:hover {
	background: #ffffff;
	border: 1px solid #ffffff;
	-webkit-box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.1);
}
.info-box-style9:hover .icon-holder.icon-bg-california .icon-bg-shape path {
	fill: #ff930e;
}
.info-box-style9:hover .icon-holder.icon-bg-emerald .icon-bg-shape path {
	fill: #18dc59;
}
.info-box-style9:hover .icon-holder.icon-bg-royal-blue .icon-bg-shape path {
	fill: #5a49f8;
}
.info-box-style9:hover .icon-holder.icon-bg-dodger-blue .icon-bg-shape path {
	fill: #36bafe;
}
.info-box-style9:hover .icon-holder.icon-bg-sunset-orange .icon-bg-shape path {
	fill: #ff3838;
}
.info-box-style9:hover .icon-holder.icon-bg-turquoise .icon-bg-shape path {
	fill: #01daba;
}
.info-box-style9:hover .icon-color-turquoise,
.info-box-style9:hover .icon-color-sunset-orange,
.info-box-style9:hover .icon-color-dodger-blue,
.info-box-style9:hover .icon-color-royal-blue,
.info-box-style9:hover .icon-color-emerald,
.info-box-style9:hover .icon-color-california {
	color: #ffffff;
}
.info-box-style9 .info-box-button {
	margin-top: 1rem;
}
/*Info box 10*/
.info-box-style10 .rtin-item {
	padding: 1.875rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0.25rem;
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style10 .rtin-item:hover {
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
}
.info-box-style10 .rtin-item .rtin-title {
    font-size: 1.25rem;
    margin-bottom:  0.625rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style10 .rtin-item .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style10 .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style10 .rtin-item .rtin-text {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style10 .rtin-item .info-box-button {
    margin-top: 1.25rem;
}
.info-box-style10 .rtin-item:before {
    position: absolute;
    z-index: 1;
    height: 2px;
    width: 0;
    background-color: #5a49f8;
    content: "";
    right: 0;
    left: inherit;
    top: 0;
    border-radius: 3px 3px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style10 .rtin-item:hover:before {
    width: 100%;
    left: 0;
    right: inherit;
}
/*Info box 11*/
.info-box-style11 .rtin-item {
	padding: 2.5rem 2.1875rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.07);
    border-radius: 0.25rem;
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style11 .rtin-item:hover {
	background-color: #fafafa;
}
.info-box-style11 .rtin-item .rtin-icon {
    color: #5a49f8;
    margin-bottom: 1.25rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style11 .rtin-item .rtin-icon i:before {
    font-size: 3.5rem;
}
.info-box-style11 .rtin-item .rtin-icon .svg-img img {
    width: 3.5rem;
}
.info-box-style11 .rtin-item .rtin-title {
    font-size: 1.25rem;
    margin-bottom:  0.625rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style11 .rtin-item .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style11 .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style11 .rtin-item .rtin-text {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style11 .rtin-item .info-box-button {
    margin-top: 1.25rem;
}
/*Info box 12*/
.info-box-style12 .rtin-item {
	padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: #f9fcff;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style12 .rtin-item:hover {
	border-radius: 4px;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
}
.info-box-style12 .rtin-item:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style12 .rtin-item:after {
    content: "";
    background-image: url(../element/element75.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style12 .rtin-item:hover:after {
    opacity: 1;
    visibility: visible;
}
.info-box-style12 .rtin-item .rtin-icon {
	position: relative;
    color: #ffffff;
    margin-bottom: 1.25rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style12 .rtin-item.rtin-icon .rtin-icon:after {
    content: url(../element/element74.png);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
.info-box-style12 .rtin-item .rtin-icon i:before {
    font-size: 2rem;
}
.info-box-style12 .rtin-item .rtin-icon .svg-img img {
    width: 2rem;
}
.info-box-style12 .rtin-item.rtin-icon .rtin-icon {
	position: relative;
    z-index: 0;
    line-height: 1;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style12 .rtin-item.rtin-icon .rtin-icon:before {
    position: absolute;
    content: "";
    background-color: #ff930e;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style12 .rtin-item .rtin-content {
	position: relative;
	z-index: 3;
}
.info-box-style12 .rtin-item .rtin-title {
    font-size: 1.25rem;
    margin-bottom:  0.625rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style12 .rtin-item .rtin-title a {
	color: #1d2124;
	-webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style12 .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style12 .rtin-item .rtin-text {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.info-box-style12 .rtin-item .rtin-text p {
	margin-bottom: 0;
}
.info-box-style12 .rtin-item .info-box-button {
    margin-top: 1.25rem;
}
/*Info box 13*/
.info-box-style13 .rtin-item {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.info-box-style13 .rtin-item.rtin-icon .rtin-icon {
	position: relative;
    z-index: 0;
    line-height: 1;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style13 .rtin-item .rtin-icon i {
	color: #ffffff;
}
.info-box-style13 .rtin-item.rtin-icon .rtin-icon:before {
    position: absolute;
    content: "";
    background-color: #5a49f8;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style13 .rtin-item.rtin-icon .rtin-icon i:before {
	font-size: 24px;
}
.info-box-style13 .rtin-item.rtin-image .rtin-icon img {
	border-radius: 4px;
	width: 100px;
}
.info-box-style13 .rtin-item.rtin-icon .rtin-icon .svg-img img {
	width: 30px;
}
.info-box-style13 .rtin-item .rtin-media {
	margin-top: 5px;
	margin-right: 20px;
}
.info-box-style13 .rtin-item .rtin-title {
	margin-bottom: 8px;
}
.info-box-style13 .rtin-item .rtin-text p {
	margin-bottom: 0;
}
/*Info box 14*/
.info-box-style14 .rtin-item {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
	background: #ffffff;
	border-radius: 4px;
	padding: 40px;
}
.info-box-style14 .rtin-item.rtin-icon .rtin-icon {
	position: relative;
    z-index: 0;
    line-height: 1;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style14 .rtin-item .rtin-icon i {
	color: #5a49f8;
	-webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style14 .rtin-item:hover .rtin-icon i {
	color: #ffffff;
}
.info-box-default.info-box-style14 .rtin-item:hover .rtin-icon i {
	background-color: transparent !important;
}
.info-box-style14 .rtin-item.rtin-icon .rtin-icon:before {
    position: absolute;
    content: "";
    background-color: #f5f4ff;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style14 .rtin-item.rtin-icon:hover .rtin-icon:before {
    background-color: #5a49f8;
}
.info-box-style14 .rtin-item.rtin-icon .rtin-icon i:before {
	font-size: 36px;
}
.info-box-style14 .rtin-item.rtin-icon .rtin-icon .svg-img img {
	width: 50px;
}
.info-box-style14 .rtin-item .rtin-media {
	margin-top: 5px;
	margin-right: 20px;
}
.info-box-style14 .rtin-item .rtin-title {
	margin-bottom: 8px;
}
.info-box-style14 .rtin-item .rtin-title a {
	color: #1d2124;
}
.info-box-style14 .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style14 .rtin-item .rtin-text p {
	margin-bottom: 0;
}
@media(max-width: 425px) {
	.info-box-style14 .rtin-item {
		display: inherit;
		text-align: center;
	}
}
/*Info box 15*/
.info-box-style15 .rtin-item  {
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0 2px 35px 0 rgba(179, 179, 179, 0.22);
    box-shadow: 0 2px 35px 0 rgba(179, 179, 179, 0.22);
}
.info-box-style15 .rtin-item:hover {
    -webkit-box-shadow: 0 3px 40px 0 rgba(179, 179, 179, 0.8);
    box-shadow: 0 3px 40px 0 rgba(179, 179, 179, 0.8);
}
.info-box-style15 .rtin-item:before {
	background-color: #5a49f8;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style15 .rtin-item:hover:before {
    opacity: 1;
    visibility: visible;
}
.info-box-style15 .rtin-item .rtin-title {
	margin-bottom: 10px;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item .rtin-title a {
    color: #1d2124;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item .rtin-title a:hover {
	text-decoration: underline;
}
.info-box-style15 .rtin-item .rtin-media {
	margin-bottom: 15px;
}
.info-box-style15 .rtin-item.rtin-icon .rtin-icon {
    position: relative;
    z-index: 0;
    line-height: 1;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item.rtin-icon .rtin-icon:before {
    position: absolute;
    content: "";
    background-color: #5a49f8;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item.rtin-icon:hover .rtin-icon:before {
    background-color: #ffffff;
}
.info-box-style15.info-box-default .rtin-item:hover .rtin-icon i {
	background: transparent;
}
.info-box-style15 .rtin-item .rtin-icon i {
	color: #ffffff;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item:hover .rtin-icon i {
	color: #5a49f8;
}
.info-box-style15 .rtin-item .rtin-icon i:before {
	font-size: 32px;
}
.info-box-style15 .rtin-item .rtin-icon .svg-img img {
	width: 36px;
}
.info-box-style15 .rtin-item .rtin-content {
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item .rtin-content p {
	margin-bottom: 0;
}
.info-box-style15 .rtin-item .info-box-button {
	margin-top: 1.25rem;
}
.info-box-style15 .rtin-item .info-box-button a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.info-box-style15 .rtin-item:hover .rtin-title,
.info-box-style15 .rtin-item:hover .rtin-title a,
.info-box-style15 .rtin-item:hover .rtin-content,
.info-box-style15 .rtin-item:hover .rtin-content .button-1,
.info-box-style15 .rtin-item:hover .rtin-content .button-1 i {
	color: #ffffff;
}
.info-box-style15 .rtin-item .button-1 i:before {
	transition: none;
}
/*Info box 16*/
.info-box-style16 .rtin-item {
	text-align: center;
    border-radius: 10px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 6px 46px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 6px 46px 0 rgba(0, 0, 0, 0.11);
    padding: 25px 25px 20px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style16 .rtin-item:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
.info-box-style16 .rtin-title {
	margin-bottom: 5px;
}
.info-box-style16 .rtin-title a {
    color: #1d2124;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style16 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style16 .rtin-item .rtin-media {
	margin-bottom: 10px;
}
.info-box-style16 .rtin-item .rtin-icon {
	margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    -o-transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.info-box-style16 .rtin-item .rtin-icon i {
	color: #5a49f8;
}
.info-box-style16 .rtin-item .rtin-icon i,
.info-box-style16 .rtin-item .rtin-icon i:before {
	font-size: 60px;
}
.info-box-style16 .rtin-item .info-box-button {
	margin-top: 12px;
}
/*Info box 17*/
.info-box-style17 .rtin-item {
    border-radius: 10px;
    background-color: #ffffff;
	overflow: hidden;
    padding: 25px 10px 30px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 6px 46px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 6px 46px 0 rgba(0, 0, 0, 0.11);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style17 .rtin-title a {
    color: #1d2124;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.info-box-style17 .rtin-title {
	margin-bottom: 15px;
}
.info-box-style17 .rtin-title a:hover {
	color: #5a49f8;
}
.info-box-style17 .rtin-item .icon-holder {
	position: relative;
	margin-top: -160px;
}
.info-box-style17 .rtin-item .rtin-icon {
	position: absolute;
	bottom: 7px;
	left: 33px;
    border-radius: 50%;
	background: #5a49f8;
    height: 70px;
    width: 70px;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style17 .rtin-item:hover .rtin-icon {
	background: #ffffff;
}
.info-box-style17 .rtin-item .rtin-icon i {
	color: #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style17 .rtin-item .rtin-icon i:before {
	font-size: 24px;
}
.info-box-style17 .rtin-item:hover .rtin-icon i {
	color: #5a49f8;
}
.info-box-style17 .rtin-item .rtin-icon img {
	max-width: 50px;
}
.info-box-style17 .rtin-item .icon-holder svg {
	fill: #f8f7fe;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.info-box-style17 .rtin-item:hover .icon-holder svg {
	fill: #5a49f8;
}
.info-box-style17 .rtin-item .rtin-content {
	margin-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.info-box-style17 .rtin-item .rtin-content p {
	margin-bottom: 0;
}
.info-box-style17 .rtin-item .info-box-button {
	margin-top: 15px;
	margin-bottom: 10px;
}
/*-------------------------------------
#. EL: Working Process
---------------------------------------*/
@-webkit-keyframes zoom_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.working-process-default .rtin-title a {
	color: #1d2124;
}
.working-process-default .rtin-title a:hover {
	color: #5a49f8;
}
/*Process 1*/
.working-process-style1 .rtin-item {
    text-align: center;
    margin-bottom: 1.875rem;
    background-color: #ffffff;
    height: 13.75rem;
    width: 100%;
    border-radius: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
	-webkit-box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
    box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
}
.working-process-style1 .count-number {
    position: absolute;
    z-index: 1;
    font-size: 3.375rem;
    color: #e0e0e0;
    font-weight: 700;
    left: 1.875rem;
    line-height: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style1 .rtin-item:hover .count-number {
    color: #5a49f8;
    -webkit-animation: zoom_animation 0.5s linear forwards;
    animation: zoom_animation 0.5s linear forwards;
}
[class*="elementor-col-"]:nth-child(odd) .working-process-style1 .count-number {
    top: 1.25rem;
	bottom: inherit;
}
[class*="elementor-col-"]:nth-child(even) .working-process-style1 .count-number {
    bottom: 1.25rem;
	top: inherit;
}
[class*="elementor-col-"]:nth-child(odd) .working-process-style1 .rtin-item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
[class*="elementor-col-"]:nth-child(even) .working-process-style1 .rtin-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.working-process-style1 .rtin-content {
    margin: 1.875rem 0;
}
.working-process-style1 .rtin-item .rtin-icon {
    margin-bottom: 0.625rem;
	line-height: 1;
}
.working-process-style1 .rtin-item .rtin-icon i {
	color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style1 .rtin-item .rtin-icon i:before {
    font-size: 4.5rem;
}
.working-process-style1 .rtin-item .rtin-title {
	margin-bottom: 0;
}
/*Process 2*/
.working-process-style2 .rtin-item {
    text-align: center;
    margin-bottom: 1.875rem;
}
.working-process-style2 .rtin-item .rtin-icon {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
	line-height: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	-webkit-box-shadow: 0 0 1.5625rem 0 rgba(54, 186, 254, 0.1);
    box-shadow: 0 0 1.5625rem 0 rgba(54, 186, 254, 0.1);
}
.working-process-style2 .rtin-item:hover .rtin-icon {
	background-color: #5a49f8;
}
.working-process-style2 .rtin-item .rtin-icon i {
	color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style2 .rtin-item:hover .rtin-icon i {
	color: #ffffff;
}
.working-process-style2 .rtin-item .rtin-icon i:before {
    font-size: 4.5rem;
}
.working-process-style2 .rtin-item .rtin-title {
	margin-bottom: 0.625rem;
}
/*Process 3*/
.working-process-style3 .rtin-item {
    text-align: center;
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 1;
}
.working-process-style3 .rtin-item:before {
    content: "";
    width: 0.0625rem;
    height: 90%;
    background-color: rgba(241, 234, 234, 0.5);
    right: -0.9375rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}
@media(max-width: 767px) {
	.working-process-style3 .rtin-item:before {
		display: none;
	}
}
.working-process-style3 .rtin-item .rtin-icon {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	line-height: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style3 .rtin-item:hover .rtin-icon {
    -webkit-animation: zoom_animation 0.5s linear forwards;
    animation: zoom_animation 0.5s linear forwards;
}
.working-process-style3 .rtin-item .rtin-icon i {
	color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style3 .rtin-item .rtin-icon i:before {
    font-size: 3.5rem;
}
.working-process-style3 .rtin-content .rtin-title {
	margin-bottom: 0.625rem;
}
.working-process-style3 .rtin-content {
    padding: 0 0.9375rem;
}
.last-child-border-none:last-child .working-process-style3 .rtin-item:before {
    display: none;
}
/*Process 4*/
.working-process-style4 .rtin-item {
	position: relative;
	margin-bottom: 7.5rem;
}
.working-process-style4 .rtin-item .rtin-flex {
	display: flex;
	align-items: center;
}
.working-process-style4 .rtin-item .rtin-icon {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    height: 10rem;
    width: 10rem;
	line-height: 1;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
    box-shadow: 0 0 2.1875rem 0 rgba(119, 119, 120, 0.13);
	-webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style4 .rtin-item:hover .rtin-icon {
	background-color: #5a49f8;
}
.working-process-style4 .rtin-item .rtin-icon i {
	color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style4 .rtin-item:hover .rtin-icon i {
	color: #ffffff;
}
.working-process-style4 .rtin-item .rtin-icon i:before {
    font-size: 4.5rem;
}
.working-process-style4 .rtin-item .rtin-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.working-process-style4 .rtin-item .rtin-title {
	margin-bottom: 0.25rem;
}
.working-process-style4 .left-icon .rtin-icon {
	margin-right: 1.25rem;
}
.working-process-style4 .right-icon .rtin-flex {
	-ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important;
}
.working-process-style4 .right-icon .rtin-icon {
	margin-left: 1.25rem;
}
.working-process-style4 .right-icon .rtin-content {
	text-align: right;
}
.working-process-style4 .rtin-item svg {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
}
.elementor-widget-rt-working-process:last-child .working-process-style4 .rtin-item {
	margin-bottom: 0;
}
.elementor-widget-rt-working-process:last-child .working-process-style4 .rtin-item svg {
    display: none;
}
@media(max-width:480px){
	.working-process-style4 .rtin-item {
		margin-bottom: 3rem;
	}
	.working-process-style4 .rtin-item svg {
		display: none;
	}
	.working-process-style4 .rtin-item .rtin-icon {
		height: 5rem;
		width: 5rem;
		display: inline-flex;
		margin-bottom: 1.25rem;
	}
	.working-process-style4 .rtin-item .rtin-icon i:before {
		font-size: 2.25rem;
	}
	.working-process-style4 .right-icon .rtin-flex {
		-ms-flex-direction: inherit !important;
		flex-direction: inherit !important;
	}
	.working-process-style4 .right-icon .rtin-icon {
		margin-left: 0;
		margin-right: 1.25rem;
	}
	.working-process-style4 .right-icon .rtin-content {
		text-align: left;
	}
}
@media(max-width:375px){
	.working-process-style4 .rtin-item .rtin-flex {
		display: inherit;
		text-align: center;
	}
	.working-process-style4 .left-icon .rtin-icon {
		margin-right: 0;
	}
	.working-process-style4 .right-icon .rtin-icon {
		margin-left: 0;
	}
	.working-process-style4 .right-icon .rtin-content {
		text-align: center;
	}
}
/*Process 5*/
.working-process-style5 .rtin-item {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	margin-bottom: 1.875rem;
    padding: 1.875rem 1.25rem;
    position: relative;
    z-index: 0;
	border-radius: 0.250rem;
    background-color: #ecf4ff;
}
.working-process-style5 .rtin-title {
    font-size: 1.125rem;
    margin-bottom: 0;
}
.working-process-style5 .count-number {
    height: 2.5rem;
    width: 2.5rem;
    background-color: #5a49f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.625rem;
    color: #ffffff;
    font-size: 1.25rem;
}
.working-process-style5 .rtin-item .rtin-icon {
    position: absolute;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: -1;
    right: -1.875rem;
    opacity: 0.2;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 1;
}
.working-process-style5 .rtin-item .rtin-icon i {
	color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style5 .rtin-item .rtin-icon i:before {
    font-size: 5rem;
}
.working-process-style5 .rtin-item:hover .rtin-icon {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
/*Process 6*/
.working-process-style6 .rtin-item {
	text-align: center;
}
.working-process-style6 .rtin-item .rtin-media {
	margin-bottom: 20px;
}
.working-process-style6 .rtin-item .rtin-icon {
	position: relative;
	line-height: 1;
    z-index: 1;
	margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.working-process-style6 .rtin-item:hover .rtin-icon {
    -webkit-animation: zoom_animation 0.5s linear forwards;
    animation: zoom_animation 0.5s linear forwards;
}
.working-process-style6 .rtin-item .rtin-icon i {
	font-size: 60px;
}
/*-------------------------------------
#. EL: RT Story
---------------------------------------*/
.rtin-story .story-layout {
    position: relative;
	margin: 0;
	padding: 0;
    z-index: 1;
}
.rtin-story .story-layout:before {
    content: '';
    position: absolute;
    left: 50%;
    background-color: #e6e6e6;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    width: 2px;
    height: 100%;
}
.rtin-story .story-layout .story-box-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.rtin-story .story-layout .story-box-layout:nth-child(odd) {
    left: 50%;
}
.rtin-story .story-layout .story-box-layout:nth-child(even) {
    left: calc(50% - 500px);
    text-align: right;
}
.rtin-story .story-layout .story-box-layout:before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #5a49f8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-story .story-layout .story-box-layout:nth-child(odd):before {
    left: -10px;
}
.rtin-story .story-layout .story-box-layout:nth-child(even):before {
    right: -10px;
}
.rtin-story .story-layout .story-box-layout .rtin-year {
    font-size: 30px;
    color: #111111;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    position: absolute;
    z-index: 1;
}
.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-year {
    left: -115px;
}
.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-year {
    right: -115px;
}
.rtin-story .story-layout .story-box-layout .rtin-content {
    background-color: #fff;
    padding: 30px 40px;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.07);
	-webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-story .story-layout .story-box-layout:hover .rtin-content {
    -webkit-box-shadow: 0 0 50px 0 rgba(222, 222, 222, 0.9);
    box-shadow: 0 0 50px 0 rgba(222, 222, 222, 0.9);
}
.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content {
    margin-left: 50px;
}
.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content {
    margin-right: 50px;
}
.rtin-story .story-layout .story-box-layout .rtin-content .rtin-title {
    margin-bottom: 5px;
}
@media only screen and (max-width: 1199px) {
	.rtin-story .story-layout .story-box-layout {
		max-width: 450px;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) {
		left: calc(50% - 450px);
	}
}
@media only screen and (max-width: 991px) {
	.rtin-story .story-layout:before {
		left: 105px;
		height: calc(100% - 20px);
		top: 20px;
	}
	.rtin-story .story-layout .story-box-layout {
		max-width: inherit;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd) {
		left: 0;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) {
		left: 0;
		text-align: left;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd):before {
		left: 95px;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even):before {
		left: 95px;
		right: inherit;
	}
	.rtin-story .story-layout .story-box-layout .rtin-year {
		position: inherit;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-year {
		left: 0;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-year {
		left: 0;
		right: inherit;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content {
		margin-left: 80px;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content {
		margin-left: 80px;
		margin-right: inherit;
	}	
}
@media only screen and (max-width: 480px) {
	.rtin-story .story-layout:before {
		display: none;
	}
	.rtin-story .story-layout .story-box-layout {
		display: block;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd):before {
		display: none;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even):before {
		display: none;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd) {
		text-align: center;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) {
		text-align: center;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-year {
		margin-bottom: 15px;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-year {
		margin-bottom: 15px;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content {
		margin-left: 0;
	}
	.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content {
		margin-left: 0;
	}
}
/*-------------------------------------
#. EL: About Image Text
---------------------------------------*/
.about-image-text .about-content .rtin-title {
	font-size: 2.25rem;
	font-weight: 700;
    line-height: 3.125rem;
}
.about-image-text .about-content .sub-rtin-title {
    margin-bottom: 0.625rem;
    display: block;
    color: #5a49f8;
	font-size: 1.125rem;
    font-weight: 500;
}
.about-image-text .about-content .rtin-content {
	color: #646464;
}
.about-image-text .about-content .rtin-content h4 {
	color: #444444;
	font-weight: 500;
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.625rem;
}
.about-image-text .about-content .rtin-content .sub-content {
	color: #444444;
	font-weight: 500;
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.625rem;
}
.about-image-text .about-content .rtin-button {
    margin-top: 30px;
}
/*about list 1*/
.about-image-text ul.list-layout1 {
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
    overflow: hidden;
}
.about-image-text ul.list-layout1 li {
    text-align: left;
    padding-left: 1.875rem;
    margin-bottom: 0.625rem;
    position: relative;
}
.about-image-text ul.list-layout1 li:last-child {
    margin-bottom: 0;
}
.about-image-text ul.list-layout1 li:before {
    position: absolute;
    z-index: 1;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    top: 0;
    color: #5a49f8;
}
/*about list 2*/
.about-image-text ul.list-layout2 {
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
    overflow: hidden;
}
.about-image-text ul.list-layout2 li {
    position: relative;
    z-index: 1;
    padding-left: 1.875rem;
    margin-bottom: 1.25rem;
}
.about-image-text ul.list-layout2 li:before {
    position: absolute;
    z-index: 1;
    content: "\f058";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 0;
    color: #5a49f8;
    font-size: 1.125rem;
}
.about-image-text ul.list-layout2 li:last-child {
    margin-bottom: 0;
}
.about-image-text ul.list-layout2 li .inner-item-title {
	color: #1d2124;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0;
}
.about-image-text ul.list-layout2 li p {
    margin-bottom: 0;
}
/*About image Style 1*/
.about-layout-style1 .about-image img {
	border-radius: 4px;
}
.about-layout-style1 .about-content {
    position: relative;
}
.about-layout-style1 .left-image .about-content {
	margin-left: 30px;
}
.about-layout-style1 .rtin-item .row > div {
	display: flex;
	align-items: center;
}
@media (max-width: 991px) {
    .about-layout-style1 .about-image {
        margin-top: 30px;
        text-align: center;
    }
	.about-layout-style1 .left-image .about-content {
		margin-left: 0px;
	}
}
.about-layout-style1 .indicator-container {
	display: flex;
	justify-content: center;
}
.about-layout-style1 .indicator-wrap {
	position: relative;
	z-index: 1;
	padding-bottom: 5.25rem;
    margin-top: 3.50rem;
    margin-bottom: 2.225rem;
}
.about-layout-style1 .indicator-wrap .indicator-img-right {
	position: absolute;
	z-index: 1;
	right: -0.9375rem;
	bottom: 0.875rem;
}
.about-layout-style1 .indicator-wrap .indicator-img-left {
	position: absolute;
	z-index: 1;
	left: -1.25rem;
	bottom: 0.875rem;
}
.about-layout-style1 .indicator-wrap .dash-left .dashed1 {
	stroke-dashoffset: 0;
}
.about-layout-style1 .indicator-wrap .dash-right .dashed1 {
	stroke-dashoffset: 0;
}
.about-layout-style1 .indicator-wrap .dashed1 {
	stroke-dasharray: 872;
}
.about-layout-style1 .indicator-wrap .dashed2 {
	stroke-dasharray: 4;
}
.elementor-widget-rt-About-image-text:last-child .about-layout-style1 .indicator-container {
    display: none;
}
@media only screen and (max-width: 991px) {
	.about-layout-style1 .about-content {
		margin-top: 3.75rem;
	}
	.about-layout-style1 .indicator-container {
		display: none;
	}
}
/*About image Style 2*/
.about-layout-style2 .about-content .rtin-title {
	font-size: 2.25rem;
    line-height: 3.125rem;
}
@media only screen and (max-width: 991px) {
	.about-layout-style2 .about-content {
		margin-top: 3.75rem;
	}
	.about-layout-style2 .about-image {
		text-align: center;
	}
}
/*About image Style 3*/
.about-layout-style3 .about-content .rtin-title {
	font-size: 2.25rem;
    line-height: 3.125rem;
}
@media only screen and (max-width: 991px) {
	.about-layout-style3 .about-content {
		margin-top: 3.75rem;
	}
	.about-layout-style3 .about-image {
		text-align: center;
	}
}
/*About image Style 4*/
.about-layout-style4 {
	position: relative;
}
.about-layout-style4 .rtin-item {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width: 992px) {
	.about-layout-style4 .rtin-item {
		flex-direction: column-reverse;
	}
}
.about-layout-style4 .single-item {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media only screen and (max-width: 992px) {
	.about-layout-style4 .single-item {
		width: 100%;
	}
}
.about-layout-style4 .single-item:last-child {
	padding-left: 50px;
	padding-right: calc(calc(100% - 1170px)/2);
}
@media only screen and (max-width: 1199px) {
	.about-layout-style4 .single-item:last-child {
		padding-left: 30px;
		padding-right: 15px;
	}
}
@media only screen and (max-width: 992px) {
	.about-layout-style4 .single-item:last-child {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 60px;
	}
}
@media only screen and (max-width: 767px) {
	.about-layout-style4 .single-item:last-child {
		padding-bottom: 40px;
	}
}
/*About image Style 5*/
.about-layout-style5 .rtin-item {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media only screen and (max-width: 992px) {
	.about-layout-style5 .rtin-item {
		display: block;
	}
}
.about-layout-style5 .single-item {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media only screen and (max-width: 992px) {
	.about-layout-style5 .single-item {
		width: 100%;
	}
}
.about-layout-style5 .single-item:first-child {
	padding-right: 50px;
	padding-left: calc(calc(100% - 1170px)/2);
}
.about-layout-style5 .single-item:last-child {
	padding-left: 76px;
}
@media only screen and (max-width: 1199px) {
	.about-layout-style5 .single-item:first-child {
		padding-left: 15px;
		padding-right: 30px;
	}
}
@media only screen and (max-width: 992px) {
	.about-layout-style5 .single-item:first-child {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 60px;
	}
	.about-layout-style5 .single-item:last-child {
		padding-left: 15px;
	}
}
@media only screen and (max-width: 767px) {
	.about-layout-style5 .single-item:first-child {
		padding-bottom: 40px;
	}
}
/*About style end*/
.elementor-widget-wp-widget-rt-about-social ul.footer-social {
	margin: 0;
	padding: 0;
	list-style: none;
}
.elementor-widget-wp-widget-rt-about-social ul.footer-social li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
}
.elementor-widget-wp-widget-rt-about-social ul.footer-social li:last-child {
	margin-right: 0px;
}
.elementor-widget-wp-widget-rt-about-social ul.footer-social li a {
    background-color: #f2f2f2;
    color: #444444;
    font-size: 16px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
@media(max-width:767px) {
	.elementor-widget-wp-widget-rt-about-social ul.footer-social li a {
		width: 50px;
		height: 50px;
	}
}
.elementor-widget-wp-widget-rt-about-social ul.footer-social li a:hover {
    background-color: #111111;
    color: #ffffff;
}
/*-------------------------------------
#. EL: Skill
---------------------------------------*/
.rtin-skills {
  overflow: hidden;
}
.rtin-skills .rtin-skill-each {
	margin-bottom: 1.875rem;
	overflow: hidden;
}
.rtin-skills .rtin-skill-each:last-child {
	margin-bottom: 0;
}
.rtin-skills .rtin-skill-each .rtin-name {
	color: #5a49f8;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 10px;
}
.rtin-skills .rtin-skill-each .progress {
    background-color: #f0f0f0;
    border-radius: 4px;
    box-shadow: none;
    height: 10px;
    overflow: visible;
    margin: 0;
}
.rtin-skills .rtin-skill-each .progress .progress-bar {
	position: relative;
	background-color: #5a49f8;
	border-radius: 4px;
    height: 10px;
    animation-duration: 1.5s;
    animation-delay: 1.2s;
    animation-name: fadeInLeft;
}
.rtin-skills .rtin-skill-each .progress .progress-bar > span {
    font-size: 12px;
	color: #5a49f8;
    position: absolute;
	right: 0;
	top: -28px;
    padding: 5px;
	line-height: 1;
}
.rtin-skills .rtin-skill-each .progress .progress-bar > span:before,
.rtin-skills .rtin-skill-each .progress .progress-bar > span::after {
	border: medium solid transparent;
	content: " ";
	height: 0;
	position: absolute;
	top: 100%;
	width: 0;
}
.rtin-skills .rtin-skill-each .progress .progress-bar > span:before {
	border-top-color: #5a49f8;
	border-width: 5px;
	left: 50%;
	margin-left: -5px;
}

/*-------------------------------------
#. EL: Rating
---------------------------------------*/
ul.rating {
	margin-bottom: 15px;
    padding: 0;
}
ul.rating li {
	font-size: 1.125rem;
	display: inline;
	margin-right: 5px;
}
ul.rating li:last-child {
	margin-right: 0;
}
ul.rating li i {
	color: #999999;
}
ul.rating li.star-rate i {
	color: #f8b81e;
}
/*-------------------------------------
#. EL: Service Layout
---------------------------------------*/
.service-default .rtin-item .rtin-title {
    font-size: 22px;
	margin-bottom: 10px;
}
.service-default .rtin-item .rtin-title a {
	color: #1d2124;
}
.service-default .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.service-default .rtin-item .rtin-icon {
	margin-bottom: 15px;
}
.service-default .service-button {
	text-align: center;
	margin-top: 20px;
}
/*Service layout 1*/
.service-grid-layout1 .rtin-item  {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 55px 40px 50px;
    border-radius: 4px;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	-webkit-box-shadow: 0 2px 25px 0 rgba(179, 179, 179, 0.22);
    box-shadow: 0 2px 25px 0 rgba(179, 179, 179, 0.22);
}
.service-grid-layout1 .rtin-item:hover {
    -webkit-box-shadow: 0px 5px 35px 0px rgba(179, 179, 179, 0.8);
    box-shadow: 0px 5px 35px 0px rgba(179, 179, 179, 0.8);
}
.service-grid-layout1 .rtin-item .rtin-icon i {
	color: #5a49f8;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 15px 22px;
    line-height: 1;
    display: inline-block;
}
.service-grid-layout1 .rtin-item .rtin-icon i:before {
	font-size: 36px;
}
/*Service layout 2*/
.service-grid-layout2 .rtin-item {
    border: 1px solid #d9d9d9;
    padding: 55px 40px 50px;
    text-align: center;
    margin-bottom: 30px;
    background-color: #ffffff;
}
.service-grid-layout2 .rtin-item .rtin-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.service-grid-layout2 .rtin-item .rtin-icon:before {
	background-color: #5a49f8;
    position: absolute;
    z-index: -1;
    content: "";
    height: 60px;
    width: 60px;
    right: 0;
    left: -50px;
    top: 0;
    margin: 0 auto;
    border-radius: 50%;
    opacity: 0.08;
    -webkit-animation: right_to_left 0.7s linear forwards;
    animation: right_to_left 0.7s linear forwards;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.service-grid-layout2 .rtin-item:hover .rtin-icon:before {
    -webkit-animation: left_to_right 0.7s linear forwards;
    animation: left_to_right 0.7s linear forwards;
}
.service-grid-layout2 .rtin-item .rtin-icon i {
	font-size: 56px;
	color: #1d2124;
    line-height: 1;
    display: inline-block;
}
.service-grid-layout2 .rtin-item .rtin-icon i:before {
    font-size: 56px;
}
/*Service layout 3*/
.service-grid-layout3 .rtin-item  {
	position: relative;
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 55px 40px 50px;
    border-radius: 4px;
    text-align: center;
	z-index: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	-webkit-box-shadow: 0 2px 25px 0 rgba(179, 179, 179, 0.22);
    box-shadow: 0 2px 25px 0 rgba(179, 179, 179, 0.22);
}
.service-grid-layout3 .rtin-item:hover {
    -webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.22);
}
.service-grid-layout3 .rtin-item:before {
	background-color: #5a49f8;
    position: absolute;
    content: "";
    top: 99.5%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.service-grid-layout3 .rtin-item:hover:before {
    border-radius: 4px;
    top: 0;
    bottom: 0;
}
.service-grid-layout3 .rtin-item .rtin-title a:hover {
	text-decoration: underline;
}
.service-grid-layout3 .rtin-item .rtin-icon i {
	color: #5a49f8;
	font-size: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    line-height: 1;
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: inline-block;
}
.service-grid-layout3 .rtin-item .rtin-icon i:before {
	font-size: 36px;
}
.service-grid-layout3 .rtin-item .rtin-content p {
	-webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.service-grid-layout3 .rtin-item:hover .rtin-title a,
.service-grid-layout3 .rtin-item:hover .rtin-title a:hover,
.service-grid-layout3 .rtin-item:hover .rtin-content p,
.service-grid-layout3 .rtin-item:hover .rtin-content .rtin-read a,
.service-grid-layout3 .rtin-item:hover .rtin-content .rtin-read i {
	color: #ffffff;
}
@-webkit-keyframes left_to_right {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  25% {
    -webkit-transform: translateX(0.9375rem) translateY(-0.1875rem);
            transform: translateX(0.9375rem) translateY(-0.1875rem);
  }
  50% {
    -webkit-transform: translateX(1.5625rem) translateY(-0.5rem);
            transform: translateX(1.5625rem) translateY(-0.5rem);
  }
  75% {
    -webkit-transform: translateX(2.1875rem) translateY(-0.9375rem);
            transform: translateX(2.1875rem) translateY(-0.9375rem);
  }
  100% {
    -webkit-transform: translateX(2.8125rem) translateY(-1.25rem);
            transform: translateX(2.8125rem) translateY(-1.25rem);
  }
}

@keyframes left_to_right {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  25% {
    -webkit-transform: translateX(0.9375rem) translateY(-0.1875rem);
            transform: translateX(0.9375rem) translateY(-0.1875rem);
  }
  50% {
    -webkit-transform: translateX(1.5625rem) translateY(-0.5rem);
            transform: translateX(1.5625rem) translateY(-0.5rem);
  }
  75% {
    -webkit-transform: translateX(2.1875rem) translateY(-0.9375rem);
            transform: translateX(2.1875rem) translateY(-0.9375rem);
  }
  100% {
    -webkit-transform: translateX(2.8125rem) translateY(-1.25rem);
            transform: translateX(2.8125rem) translateY(-1.25rem);
  }
}

@-webkit-keyframes right_to_left {
  0% {
    -webkit-transform: translateX(2.8125rem) translateY(-1.25rem);
            transform: translateX(2.8125rem) translateY(-1.25rem);
  }
  25% {
    -webkit-transform: translateX(2.1875rem) translateY(-0.9375rem);
            transform: translateX(2.1875rem) translateY(-0.9375rem);
  }
  50% {
    -webkit-transform: translateX(1.5625rem) translateY(-0.5rem);
            transform: translateX(1.5625rem) translateY(-0.5rem);
  }
  75% {
    -webkit-transform: translateX(0.9375rem) translateY(-0.1875rem);
            transform: translateX(0.9375rem) translateY(-0.1875rem);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes right_to_left {
  0% {
    -webkit-transform: translateX(2.8125rem) translateY(-1.25rem);
            transform: translateX(2.8125rem) translateY(-1.25rem);
  }
  25% {
    -webkit-transform: translateX(2.1875rem) translateY(-0.9375rem);
            transform: translateX(2.1875rem) translateY(-0.9375rem);
  }
  50% {
    -webkit-transform: translateX(1.5625rem) translateY(-0.5rem);
            transform: translateX(1.5625rem) translateY(-0.5rem);
  }
  75% {
    -webkit-transform: translateX(0.9375rem) translateY(-0.1875rem);
            transform: translateX(0.9375rem) translateY(-0.1875rem);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

/*-------------------------------------
#. EL: Single Service
---------------------------------------*/
.single-service-inner .post-thumb {
	margin-bottom: 30px;
}
.single-service-inner .post-thumb img {
	border-radius: 4px;
}
.single-service-inner .service-button {
	margin-top: 50px;
	text-align: center;
}
.rtin-service-info {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}
.rtin-service-info li {
	display: inline-block;
	margin-right: 25px;
}
.rtin-service-info li:last-child {
	margin-right: 0;
}
.rtin-service-info li span {
	color: #5a49f8;
	font-weight: 500;
	margin-right: 7px;
}
/*-------------------------------------
#. EL: Team Layout
---------------------------------------*/
.team-default .rtin-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.team-default .rtin-content .rtin-title {
    font-size: 22px;
    margin-bottom: 5px;
	line-height: 1.2;
}
.team-default .rtin-content .rtin-title a {
	color: #1d2124;
}
.team-default .rtin-content .rtin-title a:hover {
	color: #5a49f8;
}
.team-default .rtin-content .rtin-designation {
    color: #646464;
	font-size: 15px;
	letter-spacing: 1px;
}
.team-default .rtin-content .rtin-social {
    margin-top: 15px;
}
.team-default .team-button {
	text-align: center;
	margin-top: 20px;
}
/*style 1*/
.team-multi-layout-1 .rtin-content-wrap {
    margin-bottom: 30px;
	text-align: center;
}
.team-multi-layout-1 .maks-item {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}
.team-multi-layout-1 .animted-bg-wrap {
    overflow: hidden;
    position: relative;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 1;
}
.team-multi-layout-1 .animted-bg-wrap .animted-bg {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(90, 73, 248, 0.9);
    -webkit-transition: width 1s ease-in-out, height 1s ease-in-out;
    -o-transition: width 1s ease-in-out, height 1s ease-in-out;
    transition: width 1s ease-in-out, height 1s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.team-multi-layout-1 .rtin-item:hover .animted-bg-wrap .animted-bg {
    width: 1500px;
    height: 1500px;
}
.team-multi-layout-1 .maks-item .rtin-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    right: 0;
	list-style: none;
	margin: 0;
	padding: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.team-multi-layout-1 .maks-item .rtin-social li {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li:nth-child(1n) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li:nth-child(2n) {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li:nth-child(3n) {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li:nth-child(4n) {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li:nth-child(5n) {
    -webkit-transition-delay: 1.1s;
    -o-transition-delay: 1.1s;
    transition-delay: 1.1s;
}
.team-multi-layout-1 .rtin-item:hover .maks-item .rtin-social li:nth-child(6n) {
    -webkit-transition-delay: 1.3s;
    -o-transition-delay: 1.3s;
    transition-delay: 1.3s;
}
.team-multi-layout-1 .maks-item .rtin-social li a {
	background-color: #ffffff;
    height: 50px;
    width: 50px;
	font-size: 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #1d2124;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.team-multi-layout-1 .maks-item .rtin-social li a:hover {
    background-color: #7a64f2;
    color: #ffffff;
	-webkit-box-shadow: 0px 12px 21px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 12px 21px 0px rgba(0, 0, 0, 0.3);
}
.team-multi-layout-1 .maks-item .rtin-social li a i {
    font-size: 1.125rem;
}
.team-multi-layout-1 .rtin-content p {
	margin-top: 10px;
}
@media(max-width: 575px) {
	.team-multi-layout-1 .animted-bg-wrap .rtin-figure img {
		width: 100%;
	}
}
/*style 2*/
.team-multi-layout-2 .rtin-item {
    position: relative;
	margin-bottom: 30px;
	text-align: center;
}
.team-multi-layout-2 .rtin-item .rtin-thums {
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	z-index: 2;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.team-multi-layout-2 .rtin-item .rtin-thums img {
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.team-multi-layout-2 .rtin-item:hover .rtin-thums img {
    transform: scale(1.1);
}
.team-multi-layout-2 .rtin-item .rtin-thums:before {
    background-color: rgba(90, 73, 248, 0.5);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
    -webkit-transition: all 0.45s ease-out;
    -moz-transition: all 0.45s ease-out;
    -ms-transition: all 0.45s ease-out;
    -o-transition: all 0.45s ease-out;
    transition: all 0.45s ease-out;
}
.team-multi-layout-2 .rtin-item:hover .rtin-thums:before {
    background-color: rgba(90, 73, 248, 0.9);
}
.team-multi-layout-2 .rtin-content-wrap {
	position: absolute;
    left: 15px;
    right: 15px;
    bottom: 50%;
    z-index: 2;
    transform: translateY(50%);
}
.team-multi-layout-2 .rtin-content-wrap .rtin-content {
	color: #ffffff;
    padding: 0 15px
}
.team-multi-layout-2 .rtin-content .rtin-title a {
	color: #ffffff;
}
.team-default.team-multi-layout-2 .rtin-content .rtin-title a:hover {
	color: #ffffff;
	text-decoration: underline;
}
.team-multi-layout-2 .rtin-content .rtin-designation {
    color: #ffffff;
    margin-bottom: 10px;
}
.team-multi-layout-2 ul.rtin-social li {
    display: inline-block;
    margin-right: 4px;
	margin-bottom: 4px;
}
.team-multi-layout-2 ul.rtin-social li:last-child {
    margin-right: 0px;
}
.team-multi-layout-2 ul.rtin-social li a {
	background: #ffffff;
    font-size: 18px;
    color: #1d2124;
    width: 50px;
    height: 50px;
    display: block;
    line-height: 50px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.team-multi-layout-2 ul.rtin-social li a i {
    font-size: 1.125rem;
}
.team-multi-layout-2 .rtin-item:hover .rtin-social li a {
	background: #7a64f2;
    color: #ffffff;
	-webkit-box-shadow: 0px 12px 21px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 12px 21px 0px rgba(0, 0, 0, 0.3);
}
.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(1n) a {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(2n) a {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(3n) a {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(4n) a {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.team-multi-layout-1.team-slider-style3 .rtin-content-wrap {
	margin-bottom: 0;
}
.team-multi-layout-2.team-slider-style4 .rtin-item {
	margin-bottom: 0;
}
/* Style 3 */
.team-multi-layout-3 .rtin-content {
	text-align: center;
	padding: 20px 0 15px;
}
.team-multi-layout-3 .rtin-content p {
	margin: 10px 0 0;
}
.team-multi-layout-3 .rtin-content .rtin-social li {
	display: inline-block;
	margin-bottom: 10px;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.team-multi-layout-3 .rtin-content .rtin-social li:last-child {
	margin-right: 0;
}
.team-multi-layout-3 .rtin-content .rtin-social li a {
    padding: 5px 10px;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.team-multi-layout-3 .rtin-content .rtin-social li a:hover {
	color: #5a49f8;
}
.team-multi-layout-3 .animted-bg-wrap {
	border-radius: 4px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 1;
}
.team-multi-layout-3 .animted-bg-wrap .animted-bg {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #5a49f8;
    background: -o-linear-gradient(30deg, #5a49f8 0%, #7a64f2 100%);
    background: linear-gradient(60deg, #5a49f8 0%, #7a64f2 100%);
    opacity: 0.75;
    -webkit-transition: width 1s ease-in-out, height 1s ease-in-out;
    -o-transition: width 1s ease-in-out, height 1s ease-in-out;
    transition: width 1s ease-in-out, height 1s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.team-multi-layout-3 .animted-bg-wrap:hover .animted-bg {
    width: 1500px;
    height: 1500px;
}
@media(max-width: 480px) {
	.team-multi-layout-3 .animted-bg-wrap .rtin-figure img {
		width: 100%;
	}
}
/*-------------------------------------
#. EL: Team Single
---------------------------------------*/
.team-single .rtin-thumb {
    border-radius: 4px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.team-single .rtin-heading {
	margin-bottom: 30px;
	line-height: 1;
}
.team-single .rtin-heading h2 {
	color: #5a49f8;
    font-size: 28px;
    line-height: 1.4;
	margin-bottom: 5px;
}
.team-single .rtin-heading .designation {
	font-size: 20px;
}
.team-single .rtin-heading .designation span {
	font-size: 22px;
    color: #1d2124;
    font-weight: 500;
}
.team-single .rtin-content ul {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}
.team-single .rtin-content ul li {
    display: inline-block;
    margin-right: 15px;
    font-size: 16px;
}
.team-single .rtin-content ul li span {
	color: #1d2124;
    font-weight: 500;
}
.team-single .rtin-thumb img {
	border-radius: 4px;
}
.team-single ul.rtin-social {
    margin: 0px 0 10px 0;
    padding: 0;
    list-style: none;
}
.team-single ul.rtin-social li.share {
	margin-right: 0;
}
.team-single ul.rtin-social li.share i {
	margin-right: 15px;
	color: #5a49f8;
	font-size: 20px;
}
.team-single ul.rtin-social li a {
    font-size: 16px;
}
.team-single .rtin-content a {
	color: #1d2124;
}
.team-single .rtin-content a:hover {
    color: #5a49f8;
}
.team-single .rtin-content ul li:last-child {
    margin-right: 0;
}
.team-single .rtin-content ul.rtin-team-info li {
	display: block;
	margin-right: 0;
	margin-bottom: 10px;
	color: #1d2124;
}
.team-single .rtin-content ul.rtin-team-info li i {
	margin-right: 15px;
	color: #5a49f8;
	font-size: 18px;
	font-weight: 600;
}
.team-single .rtin-content ul.rtin-team-info li i:before {
	font-size: 18px;
	font-weight: 600;
}
.team-single .rtin-content {
    padding-left: 10px;
}
.team-single .team-skill-wrap {
	margin-top: 60px;
}
.team-single .skill-contact


.team-single .skill-contact h3 {
	position: relative;
	line-height: 1;
	margin-bottom: 1.875rem;
}
.team-single .rtin-skills .rtin-name {
    color: #111;
    margin-bottom: 5px;
}
.team-single .skill-contact {
	display: flex;
}
.team-single .skill-contact .rtin-skills {
	flex: 1;
	margin-right: 60px;
}
.team-single .skill-contact .rtin-contact {
	flex: 1;
}
@media(max-width: 1199px) {
	.team-single .rtin-content {
		padding-left: 0;
	}
}
@media(max-width: 991px) {
	.team-single .skill-contact {
		display: inherit;
	}
	.team-single .skill-contact .rtin-skills {
		margin-right: 0;
		margin-bottom: 30px;
	}
}
@media(max-width:767px) {
	.single-digeco_team .content-area {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.team-single .rtin-thumb img {
		width: 100%;
	}
	.team-single .rtin-content {
		padding-top: 30px;
	}	
	.team-single .team-skill-wrap {
		margin-top: 30px;
	}
}
/*-------------------------------------
#. EL: Portfolio Layout
---------------------------------------*/
.portfolio-default .rtin-item {
	margin-bottom: 30px;
}
.rt-portfolio-tab {
    position: relative;
    display: inline-block;
	text-align: center;
	margin-bottom: 30px;
}
.portfolio-default .rt-portfolio-tab a.current,
.portfolio-default .rt-portfolio-tab a:hover {
    color: #ffffff;
    background: #5a49f8;
}
.portfolio-default .rt-portfolio-tab a {
	border-radius: 4px;
    font-size: 16px;
	font-weight: 500;
	color: #1d2124;
    margin-bottom: 10px;
    padding: 6px 15px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.portfolio-default .rt-portfolio-tab a:last-child {
	margin-right: 0;
}
.portfolio-default .rtin-figure img {
	border-radius: 4px;
}
.portfolio-default .portfolio-button {
	margin-top: 20px;
	text-align: center;
}
.portfolio-default .portfolio-button {
    text-align: center;
    margin-top: 20px;
}
.portfolio-default .no-gutters .rtin-item {
	margin-bottom: 0px;
}
.portfolio-default .no-gutters .rtin-item .rtin-figure img {
    border-radius: 0px;
}
/*portfolio 1*/
.portfolio-multi-layout-1 .rtin-title a {
	color: #1d2124;
}
.portfolio-multi-layout-1 .rtin-cat a {
	color: #9b9b9b;
}
.portfolio-multi-layout-1 .rtin-item {
	position: relative;
}
.portfolio-multi-layout-1 .rtin-title a:hover,
.portfolio-multi-layout-1 .rtin-cat a:hover {
	color: #5a49f8;
}
.portfolio-multi-layout-1 .rtin-item:before {
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    border-radius: 4px;
    position: absolute;
    z-index: 2;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-multi-layout-1 .rtin-item:hover:before {
    opacity: 1;
    visibility: visible;
}
.portfolio-multi-layout-1 .rtin-item:after {
    content: "";
    background-color: #5a49f8;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 4px;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-1 .rtin-item:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.portfolio-multi-layout-1 .rtin-content {
	padding: 0 20px;
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.portfolio-multi-layout-1 .rtin-item .rtin-content .rtin-icon {
    margin-bottom: 18px;
    font-size: 40px;
    -webkit-transform: translateY(-0.625rem);
    -ms-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-1 .rtin-item:hover .rtin-content .rtin-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.portfolio-multi-layout-1 .rtin-item .rtin-content .rtin-icon a {
	color: #5a49f8;
}
.portfolio-multi-layout-1 .rtin-item .rtin-content .rtin-title {
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.625rem);
    -ms-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.portfolio-multi-layout-1 .rtin-item:hover .rtin-content .rtin-title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.portfolio-multi-layout-1 .rtin-item .rtin-content .rtin-cat {
    color: #646464;
	margin-top: 5px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.625rem);
    -ms-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-1 .rtin-item:hover .rtin-content .rtin-cat {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.portfolio-multi-layout-1 .rtin-item .rtin-content p {
	margin-top: 8px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.625rem);
    -ms-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-multi-layout-1 .rtin-item:hover .rtin-content p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
/*portfolio 2*/
.portfolio-multi-layout-2 .rtin-item {
	position: relative;
	overflow: hidden;
}
.portfolio-multi-layout-2 .rtin-item .rtin-figure {
    text-align: center;
    position: relative;
    overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.portfolio-multi-layout-2 .rtin-item .rtin-figure img {
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item:hover .rtin-figure img {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.portfolio-multi-layout-2 .rtin-item .rtin-content {
	position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
	padding: 0 24px;
    text-align: center;
	display: flex;
    align-items: center;
	justify-content: center;
	border-radius: 4px;
    background-color: #5a49f8;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.42s ease-in-out;
    -moz-transition: all 0.42s ease-in-out;
    -o-transition: all 0.42s ease-in-out;
    -ms-transition: all 0.42s ease-in-out;
    transition: all 0.42s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item:hover .rtin-content {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}
.portfolio-multi-layout-2 .rtin-item h3 {
	margin-bottom: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item:hover h3 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.portfolio-multi-layout-2 .rtin-item h3 a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item h3 a:hover {
	text-decoration: underline;
}
.portfolio-multi-layout-2 .rtin-item .rtin-cat {
	margin-top: 6px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item:hover .rtin-cat {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.portfolio-multi-layout-2 .rtin-item .rtin-cat a {
	color: #ffffff;
}
.portfolio-multi-layout-2 .rtin-item .rtin-cat a:hover {
	color: #ece6e6;
}
.portfolio-multi-layout-2 .rtin-item .rtin-content p {
	color: #ffffff;
	margin-bottom: 10px;
	margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item:hover .rtin-content p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.portfolio-multi-layout-2 .rtin-item .rtin-read {
	margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}
.portfolio-multi-layout-2 .rtin-item:hover .rtin-read {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.portfolio-multi-layout-2 .rtin-item .rtin-read a {
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    padding: 10px 22px;
    background: transparent;
    font-size: 16px;
	font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease-out;
    line-height: 1.4;
}
.portfolio-multi-layout-2 .rtin-item .rtin-read a:after {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    padding-left: 8px;
    font-weight: 900;
}
.portfolio-multi-layout-2 .rtin-item .rtin-read a:hover {
    background-color: #ffffff;
    color: #5a49f8;
}
/*portfolio 3*/
.portfolio-multi-layout-3 .rtin-item {
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}
.portfolio-multi-layout-3 .rtin-item .rtin-figure {
	position: relative;
}
.portfolio-multi-layout-3 .rtin-item .rtin-figure:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-3 .rtin-item:hover .rtin-figure:before {
    opacity: 1;
    visibility: visible;
}
.portfolio-multi-layout-3 .rtin-item .rtin-content {
    padding: 30px 15px;
}
.portfolio-multi-layout-3 .rtin-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.portfolio-multi-layout-3 .rtin-content h3 a {
    color: #111111;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-multi-layout-3 .rtin-content h3 a:hover {
	color: #5a49f8;
}
.portfolio-multi-layout-3 .rtin-item .rtin-content .rtin-cat a {
    color: #212127;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-3 .rtin-item .rtin-content p {
	margin-bottom: 0;
	margin-top: 8px;
}
.portfolio-multi-layout-3 .rtin-item .rtin-figure .rtin-icon {
    font-size: 30px;
    position: absolute;
    top: 30%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-3 .rtin-item:hover .rtin-figure .rtin-icon {
    opacity: 1;
    visibility: visible;
    top: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-3 .rtin-item .rtin-figure .rtin-icon a {
	color: #ffffff;
}
/*portfolio 4*/
.portfolio-default.portfolio-multi-layout-4 .rt-portfolio-tab {
	margin-bottom: 45px;
}
.portfolio-default.portfolio-multi-layout-4 .rt-portfolio-tab a {
	background: #f0eeff;
	margin-right: 5px;
	padding: 10px 35px 9px;
    font-weight: 400;
}
.portfolio-default.portfolio-multi-layout-4 .rt-portfolio-tab a:last-child {
	margin-right: 0;
}
.portfolio-multi-layout-4 .rtin-title a {
	color: #ffffff;
}
.portfolio-multi-layout-4 .rtin-cat a {
	color: #ffffff;
}
.portfolio-multi-layout-4 .rtin-item {
	position: relative;
}
.portfolio-multi-layout-4 .rtin-title a:hover,
.portfolio-multi-layout-4 .rtin-cat a:hover {
	color: #5a49f8;
}
.portfolio-multi-layout-4 .rtin-item:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 4px;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-4 .rtin-item:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.portfolio-multi-layout-4 .rtin-content {
	padding: 0 20px;
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.portfolio-multi-layout-4 .rtin-item .rtin-content .rtin-icon {
    margin-bottom: 15px;
    font-size: 32px;
    -webkit-transform: translateY(-0.625rem);
    -ms-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-4 .rtin-item:hover .rtin-content .rtin-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.portfolio-multi-layout-4 .rtin-item .rtin-content .rtin-icon a {
	color: #ffffff;
}
.portfolio-multi-layout-4 .rtin-item .rtin-content .rtin-icon a:hover {
	color: #5a49f8;
}
.portfolio-multi-layout-4 .rtin-item .rtin-content .rtin-title {
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.625rem);
    -ms-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.portfolio-multi-layout-4 .rtin-item:hover .rtin-content .rtin-title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.portfolio-multi-layout-4 .rtin-item .rtin-content .rtin-cat {
    color: #646464;
	margin-top: 5px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.625rem);
    -ms-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-multi-layout-4 .rtin-item:hover .rtin-content .rtin-cat {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.portfolio-multi-layout-4 .rtin-item .rtin-content p {
	color: #ffffff;
	margin-top: 8px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.625rem);
    -ms-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.portfolio-multi-layout-4 .rtin-item:hover .rtin-content p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
/*-------------------------------------
#. EL: Portfolio Single
---------------------------------------*/
.portfolio-single .rtin-thumbnail {
	margin-bottom: 40px;
}
.portfolio-single .rtin-thumbnail img {
	border-radius: 4px;
}
.portfolio-single .portfolio-details {
	margin-bottom: 30px;
}
.portfolio-single .portfolio-details .port-side-img {
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 40px;
}
.portfolio-single .portfolio-details h3 {
	font-size: 20px;
	position: relative;
    margin-bottom: 20px;
	color: #1d2124;
    line-height: 1.4;
    z-index: 2;
}
.portfolio-single .portfolio-details ul {
	list-style: none;
	margin: 0;
	padding: 0px;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li {
	margin-bottom: 8px;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li:last-child {
	margin-bottom: 0px;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li span:after {
    content: ":";
    font-size: 18px;
    color: #444444;
    font-weight: 500;
    position: absolute;
    top: -1px;
    right: 0;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li .rtin-label {
    color: #1d2124;
    font-weight: 500;
    display: inline-block;
    margin-right: 25px;
    position: relative;
    width: 115px;    
}
.portfolio-single .portfolio-details ul ul.rating {
	padding-left: 0;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li.port-rating {
	display: flex;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li.port-rating li {
	margin-bottom: 0;
	font-size: 1rem;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li a {
	color: #646464;
}
.portfolio-single .portfolio-details ul.rtin-portfolio-info li a:hover {
	color: #5a49f8;
}
.portfolio-single ul.rtin-portfolio-info .rtin-social {
    display: inline-flex;
	padding-left: 0
}
.portfolio-single ul.rtin-portfolio-info .rtin-social li {
	margin-right: 15px;
	margin-bottom: 0;
    width: inherit;
}
.portfolio-single .portfolio-default .rtin-item {
	margin-bottom: 0;
}
@media(min-width:992px) and (max-width:1199px) {
	.portfolio-single ul.rtin-portfolio-info .rtin-social li {
		margin-right: 10px;
	}
}
.portfolio-single ul.rtin-portfolio-info .rtin-social li:last-child {
	margin-right: 0;
}
.portfolio-single .rtin-portfolio-content h3 {
	font-size: 24px;
}
.portfolio-single .rt-related-portfolio {
	margin-top: 46px;
}
.portfolio-single .rt-related-portfolio .title-section {
	margin-bottom: 30px;
}
@media(max-width: 767px) {
	.single-digeco_portfolio .content-area {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.portfolio-single .rt-related-portfolio {
		margin-top: 40px;
	}
	.portfolio-single .portfolio-details .port-side-img img {
		width: 100%;
	}
}
/*portfolio single 2*/
.portfolio-single .item-slider {
	margin-bottom: 3rem;
}
.portfolio-single .item-slider .slide-item img {
	border-radius: 4px;
}
.portfolio-single .item-slider .owl-nav > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    height: 60px;
    width: 60px;
    border-radius: 45px;
    border: 1px solid #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.portfolio-single .item-slider .owl-nav > div:hover {
    background-color: #5a49f8;
    border: 1px solid #5a49f8;
}
.portfolio-single .item-slider:hover .owl-nav > div {
    opacity: 1;
    visibility: visible;
}
.portfolio-single .item-slider .owl-nav > div i {
    font-size: 20px;
    color: #000000;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.portfolio-single .item-slider .owl-nav > div:hover i {
    color: #ffffff;
}
.portfolio-single .item-slider .owl-nav .owl-prev {
    left: 15px;
}
.portfolio-single .item-slider .owl-nav .owl-next {
    right: 15px;
}
.portfolio-single .item-slider:hover .owl-prev {
    left: 50px;
}
.portfolio-single .item-slider:hover .owl-next {
    right: 50px;
}
/*portfolio single 3*/
.portfolio-single-3 .rtin-thumbnail img {
	width: 100%;
}
.portfolio-single-3 .port-share {
	margin-top: 20px;
}
.portfolio-single-3 .port-share .rtin-social i {
    margin-bottom: 5px;
    font-weight: 500;
    height: 35px;
    width: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-single-3 .port-share .rtin-social i.fa-facebook-f {
    color: #315db6;
    border: 1px solid #315db6;
}
.portfolio-single-3 .port-share .rtin-social i.fa-facebook-f:hover {
    background-color: #315db6;
    border: 1px solid transparent;
	color: #ffffff;
}
.portfolio-single-3 .port-share .rtin-social i.fa-twitter {
    color: #00a7e6;
    border: 1px solid #00a7e6;
}
.portfolio-single-3 .port-share .rtin-social i.fa-twitter:hover {
    background-color: #00a7e6;
    border: 1px solid transparent;
	color: #ffffff;
}
.portfolio-single-3 .port-share .rtin-social i.fa-linkedin-in {
    color: #0074b2;
    border: 1px solid #0074b2;
}
.portfolio-single-3 .port-share .rtin-social i.fa-linkedin-in:hover {
    background-color: #0074b2;
    border: 1px solid transparent;
	color: #ffffff;
}
.portfolio-single-3 .port-share .rtin-social i.fa-google-plus-g {
    color: #e93b34;
    border: 1px solid #e93b34;
}
.portfolio-single-3 .port-share .rtin-social i.fa-google-plus-g:hover {
    background-color: #e93b34;
    border: 1px solid transparent;
	color: #ffffff;
}
/*-------------------------------------
#. EL: Testimonial 1
---------------------------------------*/
.rtin-testimonial-1 .rtin-item {
    text-align: center;
}
.rtin-testimonial-1 .rtin-item .top-box {
    padding: 4.375rem 3.125rem 7.5rem;
    position: relative;
    z-index: 1;
    -webkit-mask-image: url(../img/svg3.svg);
    mask-image: url(../img/svg3.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    display: block;
    margin-bottom: 2.5rem;
    background-image: -o-linear-gradient(30deg, #5a49f8 0%, #7a64f2 100%);
    background-image: linear-gradient(60deg, #5a49f8 0%, #7a64f2 100%);
}
.rtin-testimonial-1 .rtin-item .rtin-icon {
	color: #5a49f8;
    margin-bottom: 0.625rem;
	line-height: 1;
}
.rtin-testimonial-1 .rtin-item .rtin-icon i {
    font-size: 6.25rem;
    opacity: 0.7;
}
.rtin-testimonial-1 .rtin-item .top-box i:before {
    font-size: 6.25rem;
}
.rtin-testimonial-1 .rtin-item .top-box p {
    width: 75%;
    margin: 0 auto;
    color: #ffffff;
}
.rtin-testimonial-1 .rtin-item .bottom-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.rtin-testimonial-1 .rtin-item .bottom-box .media {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rtin-testimonial-1 .rtin-item .bottom-box .media .media-body {
    text-align: left;
}
.rtin-testimonial-1 .rtin-item .bottom-box .media img {
    width: auto;
	margin-right: 0.9375rem;
}
.rtin-testimonial-1 .rtin-item .bottom-box .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
}
.rtin-testimonial-1 .rtin-item .bottom-box .rtin-designation {
    font-size: 0.9375rem;
}
@media only screen and (max-width: 1199px) {
	.rtin-testimonial-1 .rtin-item .top-box p {
		width: 100%;
	}
}
@media only screen and (max-width: 991px) {
	.rtin-testimonial-1 .rtin-item .top-box p {
		width: 60%;
	}
}
@media only screen and (max-width: 625px) {
	.rtin-testimonial-1 .rtin-item .top-box p {
		width: 80%;
	}
}
@media only screen and (max-width: 575px) {
	.rtin-testimonial-1 .rtin-item .top-box p {
		width: 90%;
	}
}
@media only screen and (max-width: 479px) {
	.rtin-testimonial-1 .rtin-item .top-box {
		-webkit-mask-image: none;
		mask-image: none;
		padding: 40px 30px 47px;
	}
}
/*-------------------------------------
#. EL: Testimonial 2
---------------------------------------*/
.rtin-testimonial-2 .rtin-item {
    text-align: center;
    padding: 3.75rem 0 5rem;
    -webkit-mask-image: url(../img/svg4.svg);
    mask-image: url(../img/svg4.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    display: block;
    background-image: -o-linear-gradient(30deg, #5a49f8 0%, #7a64f2 100%);
    background-image: linear-gradient(60deg, #5a49f8 0%, #7a64f2 100%);
}
.rtin-testimonial-2 .rtin-item .rtin-icon {
	color: #5a49f8;
    margin-bottom: 0.625rem;
	line-height: 1;
}
.rtin-testimonial-2 .rtin-item .rtin-icon i {
    font-size: 6.25rem;
    opacity: 0.7;
}
.rtin-testimonial-2 .rtin-item .rtin-icon i:before {
    font-size: 6.25rem;
}
.rtin-testimonial-2 .rtin-item p {
    width: 30%;
    margin: 0 auto 30px;
    color: #ffffff;
}
.rtin-testimonial-2 .rtin-item .media {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rtin-testimonial-2 .rtin-item .media img {
    width: auto;
	margin-right: 0.9375rem;
}
.rtin-testimonial-2 .rtin-item .media .media-body {
    text-align: left;
}
.rtin-testimonial-2 .rtin-item .media .media-body .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
    color: #ffffff;
}
.rtin-testimonial-2 .rtin-item .media .media-body .rtin-designation {
    font-size: 0.9375rem;
    color: #ffffff;
}
@media only screen and (max-width: 991px) {
	.rtin-testimonial-2 .rtin-item {
		-webkit-mask-image: none;
		mask-image: none;
		padding: 2.5rem 1.875rem 2.8125rem;
		border-radius: 0.25rem;
	}
	.rtin-testimonial-2 .rtin-item p {
		width: 56%;
	}
}
@media only screen and (max-width: 767px) {
	.rtin-testimonial-2 .rtin-item p {
		width: 100%;
	}
}
/*-------------------------------------
#. EL: Testimonial 3
---------------------------------------*/
.rtin-testimonial-3 .rtin-item {
	margin-bottom: 1.75rem;
    padding: 3.75rem 2.5rem 1.875rem;
    position: relative;
    background-color: #f9f8ff;
    border-radius: 0.25rem;
}
.rtin-testimonial-3 .rtin-item:before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #473f6f;
    opacity: 0.03;
    width: calc(100% - 40px);
    bottom: -0.9375rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    border-radius: 0.25rem;
}
.rtin-testimonial-3 .rtin-item:after {
    content: "";
    position: absolute;
    z-index: -2;
    background-color: #473f6f;
    opacity: 0.03;
    height: 100%;
    width: calc(100% - 80px);
    bottom: -1.875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0.25rem;
}
.rtin-testimonial-3 .rtin-item .media {
    margin-bottom: 1.475rem;
}
.rtin-testimonial-3 .rtin-item .media img {
    width: 50px;
    border-radius: 50%;
	margin-right: 0.9375rem;
}
.rtin-testimonial-3 .rtin-item .media .media-body {
    text-align: left;
}
.rtin-testimonial-3 .rtin-item .media .media-body .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
    color: #1d2124;
    font-size: 1.125rem;
}
.rtin-testimonial-3 .rtin-item .media-body .rtin-designation {
    font-size: 0.9375rem;
}
.rtin-testimonial-3 .rtin-item .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 1;
    top: 4.375rem;
    right: 3.125rem;
}
.rtin-testimonial-3 .rtin-item .rtin-icon {
    position: absolute;
    z-index: 0;
    right: 2.5rem;
    bottom: 1.5625rem;
    color: #000000;
    opacity: 0.05;
}
.rtin-testimonial-3 .rtin-item .rtin-icon i:before {
    font-size: 7.5rem;
}
.rtin-testimonial-3.rtin-testimonial-grid .rtin-item {
	margin-bottom: 3.75rem;
}
@media only screen and (max-width: 767px) {
	.rtin-testimonial-3 .rtin-item .rating {
		position: inherit;
		top: inherit;
		right: inherit;
	}
}
/*-------------------------------------
#. EL: Testimonial 4
---------------------------------------*/
.rtin-testimonial-4 .rtin-item {
    padding: 2.8125rem 2.5rem 1.875rem;
    position: relative;
    background-color: #f7f6fb;
    border-radius: 0.25rem;
}
.rtin-testimonial-4 .rtin-item .rtin-icon {
    color: #000000;
    opacity: 0.05;
    margin-bottom: 0.625rem;
    position: absolute;
    z-index: 0;
    right: 2.5rem;
    top: 2.5rem;
	line-height: 1;
}
.rtin-testimonial-4 .rtin-item .rtin-icon i:before {
    font-size: 7.5rem;
}
.rtin-testimonial-4 .rtin-item .rtin-title {
    font-size: 1.375rem;
    line-height: 2.25rem;
    margin-bottom: 0.3125rem;
}
.rtin-testimonial-4 .rtin-item .rtin-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.rtin-testimonial-4 .rtin-item .media {
    margin-top: 0.625rem;
    margin-bottom: 1.125rem;
}
.rtin-testimonial-4 .rtin-item .media img {
    width: 50px;
    border-radius: 50%;
	margin-right: 0.9375rem;
}
.rtin-testimonial-4 .rtin-item .media .media-body {
    text-align: left;
}
.rtin-testimonial-4 .rtin-item .media .media-body .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
    color: #1d2124;
    font-size: 1.125rem;
}
.rtin-testimonial-4 .rtin-item .media-body .rtin-designation {
    font-size: 0.9375rem;
}
@media only screen and (max-width: 575px) {
	.rtin-testimonial-4 .rtin-item .rtin-content {
		display: block !important;
	}
}
.rtin-testimonial-4.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav {
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
}
.rtin-testimonial-4.rt-owl-nav-3.slider-nav-enabled .owl-carousel .owl-nav > div {
	position: initial;
    transform: initial;
}
/*-------------------------------------
#. EL: Testimonial 5
---------------------------------------*/
.rtin-testimonial-5 .rtin-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.rtin-testimonial-5 .rtin-content {
    position: absolute;
    z-index: 1;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
	width: 380px;
	margin: 0 auto;
}
.rtin-testimonial-5 .rtin-item .rtin-icon {
    margin-bottom: 0.9375rem;
    opacity: 0.8;
	line-height: 1;
    color: #ffffff;
}
.rtin-testimonial-5 .rtin-item .rtin-icon i:before {
    font-size: 4.375rem;
}
.rtin-testimonial-5 .rtin-content p {
    color: #ffffff;
}
.rtin-testimonial-5 .rtin-content .rtin-thumb img {
    width: 50px;
    border-radius: 50%;
    margin-bottom: 0.625rem;
    display: inline-block;
}
.rtin-testimonial-5 .rtin-content .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 1.125rem;
	color: #ffffff;
}
.rtin-testimonial-5 .rtin-content .rtin-designation {
    font-size: 0.875rem;
    color: #ffffff;
}
.rtin-testimonial-5 .shape-wrap {
	margin: 0;
	padding: 0;
	list-style: none;
    position: relative;
    z-index: 0;
	width: 550px;
	margin: 0 auto;
}
.rtin-testimonial-5 .shape-wrap li:first-child {
    position: absolute;
    z-index: 1;
    right: 9.1875rem;
    top: 0;
}
.rtin-testimonial-5 .shape-wrap li svg {
    margin: 0 auto;
}
@media(max-width: 480px) {
	.rtin-testimonial-5 .rtin-content {
		position: inherit;
		-webkit-transform: inherit;
		-ms-transform: inherit;
		transform: inherit;
		width: auto;
	}
	.rtin-testimonial-5 .shape-wrap {
		display: none;
	}
}
/*-------------------------------------
#. EL: Testimonial 7
---------------------------------------*/
.rtin-testimonial-7 .rtin-item {
	position: relative;
}
.rtin-testimonial-7 .rtin-item .rtin-content {
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    position: absolute;
    z-index: 2;
	text-align: center;
}
.rtin-testimonial-7 .rtin-item .rtin-icon {
	color: #ffffff;
    margin-bottom: 0.625rem;
	line-height: 1;
}
.rtin-testimonial-7 .rtin-item .rtin-icon i {
    font-size: 80px;
    opacity: 0.2;
}
.rtin-testimonial-7 .rtin-item .rtin-icon i:before {
    font-size: 80px;
}
.rtin-testimonial-7 .rtin-item p {
    font-size: 18px;
    font-style: italic;
    line-height: 32px;
    width: 80%;
    margin: 0 auto 50px;
    font-weight: 300;
    color: #ffffff;
}
.rtin-testimonial-7 .rtin-item .media {	
	-webkit-transform: translateX(130px);
    -ms-transform: translateX(130px);
    transform: translateX(130px);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	text-align: left;
}
.rtin-testimonial-7 .rtin-item .media img {
    width: 50px;
	margin-right: 0.9375rem;
}
.rtin-testimonial-7 .rtin-item .media .media-body .rtin-title {
	font-size: 18px;
    margin-bottom: 0;
    line-height: 1.2;
    color: #ffffff;
}
.rtin-testimonial-7 .rtin-item .media .media-body .rtin-designation {
    font-size: 0.9375rem;
    color: #ffffff;
}
.rtin-testimonial-7 .owl-carousel .owl-nav {
	position: absolute;
	right: -25%;
	bottom: 16%;
}
@media(max-width:1199px) {
	.rtin-testimonial-7 .owl-carousel .owl-nav {
		right: -29%;
	}
}
@media only screen and (max-width: 991px) {
	.rtin-testimonial-7 .rtin-item p {
		width: 56%;
	}
	.rtin-testimonial-7 .owl-carousel .owl-nav {
		position: inherit;
		right: inherit;
	}
}
@media only screen and (max-width: 767px) {
	.rtin-testimonial-7 .rtin-item p {
		width: 100%;
	}
	.rtin-testimonial-7 .rtin-item {
		background-color: #5a49f8;
		border-radius: 4px;
	}
	.rtin-testimonial-7 .rtin-item .rtin-image img {
		display: none;
	}
	.rtin-testimonial-7 .rtin-item .rtin-content {
		transform: inherit;
		position: inherit;
		height: 100%;
		padding: 60px 30px;
	}
	.rtin-testimonial-7 .rtin-item .media {
		transform: inherit;
	}	
}
/*-------------------------------------
#. EL: Testimonial 8
---------------------------------------*/
.rtin-testimonial-8 .rtin-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.rtin-testimonial-8 .rtin-content {
    position: absolute;
    z-index: 1;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
	width: 380px;
	margin: 0 auto;
}
.rtin-testimonial-8 .rtin-item .rtin-icon {
    margin-bottom: 0.9375rem;
    opacity: 0.8;
	line-height: 1;
    color: #ffffff;
}
.rtin-testimonial-8 .rtin-item .rtin-icon i:before {
    font-size: 4.375rem;
}
.rtin-testimonial-8 .rtin-content p {
    color: #ffffff;
}
.rtin-testimonial-8 .rtin-content .rtin-thumb img {
    width: 50px;
    border-radius: 50%;
    margin-bottom: 0.625rem;
    display: inline-block;
}
.rtin-testimonial-8 .rtin-content .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 1.125rem;
	color: #ffffff;
}
.rtin-testimonial-8 .rtin-content .rtin-designation {
    font-size: 0.875rem;
    color: #ffffff;
}
.rtin-testimonial-8 .shape-wrap {
	margin: 0;
	padding: 0;
	list-style: none;
    position: relative;
    z-index: 0;
	width: 550px;
	margin: 0 auto;
}
.rtin-testimonial-8 .shape-wrap li svg {
    margin: 0 auto;
}
.rtin-testimonial-8 .shape-wrap li svg path {
    fill: #5a49f8;
}
@media(max-width: 480px) {
	.rtin-testimonial-8 .rtin-content {
		position: inherit;
		-webkit-transform: inherit;
		-ms-transform: inherit;
		transform: inherit;
		width: auto;
		background-color: #5a49f8;
		padding: 40px 15px;
		border-radius: 4px;
	}
	.rtin-testimonial-8 .shape-wrap {
		display: none;
	}
}
/*-------------------------------------
#. EL: Testimonial 9
---------------------------------------*/
.rtin-testimonial-9 .rtin-item {
    position: relative;
	text-align: center;
}
.rtin-testimonial-9 .rtin-item .rtin-title {
    font-size: 1.375rem;
    line-height: 2.25rem;
    margin-bottom: 0.3125rem;
}
.rtin-testimonial-9 .rtin-item .media {
    margin-top: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.rtin-testimonial-9 .rtin-item .media .media-body {
    text-align: left;
}
.rtin-testimonial-9 .rtin-item p {
    font-size: 18px;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}
.rtin-testimonial-9 .rtin-item .media img {
    width: 50px;
    border-radius: 50%;
	margin-right: 0.9375rem;
}
.rtin-testimonial-9 .rtin-item .media .media-body .rtin-title {
    margin-bottom: 0;
    line-height: 1.2;
    color: #1d2124;
    font-size: 1.125rem;
}
.rtin-testimonial-9 .rtin-item .media-body .rtin-designation {
    font-size: 0.9375rem;
}
.rtin-testimonial-9 .rtin-item ul.rating li {
	font-size: 14px;
}
.rtin-testimonial-9 .rtin-item .rtin-icon {
    color: #000;
    opacity: 0.08;
    position: absolute;
    z-index: -1;
    top: 50px;
    left: 0;
    right: 0;
    text-align: center;
}
.rtin-testimonial-9 .rtin-item .rtin-icon i:before {
    font-size: 200px;
}
@media(max-width: 991px) {
	.rtin-testimonial-9 .rtin-item p {
		width: 85%;
	}
}
@media(max-width: 480px) {
	.rtin-testimonial-9 .rtin-item p {
		width: 95%;
	}
}
/*-------------------------------------
#. EL: Post Grid 1
---------------------------------------*/
.post-default .rtin-item {
	margin-bottom: 1.875rem;
}    
.post-default .rtin-item .rtin-img {
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem 0.25rem 0 0;
}
.post-default .rtin-item .rtin-img:before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    content: '';
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.post-default .rtin-item .rtin-img:after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
.post-default .rtin-item:hover .rtin-img:before {
    width: 100%;
    height: 100%;
    opacity: 0;
	z-index: -1;
}
.post-default .rtin-item:hover .rtin-img:after {
    width: 100%;
    height: 100%;
    opacity: 0;
	z-index: -1;
}
.post-grid-style1 .rtin-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.post-grid-style1 .rtin-item ul li {
	display: inline-block;
	font-size: 0.875rem;
	color: #9b9b9b;
	margin-right: 1rem;
}
.post-grid-style1 .rtin-item ul li:last-child {
	margin-right: 0;
}
.post-grid-style1 .rtin-item ul li a {
	color: #9b9b9b;
}
.post-grid-style1 .rtin-item ul li a:hover {
	color: #5a49f8;
}
.post-grid-style1 .rtin-item ul li i {
	color: #5a49f8;
	margin-right: 0.625rem;
}
.post-grid-style1 .rtin-item ul.post-top-meta {
	margin-bottom: 0.625rem;
}
.post-grid-style1 .rtin-item ul.post-bottom-meta {
	margin-bottom: 0.625rem;
	padding-top: 0.9375rem;
    border-top: 0.0625rem solid #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.post-grid-style1 .rtin-item ul.post-bottom-meta:before {
    position: absolute;
    z-index: 1;
    content: "-";
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.post-grid-style1 .rtin-item .rtin-content {
    padding: 1.5625rem 1.875rem 0.75rem;
    -webkit-box-shadow: 0rem 0rem 0.8125rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0rem 0rem 0.8125rem 0 rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.post-grid-style1 .rtin-item:hover .rtin-content {
	-webkit-box-shadow: 0rem 0rem 1.25rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0rem 0rem 1.25rem 0 rgba(0, 0, 0, 0.1);
}
.post-grid-style1 .rtin-item .rtin-title {
    margin-bottom: 1.0625rem;
	line-height: 2rem;
}
.post-grid-style1 .rtin-item .rtin-title a {
    color: #1d2124;
}
.post-grid-style1 .rtin-item .rtin-title a:hover {
    color: #5a49f8;
}
.post-grid-style1 .rtin-item .button-1 {
	margin-bottom: 0.825rem;
}
@media (min-width: 576px) and (max-width: 991px) {
	.post-grid-style1 .row > div {
		max-width: 50%;
		flex: 50%;
	}
	.post-grid-style1 .row > div:last-child {
		display: none;
	}
}
/*-------------------------------------
#. EL: Post Grid 2
---------------------------------------*/
.post-grid-style2 .rtin-item .rtin-img {
    border-radius: 0.25rem;
    margin-bottom: 1.25rem;
}
.post-grid-style2 .rtin-item .rtin-title {
	line-height: 2rem;
    margin-bottom: 0;
}
.post-grid-style2 .rtin-item .rtin-title a {
	color: #1d2124;
}
.post-grid-style2 .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.post-grid-style2 .rtin-item ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}
.post-grid-style2 .rtin-item ul li {
	position: relative;
	display: inline-block;
	color: #9b9b9b;
	font-size: 14px;
	margin-right: 24px;
}
.post-grid-style2 .rtin-item ul li:after {
	content: "/";
	position: absolute;
	top: 0;
    right: -16px;
}
.post-grid-style2 .rtin-item ul li:last-child {
	margin-right: 0;
}
.post-grid-style2 .rtin-item ul li:last-child:after {
	display: none;
}
.post-grid-style2 .rtin-item ul li a {
	color: #9b9b9b;
}
.post-grid-style2 .rtin-item ul li a:hover {
	color: #5a49f8;
}
.post-grid-style2 .rtin-item .rtin-content p {
	margin-top: 0.625rem;
	margin-bottom: 0;
}
.post-grid-style2 .rtin-item .rtin-content .button-1 {
	margin-top: 0.625rem;
}
@media (min-width: 576px) and (max-width: 991px) {
	.post-grid-style2 .row > div {
		max-width: 50%;
		flex: 50%;
	}
	.post-grid-style2 .row > div:last-child {
		display: none;
	}
}
/*-------------------------------------
#. EL: Post Grid 3
---------------------------------------*/
.post-grid-style3 .rtin-item .rtin-img {
    border-radius: 0.25rem 0.25rem 0 0;
}
.post-grid-style3 .rtin-item h3 {
	line-height: 2rem;
    margin-bottom: 0;
}
.post-grid-style3 .rtin-item h3 a {
	color: #1d2124;
}
.post-grid-style3 .rtin-item h3 a:hover {
	color: #5a49f8;
}
.post-grid-style3 .rtin-item ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}
.post-grid-style3 .rtin-item ul li {
	position: relative;
	display: inline-block;
	color: #9b9b9b;
	font-size: 14px;
	margin-right: 24px;
}
.post-grid-style3 .rtin-item ul li:after {
	content: "/";
	position: absolute;
	top: 0;
    right: -16px;
}
.post-grid-style3 .rtin-item ul li:last-child {
	margin-right: 0;
}
.post-grid-style3 .rtin-item ul li:last-child:after {
	display: none;
}
.post-grid-style3 .rtin-item ul li a {
	color: #9b9b9b;
}
.post-grid-style3 .rtin-item ul li a:hover {
	color: #5a49f8;
}
.post-grid-style3 .rtin-item {
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.07);
}
.post-grid-style3 .rtin-item .rtin-content {
    padding: 1.5625rem 1.875rem 1.875rem;
    background-color: #ffffff;
}
.post-grid-style3 .rtin-item .rtin-content p {
	margin-top: 0.625rem;
	margin-bottom: 0;
}
.post-grid-style3 .rtin-item .rtin-content .button-1 {
	margin-top: 0.625rem;
}
@media (min-width: 576px) and (max-width: 991px) {
	.post-grid-style3 .row > div {
		max-width: 50%;
		flex: 50%;
	}
	.post-grid-style3 .row > div:last-child {
		display: none;
	}
}
/*-------------------------------------
#. EL: Post grid 5 , Slider 2
---------------------------------------*/
.post-grid-style5 .rtin-item {
    border: 1px solid #e5e5e5;
    padding: 0px 0px 25px;
    border-radius: 4px;
    text-align: center;
}
.post-grid-style5 .rtin-item .rtin-img {
    margin-bottom: 1.5rem;
}
.post-grid-style5 .rtin-item .rtin-title {
	font-size: 30px;
	line-height: 3rem;
    margin-bottom: 0;
}
.post-grid-style5 .rtin-item .rtin-title a {
	color: #1d2124;
}
.post-grid-style5 .rtin-item .rtin-title a:hover {
	color: #5a49f8;
}
.post-grid-style5 .rtin-item ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}
.post-grid-style5 .rtin-item ul li {
	position: relative;
	display: inline-block;
	color: #5a49f8;
	font-size: 20px;
	margin-right: 24px;
}
.post-grid-style5 .rtin-item ul li:after {
	content: "/";
	position: absolute;
	top: 0;
    right: -16px;
}
.post-grid-style5 .rtin-item ul li:last-child {
	margin-right: 0;
}
.post-grid-style5 .rtin-item ul li:last-child:after {
	display: none;
}
.post-grid-style5 .rtin-item ul li a {
	color: #5a49f8;
}
.post-grid-style5 .rtin-item ul li a:hover {
	color: #1d2124;
}
.post-grid-style5 .rtin-item .rtin-content p {
	margin-top: 0.625rem;
	margin-bottom: 0;
}
.post-grid-style5 .rtin-item .rtin-content .button-1 {
	margin-top: 0.625rem;
}
@media(max-width: 991px) {
	.post-grid-style5 .rtin-item .rtin-title {
		font-size: 24px;
		line-height: 1.4;
	}
}
@media (min-width: 576px) and (max-width: 991px) {
	.post-grid-style5 .row > div {
		max-width: 50%;
		flex: 50%;
	}
	.post-grid-style5 .row > div:last-child {
		display: none;
	}
}
/*-------------------------------------
#. EL: Post Grid 7
---------------------------------------*/
.post-grid-style7 .rtin-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.post-grid-style7 .rtin-item ul li {
	display: inline-block;
	font-size: 0.875rem;
	color: #9b9b9b;
	margin-right: 1rem;
}
.post-grid-style7 .rtin-item ul li:last-child {
	margin-right: 0;
}
.post-grid-style7 .rtin-item ul li a {
	color: #9b9b9b;
}
.post-grid-style7 .rtin-item ul li a:hover {
	color: #5a49f8;
}
.post-grid-style7 .rtin-item ul li i {
	color: #5a49f8;
	margin-right: 0.625rem;
}
.post-grid-style7 .rtin-item ul.post-top-meta {
	margin-bottom: 0.625rem;
}
.post-grid-style7 .rtin-item .rtin-content {
	background: #f7f7f7;
	border-radius: 0 0 4px 4px;
    padding: 25px 30px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.post-grid-style7 .rtin-item .rtin-title {
    margin-bottom: 1.0625rem;
	line-height: 2rem;
}
.post-grid-style7 .rtin-item .rtin-title a {
    color: #1d2124;
}
.post-grid-style7 .rtin-item .rtin-title a:hover {
    color: #5a49f8;
}
.post-grid-style7 .rtin-item .button-1 {
	margin-bottom: 0.825rem;
}
@media (min-width: 576px) and (max-width: 991px) {
	.post-grid-style7 .row > div {
		max-width: 50%;
		flex: 50%;
	}
	.post-grid-style7 .row > div:last-child {
		display: none;
	}
}
/*-------------------------------------
#. EL: Post Slider 1
---------------------------------------*/
.post-slider-style4 .owl-carousel .owl-stage-outer {
    padding: 0 10px;
    width: calc(100% + 20px);
    margin-left: -10px;
}
/*-------------------------------------
#. EL: Pricing Table
---------------------------------------*/
/*pricing table 1*/
.rtin-pricing-layout1 .rtin-icon {
    border-radius: 50%;
    height: 10rem;
    width: 10rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
	line-height: 1;
    margin-bottom: 1.875rem;
}
.rtin-pricing-layout1 .rtin-icon:before {
    content: "";
    position: absolute;
	z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background-color: rgba(90, 73, 248, 0.1);
    border-radius: 50%;
    height: 10rem;
    width: 10rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rtin-pricing-layout1 .rtin-icon:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background-color: rgba(90, 73, 248, 0.1);
    border-radius: 50%;
    height: 6.25rem;
    width: 6.25rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rtin-pricing-layout1 .rtin-icon i {
    color: #ff930e;
}
.rtin-pricing-layout1 .rtin-icon i:before {
    font-size: 2.25rem;
}
.rtin-pricing-layout1:hover .rtin-icon:before {
    -webkit-animation: zoomOut 1s infinite;
    animation: zoomOut 1s infinite;
}
.rtin-pricing-layout1 {
	position: relative;
	z-index: 2;
}
.rtin-pricing-layout1 .price-header {
	margin-bottom: 25px;
	text-align: center;
}
.rtin-pricing-layout1 .price-header .rtin-title {
	font-size: 1.375rem;
    color: #1d2124;
	margin-bottom: 1.25rem;
	line-height: 1;
}
.rtin-pricing-layout1 .rtin-pricing-price {
	padding-top: 15px;
}
.rtin-pricing-layout1 .rtin-pricing-price .rtin-price {
	font-size: 3rem;
    color: #1d2124;
    font-weight: 600;
    margin-bottom: 2.1875rem;
	line-height: 1;
	position: relative;
}
.rtin-pricing-layout1 .rtin-price .price-unit {
	font-size: 1.125rem;
	font-weight: 400;
	color: #646464;
	display: block;
	margin-top: 0.75rem;
}
.rtin-pricing-layout1 .rt-price-table-box ul {
	list-style: none;
	margin: 0 0 1.25rem 0;
	padding: 0;
}
.rtin-pricing-layout1 .rt-price-table-box ul li {
    margin-bottom: 0.625rem;
}
.rtin-pricing-layout1 .rt-price-table-box {
	position: relative;
	background: #ffffff;
	text-align: center;
	padding: 3.875rem 1.875rem;
	z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout1.active-class{
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.rtin-pricing-layout1 .rt-price-table-box .rtin-price-button {
	margin-top: 2.1875rem;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
            transform: translateY(-50%) translateX(-50%) scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.5);
            transform: translateY(-50%) translateX(-50%) scale(1.5);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
            transform: translateY(-50%) translateX(-50%) scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.5);
            transform: translateY(-50%) translateX(-50%) scale(1.5);
  }
}
/*pricing table 2*/
.rtin-pricing-layout2 .rt-price-table-box {
    text-align: center;
    background-color: #ffffff;
	margin-bottom: 1.875rem;
    padding: 5rem 1.875rem;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout2 .rt-price-table-box .popular-offer {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 5rem solid #5a49f8;
    border-left: 5rem solid transparent;
}
.rtin-pricing-layout2 .rt-price-table-box .popular-offer .offer {
    position: absolute;
    z-index: 3;
    top: -4.3rem;
    right: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #ffffff;
}
.rtin-pricing-layout2 .price-header {
	margin-bottom: 2.5rem;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout2 .price-header .rtin-title {
	font-size: 1.25rem;
    color: #646464;
	margin-bottom: 0;
	display: block;
}
.rtin-pricing-layout2 .price-header .rtin-price {
	display: inline-block;
	font-family: "Poppins", sans-serif;
    font-size: 2.25rem;
    color: #5a49f8;
    font-weight: 600;
    margin-bottom: 0.625rem;
    position: relative;
    z-index: 1;
}
.rtin-pricing-layout2 .rtin-price .price-unit {
	font-size: 16px;
	font-weight: 400;
	margin-top: 6px;
}
.rtin-pricing-layout2 .rt-price-table-box ul {
	list-style: none;
    margin: 0 0 3.125rem 0;
    padding: 0;
    display: block;
    position: relative;
    top: -1px;
    z-index: 2;
}
.rtin-pricing-layout2 .rt-price-table-box ul li {
    margin-bottom: 1.25rem;
}
.rtin-pricing-layout2.active-class .rt-price-table-box,
.rtin-pricing-layout2 .rt-price-table-box:hover {
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
/*pricing table 3*/
.rtin-pricing-layout3 .rt-price-table-box {
    text-align: center;
    background-color: #ffffff;
	margin-bottom: 1.875rem;
    padding: 5rem 1.875rem;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.08);
}
.rtin-pricing-layout3 .rt-price-table-box .popular-offer {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 5rem solid #5a49f8;
    border-left: 5rem solid transparent;
}
.rtin-pricing-layout3 .rt-price-table-box .popular-offer .offer {
    position: absolute;
    z-index: 3;
    top: -4.3rem;
    right: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #ffffff;
}
.rtin-pricing-layout3 .price-header {
	margin-bottom: 2.5rem;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout3 .price-header .rtin-title {
	font-size: 1.25rem;
    color: #646464;
	margin-bottom: 0;
	display: block;
}
.rtin-pricing-layout3 .price-header .rtin-price {
	font-family: "Poppins", sans-serif;
    display: inline-block;
    font-size: 36px;
    background: -webkit-linear-gradient(-135deg, #04d5f4, #5a49f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.rtin-pricing-layout3 .rtin-price .price-unit {
	font-size: 16px;
	font-weight: 400;
	margin-top: 6px;
}
.rtin-pricing-layout3 .rtin-price .price-fac {
	position: absolute;
    z-index: 1;
    font-size: 16px;
    top: 0;
    right: -20px;
    line-height: 1;
    background: -webkit-linear-gradient(-45deg, #04d5f4, #04d5f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rtin-pricing-layout3 .rt-price-table-box ul {
	list-style: none;
    margin: 0 0 3.125rem 0;
    padding: 0;
    display: block;
    position: relative;
    top: -1px;
    z-index: 2;
}
.rtin-pricing-layout3 .rt-price-table-box ul li {
    margin-bottom: 1.25rem;
}
.rtin-pricing-layout3.active-class .rt-price-table-box,
.rtin-pricing-layout3 .rt-price-table-box:hover {
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
}
/*pricing table 4*/
.rtin-pricing-layout4 .rt-price-table-box {
	border: 1px solid #ebebeb;
	border-radius: 4px;
    background-color: transparent;
	margin-bottom: 1.875rem;
    padding: 5rem 1.875rem;
    position: relative;
	text-align: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout4 .rt-price-table-box .popular-offer {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 5rem solid #5a49f8;
    border-left: 5rem solid transparent;
}
.rtin-pricing-layout4 .rt-price-table-box .popular-offer .offer {
    position: absolute;
    z-index: 3;
    top: -4.3rem;
    right: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #ffffff;
}
.rtin-pricing-layout4 .price-header {
	margin-bottom: 2.5rem;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout4 .price-header .rtin-title {
	font-size: 1.25rem;
    color: #646464;
	margin-bottom: 0;
	display: block;
}
.rtin-pricing-layout4 .price-header .rtin-price {
	font-family: "Poppins", sans-serif;
    display: inline-block;
	color: #5a49f8;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.rtin-pricing-layout4 .rtin-price .price-unit {
	font-size: 16px;
	font-weight: 400;
	margin-top: 6px;
}
.rtin-pricing-layout4 .rtin-price .price-fac {
	position: absolute;
    z-index: 1;
    font-size: 16px;
    top: 0;
    right: -20px;
    line-height: 1;
}
.rtin-pricing-layout4 .rt-price-table-box ul {
	list-style: none;
    margin: 0 0 50px 0;
    padding: 0;
    display: block;
    position: relative;
    top: -1px;
    z-index: 2;
}
.rtin-pricing-layout4 .rt-price-table-box ul li {
    margin-bottom: 1.25rem;
}
.rtin-pricing-layout4 .rtin-price-button .btn-ghost {
	padding: 10px 35px;
}
.rtin-pricing-layout4.active-class .rt-price-table-box,
.rtin-pricing-layout4 .rt-price-table-box:hover {
	background: #ffffff;
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
    -webkit-transform: scaleY(1.05);
    -ms-transform: scaleY(1.05);
    transform: scaleY(1.05);
}
/*pricing table 5*/
.rtin-pricing-layout5 {
	position: relative;
	z-index: 2;
}
.rtin-pricing-layout5 .price-header {
    background-color: #5a49f8;
	border-radius: 4px 4px 0 0;
    background-image: -o-linear-gradient(30deg, #5a49f8 0%, #7a64f2 100%);
    background-image: linear-gradient(60deg, #5a49f8 0%, #7a64f2 100%);
    text-align: center;
    padding: 40px 15px;
}
.rtin-pricing-layout5 .price-header .rtin-title {
	color: #ffffff;
    font-size: 30px;
    margin-bottom: 17px;
    font-weight: 300;
}
.rtin-pricing-layout5 .price-header .rtin-price {
    font-family: "Poppins", sans-serif;
    display: inline-block;
    font-size: 48px;
    color: #ffffff;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.rtin-pricing-layout5 .price-header .price-unit {
	font-size: 22px;
	font-weight: 300;
}
.rtin-pricing-layout5 .pricing-main-body {
    padding: 40px 40px 20px;
}
.rtin-pricing-layout5 .pricing-main-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.rtin-pricing-layout5 .pricing-main-body ul li {
    margin-bottom: 10px;
	position: relative;
	font-weight: 500;
}
.rtin-pricing-layout5 .pricing-main-body ul li:last-child {
    margin-bottom: 0;
}
.rtin-pricing-layout5 .pricing-main-body ul li i {
	margin-right: 8px;
	color: #5a49f8;
	min-width: 15px;
}
.rtin-pricing-layout5 .rt-price-table-box {
	position: relative;
	background: #ffffff;
	z-index: 1;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-pricing-layout5.active-class .rt-price-table-box,
.rtin-pricing-layout5:hover .rt-price-table-box {
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}
.rtin-pricing-layout5 .pricing-footer {
	border-radius: 0 0 4px 4px;
    padding: 20px 40px 40px;
}
/*-------------------------------------
#. EL: Logo Slider
---------------------------------------*/
.logo-slider .rtin-item img {
	filter: grayscale(1);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.logo-slider .rtin-item:hover img {
	filter: grayscale(0);
}
.rtin-logo-slider .rtin-item {
	margin: 20px 15px;
	text-align: center;
}
.rtin-logo-slider .rt-owl-carousel .rtin-item img {
	width: auto;
	display: inline-block;
}
.rtin-logo-grid > .row {
	justify-content: center;
}
.rtin-logo-grid .rtin-item {
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    height: 11.25rem;
    width: 100%;
    margin-bottom: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/*-------------------------------------
#. EL: App Slider
---------------------------------------*/
.rtin-app-slider .rtin-item {
    -webkit-box-shadow: 0rem 0 1.875rem 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0rem 0 1.875rem 0 rgba(0, 0, 0, 0.07);
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rtin-app-slider .center .rtin-item {
    -webkit-box-shadow: 0rem 0 1.875rem 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0rem 0 1.875rem 0 rgba(0, 0, 0, 0.3);
}
.rtin-app-grid .rtin-item {
    -webkit-box-shadow: 0rem 0 1.875rem 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0rem 0 1.875rem 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 1.875rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.rtin-app-slider .rtin-item img,
.rtin-app-grid .rtin-item img {
	border-radius: 0.25rem;
}
/*-------------------------------------
#. EL: Related product slider
---------------------------------------*/
.chef-box .chef-box-content {
    margin-top: 20px;
}
.chef-box .chef-box-content .chef-date {
    font-size: 17px;
    font-weight: 500;
    color: #e30025;
    margin-bottom: 8px;
    display: block;
}
.chef-box .chef-box-content h3 {
    font-size: 20px;
    font-weight: 700;
}
.chef-box .chef-box-content h3 a {
    color: #111111;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.chef-box .chef-box-content h3 a:hover {
    color: #e30025;
}
.chef-box .chef-box-content .rtin-cat {
    border-top: 1px solid #e9e9e9;
    margin-top: 18px;
    padding-top: 18px;
}
.chef-box .chef-box-content .rtin-cat a {
    color: #444444;
}
.chef-box .chef-box-content .rtin-cat a:hover {
    color: #f89f24;
}
.chef-box .chef-box-content .rtin-cat i {
    color: #f89f24;
    padding-right: 8px;
}
/*-------------------------------------
#. EL: Contact Address
---------------------------------------*/
.rtin-address-default .rtin-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #eaeaea;
}
.rtin-address-default .rtin-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.rtin-address-default .rtin-title {
    font-size: 1.5rem;
}
.rtin-address-default .rtin-item .rtin-icon {
	margin-right: 1.25rem;
	margin-top: 0.3125rem;
	line-height: 1;
}
.rtin-address-default .rtin-item .rtin-icon i:before {
	color: #5a49f8;
    font-size: 2.25rem;
	margin-left: 0;
}
.rtin-address-default .rtin-item .rtin-info {
	font-size: 16px;
}
.rtin-address-default .rtin-item .rtin-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.313rem;
}
.rtin-address-default .rtin-item .rtin-info a {
	color: #646464;
}
.rtin-address-default .rtin-item .rtin-info a:hover {
	color: #5a49f8;
}
.rtin-address-default .rtin-item .rtin-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.rtin-address-default .rtin-item .rtin-info ul li {
	display: block;
}
.rtin-address-default.dark .rtin-address-info {
	background-color: #5a49f8;
    border-radius: 4px;
    padding: 50px 40px;
}
.rtin-address-default.dark .rtin-title,
.rtin-address-default.dark .rtin-item .rtin-info,
.rtin-address-default.dark .rtin-item .rtin-info h3,
.rtin-address-default.dark .rtin-item .rtin-info a,
.rtin-address-default.dark .rtin-item .rtin-icon i:before {
	color: #ffffff;
}
.rtin-address-default.dark .rtin-item .rtin-info a:hover {
	color: #ffffff;
	text-decoration: underline;
}
/*-------------------------------------
#. EL: Contact Info
---------------------------------------*/
.rtin-contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rtin-contact-info ul li {
	color: #646464;
	display: flex;
    margin-bottom: 15px;
}
.rtin-contact-info ul li:last-child {
    margin-bottom: 0px;
}
.rtin-contact-info ul li i {
    padding-right: 10px;
    width: 25px;
    color: #5a49f8;
	position: relative;
    top: 7px;
}
.rtin-contact-info ul li a {
	color: #646464;
}
.rtin-contact-info ul li a:hover {
	text-decoration: underline;
}
.rtin-contact-info .rtin-content {
	color: #646464;
}
.rtin-contact-info .rtin-text {
    margin-top: -7px;
}
/*-------------------------------------
#. EL: Coll To Action
---------------------------------------*/
/* Style 1 */
.rt-el-cta .align-items {
    display: flex;
    align-items: center;
}
.cta-style1 .align-items h2 {
    font-size: 2.25rem;
    line-height: 3.125rem;
	margin-bottom: 0;
}
.cta-style1 .align-items p {
    margin-bottom: 0;
	margin-top: 0.625rem;
}
.rt-el-cta .align-items .rtin-button {
	text-align: right;
}
@media (max-width: 991px) {
	.rt-el-cta .align-items {
		display: inherit;
		text-align: center;
	}
	.rt-el-cta .align-items .rtin-button {
		margin-top: 1.563rem;
		text-align: center;
	}
}
@media (max-width: 767px) {
    .cta-style1 .align-items h2 {
        font-size: 1.875rem;
    }
}
/* Style 2 */
.cta-style2 .align-items .rtin-title {
    font-size: 2.25rem;
    margin-bottom: 0px;
	line-height: 1.2;
}
.cta-style2 .phone-number span i:before {
    font-size: 2.25rem;
    color: #5a49f8;
    margin-right: 15px;
}
.cta-style2 .phone-number {
	text-align: right;
}
.cta-style2 .phone-number h3 {
    display: inline-block;
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.2;
}
.cta-style2 .phone-number h3 a {
	color: #5a49f8;
}
@media (max-width: 991px) {
	.cta-style2 .phone-number {
		margin-top: 1.563rem;
		text-align: center;
	}
    .rt-el-cta.cta-style2 {
        text-align: center;
    }
}
@media (max-width: 991px) {
	.cta-style2 .align-items .rtin-title,
	.cta-style2 .phone-number h3,
	.cta-style2 .phone-number span i:before {
        font-size: 1.875rem;
    }
}
/* Style 2 */
.cta-style3 .btn-light.btn-light-2 {
	border: 2px solid #ffffff !important;
	color: #ffffff;
	margin-left: 6px;
}
.cta-style3 .btn-light.btn-light-2:hover {
	background-color: #ffffff;
	color: #1d2124;
}
@media(max-width: 375px) {
	.cta-style3 .rtin-button a:first-child {
		margin-bottom: 5px;
	}
}
/*-------------------------------------
#. EL: Accordion
---------------------------------------*/
.elementor-accordion {
    -webkit-box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 2.1875rem 0 rgba(0, 0, 0, 0.06);
}
.elementor-accordion .elementor-accordion-item {
	border: none;
	border-bottom: 0.0625rem solid #f4f4f4;
}
.elementor-accordion .elementor-accordion-item:last-child {
	border-bottom: none;
}
.elementor-accordion .elementor-accordion-item .elementor-tab-title {
	background: #ffffff;
	border: none;
	font-weight: 500;
	font-size: 1.125rem;
	color: #1d2124;
	padding: 1.5625rem 3.75rem 1.875rem 3.75rem;
}
.elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active {
	background-color: #f9fbfe;
}
.elementor-accordion .elementor-accordion-item .elementor-tab-content.elementor-active {
	background-color: #f9fbfe;
}
.elementor-accordion .elementor-accordion-item .elementor-tab-title a {
	color: #1d2124;
}
.elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active a {
	color: #5a49f8;
}
.elementor-accordion .elementor-accordion-item .elementor-tab-content {
	border: none;
	color: #646464;
	padding: 0 5rem .5625rem 3.75rem;
	position: relative;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon {
	width: inherit;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon > span {
	position: relative;
    top: 0;
	color: #b9b9b9;
}
.elementor-accordion .elementor-active .elementor-accordion-icon > span {
	color: #5a49f8;
}
@media(max-width: 767px) {
	.elementor-accordion .elementor-accordion-item .elementor-tab-content,
	.elementor-accordion .elementor-accordion-item .elementor-tab-title {
		padding-left: 2.8125rem;
		padding-right: 2.8125rem;
	}
}
/*-------------------------------------
#. EL: Tab
---------------------------------------*/
.rtin-tab .tab-nav-list {
    border-bottom: 0;
    display: block;
	padding-left: 15px;
}
.rtin-tab .tab-nav-list .nav-item {
    margin-bottom: 10px;
    width: 100%;
}
.rtin-tab .tab-nav-list .nav-item:last-child {
    margin-bottom: 0;
}
.rtin-tab .tab-nav-list .nav-item a {
	color: #111111;
    border-radius: 5px;
    width: 100%;
    padding: 35px 30px;
    background-color: #f7f7fe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-tab .tab-nav-list .nav-item a span {
	font-size: 16px;
	font-weight: 600;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    line-height: 1.8;
}
.rtin-tab .tab-nav-list .nav-item a i {
	background: #f9f9f9;
	color: #ffffff;
    position: relative;
    z-index: 0;
    line-height: 1;
    border-radius: 50%;
    height: 60px;
    width: 60px;
	margin-right: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rtin-tab .tab-nav-list .nav-item a.active,
.rtin-tab .tab-nav-list .nav-item a:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
}
.rtin-tab .tab-nav-list .nav-item .california i {
    background-color: #ff930e;
}
.rtin-tab .tab-nav-list .nav-item .mountain-meadow i {
    background-color: #14C171;
}
.rtin-tab .tab-nav-list .nav-item .royal-blue i {
    background-color: #5a49f8;
}
.rtin-tab .tab-nav-list .nav-item .torch-red i {
    background-color: #FF1E45;
}
.rtin-tab .tab-nav-list .nav-item .turquoise i {
    background-color: #01daba;
}
.rtin-tab .tab-content .rtin-text img {
	border-radius: 4px;
}
@media(max-width: 991px){
	.rtin-tab .tab-content .tab-pane {
		margin-top: 50px;
	}
}
/*-------------------------------------
#. EL: Video
---------------------------------------*/
.rt-video {
	position: relative;
	z-index: 1;
}
.rt-video .rtin-video {
	text-align: center;
}
.rtin-video .item-icon {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
.rt-video .rtin-video img {
    border-radius: 4px;
}
.rt-video .item-icon .rtin-play i:before {
	font-size: 1.875rem;
    color: #ffffff;
    margin-left: 0.3125rem;
}
.rt-video .item-icon h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
	margin-top: 1.875rem;
	font-size: 2.25rem;
    line-height: 3.125rem;
}
.rt-video .rtin-video .item-img {
    position: relative;
	display: inline-block;
}
.rt-video .rtin-video .item-img:after {
	border-radius: 4px;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}
/*video style 1*/
.video-style1 .item-icon .rtin-play {
	margin: 0 auto;
    position: relative;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 4.6875rem;
    width: 4.6875rem;
    border-radius: 50%;
    color: #ffffff;
    background-color: #5a49f8;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.video-style1 .item-icon .rtin-play:hover {
    background-color: #750ed5;
}
.video-style1 .item-icon .rtin-play:after {
    border-radius: 50%;
    position: absolute;
    z-index: -3;
    content: "";
    height: 6.25rem;
    width: 6.25rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background-color: rgba(90, 73, 248, 0.6);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/*video style 2*/
.video-style2 .item-icon .rtin-play {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 6.875rem;
    width: 6.875rem;
    border-radius: 50%;
    margin-right: 0.625rem;
    color: #ffffff;
    background-color: #5a49f8;
    font-size: 1.875rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.video-style2 .item-icon .rtin-play:before {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7a64f2), to(#750ed5));
    background-image: -o-linear-gradient(top, #7a64f2 0%, #750ed5 100%);
    background-image: linear-gradient(180deg, #7a64f2 0%, #750ed5 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.video-style2 .item-icon .rtin-play:hover:before {
    opacity: 1;
    visibility: visible;
}
/*video style 3*/
.video-style3 .rtin-video {
	position: relative;
}
.video-style3 .animated-bg {
    position: absolute;
    z-index: -1;
    right: 7.1875rem;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.video-style3 .animated-figure {
    -webkit-transform: translateX(-8.125rem);
    -ms-transform: translateX(-8.125rem);
    transform: translateX(-8.125rem);
}
.video-style3 .animated-figure .mask-image  {
    -webkit-mask-image: url(../img/svg1.svg);
    mask-image: url(../img/svg1.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    position: relative;
    display: block;
	transform: initial;
}
.video-style3 .animated-figure .mask-image .item-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
.video-style3 .item-icon .rtin-play {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 6.875rem;
    width: 6.875rem;
    border-radius: 50%;
    margin-right: 0.625rem;
    color: #ffffff;
    background-color: #5a49f8;
    font-size: 1.875rem;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.video-style3 .item-icon .rtin-play:before {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7a64f2), to(#750ed5));
    background-image: -o-linear-gradient(top, #7a64f2 0%, #750ed5 100%);
    background-image: linear-gradient(180deg, #7a64f2 0%, #750ed5 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.video-style3 .item-icon .rtin-play:hover:before {
    opacity: 1;
    visibility: visible;
}
@media only screen and (max-width: 1199px) {
	.video-style3 .animated-figure {
		-webkit-transform: translateX(-3.75rem);
		-ms-transform: translateX(-3.75rem);
		transform: translateX(-3.75rem);
	}
	.video-style3 .animated-bg {
		right: -33%;
		top: 57%;
	}
	.video-style3 .animated-bg svg {
		-webkit-transform: scale(0.6);
		-ms-transform: scale(0.6);
		transform: scale(0.6);
	}
}
@media only screen and (max-width: 991px) {
	.video-style3 .animated-figure {
		-webkit-transform: translateX(-2.75rem);
		-ms-transform: translateX(-2.75rem);
		transform: translateX(-2.75rem);
	}
	.video-style3 .animated-bg {
		right: -4%;
	}
	.video-style3 .animated-bg svg {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@media only screen and (max-width: 767px) {
	.video-style3 .animated-figure {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.video-style3 .animated-bg {
		right: -2%;
		top: 57%;
	}
	.video-style3 .animated-bg svg {
		display: none;
	}
	.video-style1 .item-icon .rtin-play,
	.video-style2 .item-icon .rtin-play,
	.video-style3 .item-icon .rtin-play {
		height: 4.75rem;
		width: 4.75rem;
		font-size: 1.475rem;
	}
	.rt-video .item-icon .rtin-play i:before {
		font-size: 1.475rem;
	}
}
/*-------------------------------------
#. EL: Progress Circular
---------------------------------------*/
.progress-circular-layout {
	position: relative;
}
.progress-circular-layout .progress-circular {
    margin-bottom: 10px;
	display: inline-block;
    position: relative;
}
.progress-circular-layout .progress-circular input {
    font-size: 34px !important;
}
.progress-circular-layout .progress-circular .rtin-unit {
    bottom: 8%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #646464;
    left: 50%;
    position: absolute;
    font-size: 14px;
}
.progress-circular-layout .rtin-content {
	font-weight: 500;
}
/*-------------------------------------
#. EL: Progress Bar
---------------------------------------*/
.rtin-progress-bar {
    overflow: hidden;
}
.rtin-progress-bar .rtin-name {
    color: #5a49f8;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}
.rtin-progress-bar .progress {
    background-color: #f0f0f0;
    border-radius: 4px;
    box-shadow: none;
    height: 10px;
    overflow: visible;
    margin: 0;
}
.rtin-progress-bar .progress .progress-bar {
    position: relative;
    background-color: #7a64f2;
    border-radius: 4px;
    height: 10px;
    animation-duration: 1.5s;
    animation-delay: 1.2s;
    animation-name: fadeInLeft;
}
.rtin-progress-bar .progress .progress-bar > span {
    font-size: 12px;
    color: #5a49f8;
    position: absolute;
    right: 0;
    top: -28px;
    padding: 5px;
    line-height: 1;
}
.rtin-progress-bar .progress .progress-bar > span:before, 
.rtin-progress-bar .progress .progress-bar > span:after {
    border: medium solid transparent;
    content: " ";
    height: 0;
    position: absolute;
    top: 100%;
    width: 0;
}
.rtin-progress-bar .progress .progress-bar > span:before {
    border-top-color: #5a49f8;
    border-width: 5px;
    left: 50%;
    margin-left: -5px;
}
/*-------------------------------------
#. EL: Counter
---------------------------------------*/
.rt-counter .rtin-item {
	position: relative;
	margin-bottom: 1.875rem;
}
.rt-counter .rtin-item .rtin-title {
	font-size: 1.375rem;
	font-weight: 500;
    color: #1d2124;
	line-height: 1.4;
    margin-bottom: 0px;
    position: relative;
}
.rt-counter .rtin-item .rtin-counter {
	color: #5a49f8;
    font-size: 2.25rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
    display: inline-block;
	margin-bottom: 0.625rem;
    line-height: 1;
	z-index: 3;
    position: relative;
}
.rt-counter.rtin-center {
    text-align: center;
}
.rt-counter.rtin-center .rtin-item .rtin-title:after {
    right: 0;
}
.rt-counter.rtin-right {
    text-align: right;
}
.rt-counter.rtin-right .rtin-item .rtin-title:after {
    right: 0;
    left: inherit;
}
.rt-counter .rtin-item .rtin-icon {
	margin-bottom: 0.9375rem;
}
.rt-counter .rtin-item .rtin-icon i {
    font-size: 3.5rem;
    color: #5a49f8;
	line-height: 1;
	-webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rt-counter .rtin-item .rtin-icon i:before {
    font-size: 3.5rem;
}
.rt-counter .rtin-item .rtin-icon img {
	max-width: 3.5rem;
}
.rtin-counter-gradient:before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -o-linear-gradient(30deg, #5a49f8 0%, #7a64f2 100%);
    background-image: linear-gradient(60deg, #5a49f8 0%, #7a64f2 100%);
}
.rtin-counter-style3 .rtin-item {
	padding: 20px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.45); 
}
/*-------------------------------------
#. EL: Theia Sticky Sidebar
---------------------------------------*/
.fixed-side-bar .fixed-bar-coloum {
	display: initial;
}
.fixed-sidebar-left {
	background: #ffffff;
	-webkit-box-shadow: 0px 5px 16px 0px rgba(202, 202, 202, 0.75);
    box-shadow: 0px 5px 16px 0px rgba(202, 202, 202, 0.75);
}
.fixed-sidebar-left .elementor-image img {
	max-width: 216px;
}
.fixed-sidebar-left .elementor-element ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.fixed-sidebar-left .elementor-widget-wp-widget-nav_menu ul > li {
    margin-bottom: 20px;
    position: relative;
}
.fixed-sidebar-left .elementor-widget-wp-widget-nav_menu ul > li > a {
    font-size: 18px;
    color: #111111;
    padding: 5px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.fixed-sidebar-left .elementor-widget-wp-widget-nav_menu ul > li > a:hover {
	color: #444444;
}
.fix-bar-bottom-copyright .rt-about-widget,
.fixed-sidebar-left .rt-about-widget {
	text-align: center;
}
.fix-bar-bottom-copyright .rt-about-widget .footer-about,
.fixed-sidebar-left .rt-about-widget .footer-about {
	font-size: 15px;
    color: #757575;
    margin-bottom: 14px;
}
.fix-bar-bottom-copyright .rt-about-widget ul li,
.fixed-sidebar-left .rt-about-widget ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}
.fix-bar-bottom-copyright .rt-about-widget ul li a,
.fixed-sidebar-left .rt-about-widget ul li a {
    background-color: transparent;
    color: #111111;
    font-size: 16px;
    width: inherit;
    height: inherit;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.fix-bar-bottom-copyright .rt-about-widget ul li a:hover,
.fixed-sidebar-left .rt-about-widget ul li a:hover {
    background-color: transparent;
    color: #444444;
}
.fixed-sidebar-left .theiaStickySidebar .elementor-widget-wrap {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 6rem 0 5.5rem;
}
.fix-bar-bottom-copyright {
	display: none;
	background: #fff;
    padding: 20px;
	-webkit-box-shadow: 0px 1px 10px 0px rgba(224, 224, 224, 0.75);
    box-shadow: 0px 1px 10px 0px rgba(224, 224, 224, 0.75);
}
@media(min-width: 992px) and (max-width: 1199px) {
	.fixed-side-bar .post-grid-style1 .row > div {
		width: 100%;
		max-width: 100%;
		flex: 100%;
	}
}
@media(max-width:991px) {
	.fixed-side-bar .fixed-bar-coloum.fixed-sidebar-left {
		display: none;
	}
	.fix-bar-bottom-copyright {
		display: block;
	}
	.fixed-side-bar .elementor-container > .elementor-row > .elementor-element {
		/*width: 100%;*/
	}
}
/*-------------------------------------
#. EL: Instagram
-------------------------------------*/
#sb_instagram {
	padding-bottom: 0 !important;
}
#sb_instagram #sbi_load .sbi_follow_btn {
	margin-left: 0;
}
#sb_instagram .sbi_follow_btn {
    position: absolute;
    top: 50%;
	left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a,
.ig-block .instagallery-actions .igact-instalink {
	padding: 14px 20px;
    border-radius: 4px;
    background: #ffffff;
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #111111;
    letter-spacing: 2px;
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#sb_instagram .sbi_follow_btn a:focus, 
#sb_instagram .sbi_follow_btn a:hover {
    outline: 0;
    box-shadow: none;
	background: #111111;
	color: #ffffff;
}
#sbi_images .sbi_photo_wrap {
	position: relative;
	overflow: hidden;
}
#sbi_images .sbi_photo_wrap img {
	display: block !important;
	-webkit-transform: scale(1) rotate(0);
	-ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#sbi_images .sbi_photo_wrap:hover img {
    -webkit-transform: scale(1.1) rotate(2deg);
    -ms-transform: scale(1.1) rotate(2deg);
    transform: scale(1.1) rotate(2deg);
}
/*-------------------------------------
#. EL: Animate Image
-------------------------------------*/
/*Animatin image 1*/
.animate-image-style1 .figure-holder {
    position: relative;
    z-index: 1;
}
.animate-image-style1 .figure-holder .animated-bg {
    position: absolute;
    z-index: -1;
    left: 5.125rem;
    top: 0;
}
.animate-image-style1 .figure-holder .animated-figure {
    text-align: right;
}
@media (max-width: 1199px) {
	.animate-image-style1 .figure-holder .animated-bg {
		left: -2rem;
	}
}
@media (max-width: 991px) {
	.animate-image-style1 .figure-holder .animated-figure {
		text-align: center;
	}
	.animate-image-style1 .figure-holder .animated-bg {
		display: none;
	}
}
/*Animatin image 2*/
.animate-image-style2 .figure-holder {
    position: relative;
    z-index: 1;
}
.animate-image-style2 .figure-holder .animated-bg {
    position: absolute;
    z-index: -1;
    left: 3.125rem;
    top: -3rem;
}
.animate-image-style2 .figure-holder .animated-figure {
    text-align: center;
    padding: 0 1.875rem;
}
@media (max-width: 1199px) {
	.animate-image-style2 .figure-holder .animated-bg {
		left: -2rem;
		top: -7rem;
	}
}
@media (max-width: 991px) {
	.animate-image-style2 .figure-holder .animated-bg {
		display: none;
	}
}
/*Animatin image 3*/
.animate-image-style3 .figure-holder {
    position: relative;
    z-index: 1;
}
.animate-image-style3 .figure-holder .animated-bg {
    position: absolute;
    z-index: 0;
    right: 0;
    left: 0;
    top: 0;
}
.animate-image-style3 .figure-holder .animated-bg svg {
    margin: 0 auto;
}
.animate-image-style3 .figure-holder .animated-figure {
    -webkit-mask-image: url(../img/svg2.svg);
    mask-image: url(../img/svg2.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    position: relative;
    display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
	.animate-image-style3 .figure-holder .animated-bg {
		left: -8rem;
		top: -8rem;
	}
	.animate-image-style3 .figure-holder .animated-bg svg {
		transform: scale(0.6);
	}
}
@media (max-width: 991px) {
	.animate-image-style3 .figure-holder .animated-bg {
		left: -2rem;
		top: -4rem;
	}
	.animate-image-style3 .figure-holder .animated-bg svg {
		transform: scale(0.8);
	}
}
@media (max-width: 767px) {
	.animate-image-style3 .figure-holder .animated-bg svg {
		display: none;
	}
}
/*Animatin image 4*/
.animate-image-style4 .figure-holder {
    position: relative;
    z-index: 1;
}
.animate-image-style4 .figure-holder .animated-bg {
    position: absolute;
    z-index: -1;
    left: 5.125rem;
    top: 0;
}
.animate-image-style4 .figure-holder .animated-figure {
    text-align: center;
}
/*Animatin image 5*/
.animate-image-style5 {
	text-align: center;
}
.animate-image-style5 .figure-holder {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 3.125rem 0;
}
.animate-image-style5 .figure-holder .inner-shape {
	list-style: none;
	margin: 0;
	padding: 0;
}
.animate-image-style5 .figure-holder .inner-shape li {
	position: absolute;
	z-index: 1;
}
.animate-image-style5 .figure-holder .inner-shape li:nth-child(1n) {
	left: inherit;
	bottom: inherit;
	right: 3.75rem;
	top: -2.5rem;
}
.animate-image-style5 .figure-holder .inner-shape li:nth-child(2n) {
	left: -0.125rem;
	bottom: 2.1875rem;
	right: inherit;
	top: inherit;
}
/*Animatin image 6*/
.animate-image-style6 .has-hover {
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.animate-image-style6:hover .has-hover {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}
/*-------------------------------------
#. EL: Animate Shape
-------------------------------------*/
.default-animate ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.animate-shape-style1 .animated-shape ul {
    position: relative;
    z-index: 1;
}
.animate-shape-style1 .animated-shape ul li {
    position: absolute;
	z-index: 0;
}
.animate-shape-style1 .animated-shape ul li:first-child {
    top: 22.75rem;
    left: 1.875rem;
    
}
.animate-shape-style1 .animated-shape ul li:last-child {
    top: 22.75rem;
    right: 1.875rem;
}
.animate-shape-style2 .animated-shape {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 20%;
	transform: translateY(40%);
}
.animate-shape-style2 .animated-shape svg {
    margin: 0 auto;
	text-align: center;
}
.animate-shape-style3 .animated-shape .image-shape {
    position: absolute;
    z-index: 0;
    right: 1.875rem;
	transform: translateY(100%);
}

.animate-shape-style4 .animated-shape-big li {
    position: absolute;
    z-index: 1;
    right: 1.875rem;
}
.animate-shape-style4 .animated-shape-small li {
	position: absolute;
	z-index: 1;
}
.animate-shape-style4 .animated-shape-small li:nth-child(1n) {
	top: 5rem;
	right: 20%;
	-webkit-animation: shape_one 30s alternate infinite linear;
    animation: shape_one 30s alternate infinite linear;
}
.animate-shape-style4 .animated-shape-small li:nth-child(2n) {
	top: 20rem;
	right: 10%;
	-webkit-animation: shape_two 30s alternate infinite linear;
    animation: shape_two 30s alternate infinite linear;
}
.animate-shape-style4 .animated-shape-small li:nth-child(3n) {
	top: 31rem;
	right: 30%;
	-webkit-animation: shape_three 30s alternate infinite linear;
    animation: shape_three 30s alternate infinite linear;
}

@keyframes shape_one {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -100px) rotate(36deg);
            transform: translate(73px, -100px) rotate(36deg);
  }
  50% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(144deg);
            transform: translate(40px, -72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_two {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
            transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
            transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
            transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
            transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes shape_three {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
            transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
            transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
            transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
            transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

.animate-shape-style5 .animated-shape {
    position: absolute;
    z-index: 0;
    right: -10%;
	transform: translateY(-50%);
}
.animate-shape-style6 .animated-shape ul li {
    position: absolute;
    z-index: 0;
    right: 0;
	transform: translateY(20%);
}
.animate-shape-style7 .animated-shape {
    position: absolute;
    z-index: 0;
    right: 0;
    transform: translateY(13%);
}
.animate-shape-style8 .animated-shape {
    position: relative;
    z-index: 1;
}
.animate-shape-style8 .animated-shape li {
    position: absolute;
    z-index: 0;
    right: -1.875rem;
	transform: translateY(50%);
}
.animate-shape-style9 .animated-shape .animated-bg {
    position: absolute;
    z-index: 0;
    right: 0;
    left: 0;
    top: -6.125rem;
}
@media(max-width: 1199px) {
	.animate-shape-style9 .animated-shape .animated-bg {
		top: -4.125rem;
	}
}
.animate-shape-style9 .animated-shape .animated-bg svg {
    text-align: center;
    margin: 0 auto;
}
.animate-shape-style10 .animated-shape li {
    position: absolute;
}
.animate-shape-style10 .animated-shape li svg {
	transform: scaleX(1.28);
}
.animate-shape-style10 .animated-shape li:nth-child(1n) {
    top: -1.875rem;
    left: inherit;
    bottom: inherit;
}
.animate-shape-style10 .animated-shape li:nth-child(2n) {
    left: -18.75rem;
    right: inherit;
    transform: translateY(50%);
}
.animate-shape-style10 .animated-shape li:nth-child(3n) {
    left: -15.625rem;
    right: inherit;
    transform: translateY(72%);
}
.animate-shape-style10 .animated-shape li stop:first-child {
	stop-color: #5a49f8;
}
.animate-shape-style10 .animated-shape li stop:last-child {
	stop-color: #750ed5;
}
@media(max-width: 1440px) {
	.animate-shape-style10 .animated-shape li:nth-child(1n) {
		left: -20%;
	}
}
@media(max-width: 1199px) {
	.animate-shape-style10 .animated-shape li:nth-child(1n) {
		left: -55%;
	}
}
@media(max-width: 992px) {
	.animate-shape-style10 .animated-shape li:nth-child(1n) {
		left: -107%;
	}
}
@media(max-width: 767px) {
	.animate-shape-style10 .animated-shape {
		display: none;
	}
}
.animate-shape-style11 .animated-shape li {
    position: absolute;
    top: -5.9375rem;
    right: -8rem;
}
.animate-shape-style11 .animated-shape li:first-child svg path {
	fill: rgb(75, 26, 252);
}
.animate-shape-style11 .animated-shape li stop:first-child {
	stop-color: rgb(72,10,231);
}
.animate-shape-style11 .animated-shape li stop:last-child {
	stop-color: rgb(127,6,238);
}

@media(max-width: 1440px) {
	.animate-shape-style11 .animated-shape li {
		right: -16rem;
	}
}
@media(max-width: 1199px) {
	.animate-shape-style11 .animated-shape li {
		right: -35rem;
	}
}
@media(max-width: 992px) {
	.animate-shape-style11 .animated-shape li {
		right: -45rem;
	}
}
@media(max-width: 767px) {
	.animate-shape-style11 .animated-shape {
		display: none;
	}
}
.animate-shape-style12 .animated-shape {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
}
.animate-shape-style12 .animated-buble li {
    position: absolute;
    z-index: 0;
}
.animate-shape-style12 .animated-buble li:nth-child(1n) {
    top: -14.375rem;
    left: -13.75rem;
    right: inherit;
    bottom: inherit;
}
.animate-shape-style12 .animated-buble li:nth-child(2n) {
    top: -4.625rem;
    left: 9.0625rem;
    right: inherit;
    bottom: inherit;
}
.animate-shape-style12 .animated-buble li:nth-child(3n) {
    top: -9.375rem;
    left: 50%;
    right: inherit;
    bottom: inherit;
}
@media(max-width: 767px) {
	.animate-shape-style12 {
		display: none;
	}
}
.animate-shape-style13 .shape-point li {
    color: #c2c2c2;
}
.animate-shape-style13 .shape-point .start-point {
    position: absolute;
    z-index: 1;
    top: -0.4375rem;
    left: 0;
}
.animate-shape-style13 .shape-point .end-point {
    position: absolute;
    z-index: 1;
    top: -0.3125rem;
    right: 0;
}
.animate-shape-style13 .has-animation svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.animate-shape-style13 .has-animation svg .dashed1 {
	stroke-dashoffset: 1300;
}
.animate-shape-style13 .has-animation svg .dashed1 {
	stroke-dasharray: 1300;
}
.animate-shape-style13 .has-animation svg .dashed2 {
	stroke-dasharray: 4;
}
@-webkit-keyframes dash_animation {
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes dash_animation {
	to {
		stroke-dashoffset: 0;
	}
}
.animate-shape-style13 .has-animation.active-animation svg .dashed1 {
	-webkit-animation: dash_animation 4s linear forwards;
    animation: dash_animation 4s linear forwards;
}
@media only screen and (max-width: 1200px) {
	.animate-shape-style13 svg {
		top: 2px;
		left: -87px;
		transform: scaleX(0.84);
	}
}
@media only screen and (max-width: 990px) {
	.animate-shape-style13 {
		display: none;
	}
}
.animate-shape-style14 .animated-shape {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
}
.animate-shape-style14 .animated-buble li {
    position: absolute;
    z-index: 0;
}
.animate-shape-style14 .animated-buble li:nth-child(1n) {
    top: -14.375rem;
    left: -13.75rem;
    right: inherit;
    bottom: inherit;
}
.animate-shape-style14 .animated-buble li:nth-child(2n) {
    top: -4.625rem;
    left: 9.0625rem;
    right: inherit;
    bottom: inherit;
}
.animate-shape-style14 .animated-buble li:nth-child(3n) {
    top: -9.375rem;
    left: 50%;
    right: inherit;
    bottom: inherit;
}
@media(max-width: 767px) {
	.animate-shape-style14 {
		display: none;
	}
}
.animate-shape-style14 .animated-shape-small ul li {
	position: absolute;
	z-index: 0;
}
.animate-shape-style14 .animated-shape-small ul li:nth-child(1n) {
	top: 150px;
	right: 60%;
	-webkit-animation: shape_one 30s alternate infinite linear;
	animation: shape_one 30s alternate infinite linear;
}
.animate-shape-style14 .animated-shape-small ul li:nth-child(2n) {
	top: 100px;
	right: 40%;
	-webkit-animation: shape_two 30s alternate infinite linear;
	animation: shape_two 30s alternate infinite linear;
}
.animate-shape-style14 .animated-shape-small ul li:nth-child(3n) {
	top: 150px;
	right: 20%;
	-webkit-animation: shape_three 30s alternate infinite linear;
	animation: shape_three 30s alternate infinite linear;
}
.animate-shape-style14 .animated-shape-small ul li:nth-child(4n) {
	top: 200px;
	right: 5%;
	-webkit-animation: shape_four 30s alternate infinite linear;
	animation: shape_four 30s alternate infinite linear;
}
.animate-shape-style14 .animated-shape-small ul li:nth-child(5n) {
	top: 500px;
	right: 60%;
	-webkit-animation: shape_five 30s alternate infinite linear;
	animation: shape_five 30s alternate infinite linear;
}
.animate-shape-style14 .animated-shape-small ul li:nth-child(6n) {
	top: 550px;
	right: 50%;
	-webkit-animation: shape_six 30s alternate infinite linear;
	animation: shape_six 30s alternate infinite linear;
}
/*-------------------------------------
#. EL: Three Image
-------------------------------------*/
.rt-image .figure-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.rt-image .figure-holder .mask-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 180px;
    width: 180px;
    background: -o-linear-gradient(205deg, #7a64f2 0%, #5a49f8 100%);
    background: linear-gradient(245deg, #7a64f2 0%, #5a49f8 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.rt-image .figure-holder .mask-text .rtin-year {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: 500;
}
.rt-image .figure-holder .mask-text p {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.3;
}
.rt-image .figure-holder .left-holder {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.rt-image .figure-holder .right-holder {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.rt-image .figure-holder img {
    margin-bottom: 15px;
    border-radius: 5px;
}
/*-------------------------------------
#. EL: Divider
-------------------------------------*/
.rtin-divider .divide-bar {
    position: relative;
}
.rtin-divider .divide-bar {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    direction: ltr;
}
/*-------------------------------------
#. EL: Elementor css
-------------------------------------*/
.elementor-widget-wp-widget-rt-post-box {
	background-color: #f9fbfe;
	padding: 2.5rem 2.8125rem;
}
.elementor-widget-wp-widget-rt-post-box .post-box-style .media-body h3 {
	font-size: 1rem;
	font-weight: 500;
}
.elementor-widget-wp-widget-rt-post-box .post-box-style .media-body h3 a {
	color: #444444;
}
.elementor-widget-wp-widget-rt-post-box .post-box-style .rt-news-box-widget {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
}
.elementor-widget-google_maps iframe {
	border-radius: 4px;
}
/*-------------------------------------
#. EL: Pagepiling css
-------------------------------------*/
#pp-nav.right {
  right: 6.25rem !important;
}
#pp-nav ul li {
	height: 0.9375rem;
	margin: 0;
}
#pp-nav ul li a span {
	width: 1.875rem;
	border-radius: 0.25rem;
	height: 0.1875rem;
	border: 0;
	right: 0;
	left: inherit;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#pp-nav ul li a.active span {
	width: 2.5rem;
	background-color: rgba(255, 255, 255, 1);
}
.pp-section.section {
    min-height: 100vh;
}
.pp-section.section {
    overflow-x: hidden;
	overflow-y: auto;
    height: 100%;
}
.pagepiling-wrapper {
	position: relative;
	min-height: 100vh;
}
.pagepiling-wrapper .scroll-wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    width: 100%;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 992px) {
	#pp-nav {
		display: none;
	}
	html,
	body.pagepiling-animation {
		overflow: inherit !important;
	}
}
/*---------------------------------------
#. EL: Content Toggle
---------------------------------------*/
.rtel-content-toggle ul.nav {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
}
.rtel-content-toggle ul.nav.nav-tabs {
  border: none;
}
.rtel-content-toggle ul.nav.nav-tabs .nav-link {
  z-index: 1;
  background-color: #e4effd;
  position: relative;
  border-radius: 20px;
  border: none;
  color: #1d2124;
  font-size: 18px;
  font-weight: 500;
  position: relative
}
.rtel-content-toggle ul.nav.nav-tabs .nav-item:nth-child(2) .nav-link {
  padding: 7px 25px 7px 40px;
  margin-left: -30px;
}
.rtel-content-toggle ul.nav.nav-tabs .nav-item:nth-child(2) .nav-link.active {
  margin-left: 0;
  margin-right: 0;
  padding: 7px 25px;
}
.rtel-content-toggle ul.nav.nav-tabs .nav-item:nth-child(1) .nav-link {
  padding: 7px 40px 7px 25px;
  margin-left: 0px;
  margin-right: -30px;
}
.rtel-content-toggle ul.nav.nav-tabs .nav-item:nth-child(1) .nav-link.active {
  margin-left: 0;
  margin-right: 0;
  padding: 7px 25px;
}
.rtel-content-toggle ul.nav.nav-tabs .nav-item.show .nav-link,
.rtel-content-toggle ul.nav.nav-tabs .nav-link.active {
  z-index: 2;
  background-color: #5a49f8;
  color: #ffffff;
}
.rtel-content-toggle .tab-content {
	position: relative;
}
.rtel-content-toggle .tab-content .tab-pane {
	display: block;
    position: relative;
    opacity: 0;
    visibility: hidden;
	top: 0;
    left: 0;
    right: 0;
	transition: all 0.5s ease-in-out;
}
.rtel-content-toggle .tab-content .tab-pane.active {
	opacity: 1;
    visibility: visible;
	position: absolute;
	z-index: 10;
}
.rtel-content-toggle .opacity-animation {
	transition: none !important;
	transition-delay: none !important;
}
/*-------------------------------------
#. EL: Custom css
-------------------------------------*/
.element-side-title h5 {
    position: relative;
	font-size: 1.375rem;
    margin-bottom: 1.875rem;
    line-height: 2.25rem;
    z-index: 2;
}
.copy-right5 .elementor-text-editor {
	position: absolute;
    z-index: 1;
    bottom: 0;
    left: 1.875rem;
    color: #dcdcdc;
    font-weight: 300;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}
@media(max-width: 1439px) {
	.copy-right5 .elementor-text-editor {
		position: inherit;
		transform: inherit;
	}
}