
/*
 * Table of contents:
 *
 * 1--content-p-color
 * 2. Preloader style
 * 3. Colors
 * 4. Elements
 * 5. Navbar
 * 6. Forms
 * 7. Checkboxes & Radios
 * 8. Modals
 * 9. Accordion
 * 10. Gallery
 * 11. Navigation
 * 12. Hero sections
 * 13. Services sections
 * 14. Portfolio sections
 * 15. Blog sections
 * 16. Shop sections
 * 17. Media/Retina Ready
 *
 */

.cat{
	display: block;
}

:root {
	font-size: 16px;
    --blue: #cae8f3;
    --indigo: #331177;
    --purple: #8e44ad;
    --red: #e74c3c;
    --orange: #f39c12;
    --yellow: #F4D03F;
    --green: #2ecc71;
    --teal: #27ae60;
    --cyan: #16a085;
    --white: #fff;
    --gray: #bdc3c7;
    --gray-light: #d9dcde;
    --gray-dark: #95a5a6;
    --content-p-color: #02254b;
    --content-a-hover-color: #04437c;
    --success: #54d98c;
    --info: #1abc9c;
    --warning: #e67e22;
    --danger: #c0392b;
	--lighter: #f6f5f8;
    --light: #f0eff3;
	--light-2: #f0eff3;
	--light-3: #efedf5;
	--light-4: #e0ddec;
    --dark: #343a40;
    --dark-blue: #02254b;
    --darker: #141414;
    --black: #080808;
}

/*--content-p-color
================================================== */

body{
	overflow-x: hidden;
}

p{
    margin-bottom: 0.5rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
	margin-bottom: 0.5rem;
}
::selection {
	color: var(--white);
	background-color: var(--content-p-color);
}
::-moz-selection {
	color: var(--white);
	background-color: var(--content-p-color);
}
mark{
	color: var(--white);
	background-color: var(--content-p-color);
}
a:hover {
	text-decoration: none;
}

/* #Preloader style
================================================== */

.animsition-loading,
.animsition-loading:after {
	width: 36px;
	height: 36px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -18px;
	margin-left: -18px;
	z-index: 100;
}
.animsition-loading {
	opacity: .2;
	background-color: var(--content-p-color);
	border:none;
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}


/* #Progress back to top
================================================== */

.progress-wrap {
	position: fixed;
	right: 40px;
	bottom: 60px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\ebf2';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	color: var(--gray-dark);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\ebf2';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	opacity: 0;
	color: var(--content-p-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
	stroke: var(--content-p-color);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.red::before {
	color: var(--red);
}
.progress-wrap.orange::before {
	color: var(--orange);
}
.progress-wrap.blue::before {
	color: var(--blue);
}
.progress-wrap.purple::before {
	color: var(--purple);
}
.progress-wrap.indigo::before {
	color: var(--indigo);
}
.progress-wrap svg.progress-circle path.red {
	stroke: var(--red);
}
.progress-wrap svg.progress-circle path.orange {
	stroke: var(--orange);
}
.progress-wrap svg.progress-circle path.blue {
	stroke: var(--blue);
}
.progress-wrap svg.progress-circle path.purple {
	stroke: var(--purple);
}
.progress-wrap svg.progress-circle path.indigo {
	stroke: var(--indigo);
}


/* #Colors
================================================== */

.color-blue {
    color: var(--blue);
}
.color-indigo {
    color: var(--indigo);
}
.color-purple {
    color: var(--purple);
}
.color-red {
    color: var(--red);
}
.color-orange {
    color: var(--orange);
}
.color-yellow {
    color: var(--yellow);
}
.color-green {
    color: var(--green);
}
.color-teal {
    color: var(--teal);
}
.color-cyan {
    color: var(--cyan);
}
.color-white {
    color: var(--white);
}
.color-gray {
    color: var(--gray);
}
.color-gray-light {
    color: var(--gray-light);
}
.color-gray-dark {
    color: var(--gray-dark);
}
.colo--content-p-color {
    color: var(--content-p-color);
}
.color-secondary {
    color: var(--content-a-hover-color);
}
.color-success {
    color: var(--success);
}
.color-info {
    color: var(--info);
}
.color-warning {
    color: var(--warning);
}
.color-danger {
    color: var(--danger);
}
.color-lighter {
    color: var(--lighter);
}
.color-light {
    color: var(--light-2);
}
.color-light-2 {
    color: var(--light-3);
}
.color-dark {
    color: var(--dark);
}
.color-darker {
    color: var(--darker);
}
.color-dark-blue {
    color: var(--dark-blue);
}
.color-black {
    color: var(--black);
}
.bg-blue {
    background-color: var(--blue) ;
}
.bg-indigo {
    background-color: var(--indigo) ;
}
.bg-purple {
    background-color: var(--purple) ;
}
.bg-red {
    background-color: var(--red) ;
}
.bg-orange {
    background-color: var(--orange) ;
}
.bg-yellow {
    background-color: var(--yellow) ;
}
.bg-green {
    background-color: var(--green) ;
}
.bg-teal {
    background-color: var(--teal) ;
}
.bg-cyan {
    background-color: var(--cyan) ;
}
.bg-white {
    background-color: var(--white) ;
}
.bg-gray {
    background-color: var(--gray) ;
}
.bg-gray-light {
    background-color: var(--gray-light) ;
}
.bg-gray-dark {
    background-color: var(--gray-dark) ;
}
.b--content-p-color {
    background-color: var(--content-p-color) ;
}
.bg-secondary {
    background-color: var(--content-a-hover-color) ;
}
.bg-success {
    background-color: var(--success) ;
}
.bg-info {
    background-color: var(--info) ;
}
.bg-warning {
    background-color: var(--warning) ;
}
.bg-danger {
    background-color: var(--danger) ;
}
.bg-lighter {
    background-color: var(--lighter) ;
}
.bg-light {
    background-color: var(--light-2) ;
}
.bg-light-2 {
    background-color: var(--light-2) ;
}
.bg-light-3 {
    background-color: var(--light-3) ;
}
.bg-dark {
    background-color: var(--dark) ;
}
.bg-dark-blue {
    background-color: var(--dark-blue) ;
}
.bg-darker {
    background-color: var(--darker) ;
}
.bg-black {
    background-color: var(--black) ;
}
.bg-transparent {
    background-color: transparent ;
}
.border-blue {
    border-color: var(--blue) ;
}
.border-indigo {
    border-color: var(--indigo) ;
}
.border-purple {
    border-color: var(--purple) ;
}
.border-red {
    border-color: var(--red) ;
}
.border-orange {
    border-color: var(--orange) ;
}
.border-yellow {
    border-color: var(--yellow) ;
}
.border-green {
    border-color: var(--green) ;
}
.border-teal {
    border-color: var(--teal) ;
}
.border-cyan {
    border-color: var(--cyan) ;
}
.border-white {
    border-color: var(--white) ;
}
.border-gray {
    border-color: var(--gray) ;
}
.border-gray-light {
    border-color: var(--gray-light) ;
}
.border-gray-dark {
    border-color: var(--gray-dark) ;
}
.borde--content-p-color {
    border-color: var(--content-p-color) ;
}
.border-secondary {
    border-color: var(--content-a-hover-color) ;
}
.border-success {
    border-color: var(--success) ;
}
.border-info {
    border-color: var(--info) ;
}
.border-warning {
    border-color: var(--warning) ;
}
.border-danger {
    border-color: var(--danger) ;
}
.border-lighter {
    border-color: var(--lighter) ;
}
.border-light {
    border-color: var(--light-2) ;
}
.border-light-2 {
    border-color: var(--light-2) ;
}
.border-light-3 {
    border-color: var(--light-3) ;
}
.border-dark {
    border-color: var(--dark) ;
}
.border-dark-blue {
    border-color: var(--dark-blue) ;
}
.border-darker {
    border-color: var(--darker) ;
}
.border-black {
    border-color: var(--black) ;
}
.border-transparent {
    border-color: transparent ;
}
.bg-linear-indigo-purple {
	background-image: linear-gradient(298deg, var(--purple), var(--indigo));
}
.bg-linear-purple-red {
	background-image: linear-gradient(298deg, var(--red), var(--purple));
}
.bg-linear-red-orange {
	background-image: linear-gradient(298deg, var(--orange), var(--red));
}
.bg-linear-orange-yellow {
	background-image: linear-gradient(298deg, var(--yellow), var(--orange));
}
.bg-linear-yellow-green {
	background-image: linear-gradient(298deg, var(--green), var(--yellow));
}
.bg-linear-green-cyan {
	background-image: linear-gradient(298deg, var(--cyan), var(--green));
}
.bg-linear-cya--content-p-color {
	background-image: linear-gradient(298deg, var(--content-p-color), var(--cyan));
}
.bg-linea--content-p-color-warning {
	background-image: linear-gradient(298deg, var(--warning), var(--content-p-color));
}
.bg-linear-warning-danger {
	background-image: linear-gradient(298deg, var(--danger), var(--warning));
}
.bg-linear-danger-dark-blue {
	background-image: linear-gradient(298deg, var(--dark-blue), var(--danger));
}
.bg-linear-blu--content-p-color {
	background-image: linear-gradient(298deg, var(--content-p-color), var(--blue));
}
.bg-linear-indigo-dark-blue {
	background-image: linear-gradient(298deg, var(--dark-blue), var(--indigo));
}
.border-botto--content-p-color {
    border-bottom: 2px solid var(--content-p-color);
}
.color-box {
    position: relative;
	width: 100%;
	display: block;
    height: 60px;
}
.color-box::after {
    position: absolute;
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	display: block;
    content: '';
    top: -3px;
    left: -3px;
    border: 3px solid rgba(255,255,255,.8);
    z-index: -1;
	box-shadow: 0 6px 15px 0 rgba(12, 22, 17, 0.1);
}
.color-box p{
    line-height: 60px ;
}
.color-box.bg-yellow::after {
	box-shadow: 0 6px 15px 0 rgba(241,196,15,.4);
}
.color-box.bg-orange::after {
	box-shadow: 0 6px 15px 0 rgba(243,156,18,.4);
}
.color-box.bg-warning::after {
	box-shadow: 0 6px 15px 0 rgba(230,126,34,.4);
}
.color-box.bg-red::after {
	box-shadow: 0 6px 15px 0 rgba(231, 76, 60,.4);
}
.color-box.bg-danger::after {
	box-shadow: 0 6px 15px 0 rgba(192, 57, 43,.4);
}
.color-box.bg-success::after {
	box-shadow: 0 6px 15px 0 rgba(84, 218, 140,.4);
}
.color-box.bg-green::after {
	box-shadow: 0 6px 15px 0 rgba(65, 204, 113,.4);
}
.color-box.bg-teal::after {
	box-shadow: 0 6px 15px 0 rgba(54, 174, 95,.4);
}
.color-box.bg-info::after {
	box-shadow: 0 6px 15px 0 rgba(61, 188, 155,.4);
}
.color-box.bg-cyan::after {
	box-shadow: 0 6px 15px 0 rgba(51, 160, 133,.4);
}
.color-box.bg-gray::after {
	box-shadow: 0 6px 15px 0 rgba(189, 195, 199,.6);
}
.color-box.bg-gray-dark::after {
	box-shadow: 0 6px 15px 0 rgba(149, 164, 166,.4);
}
.color-box.bg-secondary::after {
	box-shadow: 0 6px 15px 0 rgba(108, 116, 125,.4);
}
.color-box.b--content-p-color::after {
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223,.4);
}
.color-box.bg-blue::after {
	box-shadow: 0 6px 15px 0 rgba(89, 139, 253,.4);
}
.color-box.bg-purple::after {
	box-shadow: 0 6px 15px 0 rgba(142, 68, 173,.4);
}
.color-box.bg-indigo::after {
	box-shadow: 0 6px 15px 0 rgba(51, 17, 119,.4);
}
.color-box.bg-dark-blue::after {
	box-shadow: 0 6px 15px 0 rgba(31, 32, 40,.4);
}

/* #Size
================================================== */

.size-12 {
    font-size: 12px;
}
.size-13 {
    font-size: 13px;
}
.size-14 {
    font-size: 14px;
}
.size-15 {
    font-size: 15px;
}
.size-16 {
    font-size: 16px;
}
.size-17 {
    font-size: 17px;
}
.size-18 {
    font-size: 18px;
}
.size-19 {
    font-size: 19px;
}
.size-20 {
    font-size: 20px;
}
.size-21 {
    font-size: 21px;
}
.size-22 {
    font-size: 22px;
}
.size-23 {
    font-size: 23px;
}
.size-24 {
    font-size: 24px;
}
.size-25 {
    font-size: 25px;
}
.size-26 {
    font-size: 26px;
}
.size-27 {
    font-size: 27px;
}
.size-28 {
    font-size: 28px;
}
.size-29 {
    font-size: 29px;
}
.size-30 {
    font-size: 30px;
}
.size-40 {
    font-size: 40px;
}
.size-50 {
    font-size: 50px;
}

/* #Elements
================================================== */

.section {
    position: relative;
	width: 100%;
	display: block;
}
.section-1400{
    position: relative;
	width: 100%;
	max-width: 1430px;
	display: block;
	margin: 0 auto;
}
.over-hide {
    overflow: hidden;
}
.over-initial {
    overflow: initial ;
}
.full-height {
	height: 100vh;
}
.min-full-height {
	min-height: 100vh;
}
.height-90 {
	height: 90vh;
}
.height-85 {
	height: 85vh;
}
.height-80 {
	height: 80vh;
}
.height-70 {
	height: 70vh;
}
.height-60 {
	height: 60vh;
}
.height-50 {
	height: 50vh;
}
.padding-top-bottom {
	padding-top: 100px;
	padding-bottom: 100px;
}
.padding-top {
	padding-top: 100px;
}
.padding-bottom {
	padding-bottom: 100px;
}
.padding-top-bottom-120 {
	padding-top: 120px;
	padding-bottom: 120px;
}
.padding-top-120 {
	padding-top: 120px;
}
.padding-bottom-120 {
	padding-bottom: 120px;
}
.padding-top-bottom-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.padding-top-80 {
	padding-top: 80px;
}
.padding-bottom-80 {
	padding-bottom: 80px;
}
.opacity-0 {
	opacity: 0 ;
}
.opacity-20 {
	opacity: 0.2 ;
}
.font-weight-100 {
	font-weight: 100 ;
}
.font-weight-200 {
	font-weight: 200 ;
}
.font-weight-300 {
	font-weight: 300 ;
}
.font-weight-400 {
	font-weight: 400 ;
}
.font-weight-500 {
	font-weight: 500 ;
}
.font-weight-600 {
	font-weight: 600 ;
}
.font-weight-700 {
	font-weight: 700 ;
}
.font-weight-800 {
	font-weight: 800 ;
}
.font-weight-900 {
	font-weight: 900 ;
}
.box-shadow-15 {
	box-shadow: 0 6px 15px 0 rgba(12, 22, 17, 0.1);
}
.text-line-through {
	text-decoration: line-through;
}
.img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}
.blockquote {
    margin-bottom: 0;
    padding: 20px 0;
    padding-left: 40px;
    border-left: 4px solid var(--content-p-color);
}
.blockquote::after {
    font-family: 'unicons';
    content: "\e91e";
    position: absolute;
    top: 0;
    color: var(--content-a-hover-color);
    left: 30px;
    z-index: -1;
    font-size: 70px;
    text-align: center;
    width: 80px;
    line-height: 1;
    opacity: 0.1;
}
.blockquote.text-right {
    padding-left: 0;
    padding-right: 40px;
    border-left: none;
    border-right: 4px solid var(--content-p-color);
}
.blockquote.text-right::after {
    left: auto;
    right: 30px;
}
.blockquote.text-center {
    padding-left: 0;
    padding-bottom: 30px;
    border-left: none;
}
.blockquote.text-center::after {
    left: 50%;
    margin-left: -40px;
}
.blockquote.text-center::before{
    content: '';
    position: absolute;
    bottom: 0;
    height: 4px;
    width: 60px;
    background-color: var(--content-p-color);
    left: 50%;
    margin-left: -30px;
}
.blockquote p{
    font-size: 18px;
    line-height: 1.55;
}
.blockquote-footer {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    color: var(--content-p-color);
}
.blockquote-footer::before {
    font-family: 'unicons';
    content: "\e84b";
    padding-right: 10px;
}
.list-style {
    padding: 0;
    margin: 0;
    list-style: none;
}
.list-style ul{
    padding-left: 35px;
    margin: 0;
    list-style: none;
    margin-top: 7px;
}
.list-style li{
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 7px;
}
.list-arrow li::before{
    font-family: 'unicons';
    content: "\e84b";
    padding-right: 10px;
    color: var(--content-p-color);
}
.list-circle li::before{
    font-family: 'unicons';
    content: "\e8da";
    padding-right: 10px;
    color: var(--content-p-color);
    webkit-transform: scale(.7);
    transform: scale(.7);
    display: inline-block;
}
.list-square li::before{
    font-family: 'unicons';
    content: "\ebab";
    padding-right: 10px;
    color: var(--content-p-color);
    webkit-transform: scale(.7);
    transform: scale(.7);
    display: inline-block;
}
.list-star li::before{
    font-family: 'unicons';
    content: "\ebae";
    padding-right: 10px;
    color: var(--content-p-color);
    webkit-transform: scale(.7);
    transform: scale(.7);
    display: inline-block;
}
.list-heart li::before{
    font-family: 'unicons';
    content: "\ea4a";
    padding-right: 10px;
    color: var(--content-p-color);
    webkit-transform: scale(.7);
    transform: scale(.7);
    display: inline-block;
}
code {
    font-size: 14px;
    color: var(--orange);
    word-break: break-word;
}
pre {
    margin: 0;
    padding: 30px;
    background-image: linear-gradient(298deg, var(--indigo), var(--dark-blue));
    overflow: auto;
    display: block;
    font-size: 14px;
    color: var(--gray);
}
.alert {
    position: relative;
    padding: 15px 25px;
    margin-bottom: 0;
    border: none;
}
.aler--content-p-color {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--blue), var(--content-p-color));
}
.alert-secondary {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--gray-dark), var(--content-a-hover-color));
}
.alert-success {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--cyan), var(--success));
}
.alert-danger {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--red), var(--danger));
}
.alert-warning {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--yellow), var(--warning));
}
.alert-info {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--success), var(--info));
}
.alert-light {
    color: var(--gray-dark);
    background-image: linear-gradient(45deg, var(--light), rgba(193, 198, 202, .5));
}
.alert-dark {
    color: var(--white);
    background-image: linear-gradient(45deg, var(--content-a-hover-color), var(--dark-blue));
}
.alert-dismissible {
    padding-right: 40px;
}
.alert-dismissible .close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
    text-shadow: none;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}
.alert-dismissible .close.dark {
    color: var(--dark-blue);
}
.alert-dismissible .close:active,
.alert-dismissible .close:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
.btn{
	height: auto;
	-webkit-transition: all 200ms linear ;
    transition: all 200ms linear ;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
}

.btn:disabled{opacity: 0.65;}

.btn:active,
.btn:focus{
	box-shadow: none;
}

.text-center-v{
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

/* #Navbar
================================================== */

.navbar{
	padding: 0;
	margin: 0;
}
.navbar-toggler {
	float: right;
	border: none;
	padding: 0;
    transition: color 300ms linear;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 18px;
	background-image: none;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 2px;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
	width: 18px;
	left: 6px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
    transition: all 300ms linear;
}

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

.form-group{
	position: relative;
	display: block;
    margin: 0;
    padding: 0;
}
.form-style {
	font-weight: 400;
	line-height: 22px;
	outline: none;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-style.dark-version {
	color: var(--light-2);
	background-color: var(--black);
}
.form-style.dark-blue-version {
	color: var(--light-2);
	background-color: var(--dark-blue);
}
.form-style.gray-version {
	color: var(--dark-blue);
	background-color: var(--light-2);
}
.no-border {
	border: none ;
}
.form-group.just-line-light .form-style{
	padding: 13px 0;
	height: 48px;
	font-size: 15px;
	background-color: transparent;
    border: none;
	color: var(--gray);
	font-weight: 700;
	border-bottom: 2px solid var(--content-a-hover-color);
}
.form-group.just-line-light .form-style:focus,
.form-group.just-line-light .form-style:active {
	border-color: var(--content-p-color);
	outline: none;
	box-shadow: none;
}
.form-style.search {
	padding: 10px 0;
	height: auto;
	font-weight: 700;
	font-size: 7.5vw;
	color: var(--dark);
	background-color: transparent;
    border: none;
    border-bottom: 3px solid rgba(200, 200, 200, .4);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-style.search:focus,
.form-style.search:active {
	border-color: var(--content-p-color);
	outline: none;
	box-shadow: none;
}
.form-style.form-textarea {
	height: auto;
}
.form-style:focus,
.form-style:active {
	border-color: var(--content-p-color);
	outline: none;
	box-shadow: 0 4px 8px 0 rgba(21,21,21,.03);
}
.form-group input:-ms-input-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input::-moz-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:-moz-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input::-webkit-input-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:-ms-input-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea::-moz-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:-moz-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea::-webkit-input-placeholder  {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus:-ms-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus::-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus:-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:focus::-webkit-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:focus:-ms-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:focus::-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:focus:-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:focus::-webkit-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:active:-ms-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:active::-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:active:-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group input:active::-webkit-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:active:-ms-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:active::-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:active:-moz-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-group textarea:active::-webkit-input-placeholder  {
	opacity: 0;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-style.big {
	padding: 18px 20px;
	height: 60px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
    border: none;
	box-shadow: 0px 10px 30px -5px rgba(149, 164, 175, 0.3);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.form-style.dark-version.big {
	box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.2);
}
.form-style.dark-version.big:focus,
.form-style.dark-version.big:active {
	box-shadow: 0px 40px 70px -5px rgba(0, 0, 0, 0.4);
}
.form-style.dark-blue-version.big {
	box-shadow: 0px 10px 30px -5px rgba(149, 164, 175, 0.2);
}
.form-style.dark-blue-version.big:focus,
.form-style.dark-blue-version.big:active {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.form-style.big.form-textarea {
	height: auto;
}
.form-style.big.form-style-with-icon {
	padding-left: 60px;
}
.form-style.big:focus,
.form-style.big:active {
	border: none;
	outline: none;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.form-style.big.with-border {
    border: 1px solid var(--gray-light);
}
.form-style.big.with-border:focus,
.form-style.big.with-border:active {
    border: 1px solid var(--content-p-color);
}
.form-style.no-shadow {
	box-shadow: none;
}
.form-style.no-shadow:focus,
.form-style.no-shadow:active {
	box-shadow: none;
}
.input-icon {
	position: absolute;
	top: 0;
	left: 20px;
	height: 48px;
	font-size: 24px;
	line-height: 48px;
	text-align: left;
	color: var(--content-p-color);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.input-icon.big {
	height: 60px;
	line-height: 60px;
}
.form-style-with-icon {
	padding-left: 55px;
}


#contact-feedback {
	position: absolute;
	left: 0;
	bottom: -50px;
	font-size: 13px;
	width: 100%;
	z-index: 3;
}
#contact-feedback.success {
	color: var(--content-p-color);
}
#contact-feedback.error {
	color: var(--red);
}

#contact-message-feedback {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 15px;
	line-height: 24px;
	width: 100%;
	text-align: center;
	z-index: 3;
    transition: all 300ms linear;
}
#contact-message-feedback.success {
	color: var(--content-p-color);
    transition: all 300ms linear;
}
#contact-message-feedback.error {
	color: var(--red);
    transition: all 300ms linear;
}

.choose-file {
    position: relative;
    overflow: hidden;
    display: block;
}
.choose-file.avatar {
    background-image: url('../img/t1.jpg');
	background-size: cover;
	background-position: top center;
}
.choose-file::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e9cd';
    width: 100%;
    text-align: center;
    z-index: -1;
    left: 0;
    top: 30px;
    font-size: 22px;
    color: var(--content-p-color);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.choose-file.avatar::before {
    z-index: 2;
}
.choose-file input[type=file] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    font-size: 15px;
    cursor: pointer;
    z-index: 4;
}
.choose-file label {
    border: 1px dashed rgba(200, 200, 200, .5);
    padding: 35px 20px;
    padding-top: 70px;
    display: block;
    text-align: center;
    z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.choose-file.avatar label {
    margin: 0;
	background-color: rgba(21,21,21,0.4);
}
.choose-file.avatar:hover label {
	background-color: rgba(21,21,21,0.6);
}
.choose-file:hover label {
    border-color: var(--content-p-color);
}
.choose-file.colored-bg label {
    background-color: rgba(200, 200, 200, .2);
    border: none;
}
.choose-file.colored-bg:hover label {
    background-color: var(--content-p-color);
    color: var(--white);
}
.choose-file.colored-bg::before {
    z-index: 3;
}
.choose-file.colored-bg:hover::before {
    color: var(--white);
}
.nice-select {
	-webkit-tap-highlight-color: var(--white);
	background-color: var(--white) ;
    border: 1px solid rgba(200, 200, 200, .5) ;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	overflow: hidden;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.5px;
	outline: none;
	color: rgba(149,165,166,.7);
	outline: none;
	padding: 12px 20px;
	height: 48px;
	position: relative;
	text-align: left ;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
	white-space: nowrap;
	width: auto;
}
.select-big .nice-select {
	padding: 18px 20px;
	height: 60px;
	font-size: 16px;
	line-height: 24px;
	color: var(--dark-blue);
	font-weight: 500;
    border: none;
	box-shadow: 0px 10px 30px -5px rgba(149, 164, 175, 0.2);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.select-big.checkout .nice-select {
	color: rgba(149,165,166,.7);
	padding-left: 60px;
}
.select-big.with-border .nice-select {
    border: 1px solid var(--gray-light);
}
.select-big .nice-select .list {
	color: rgba(149,165,166,1);
	max-height: 230px;
}
.nice-selec--content-p-color-style {
	-webkit-tap-highlight-color: var(--content-p-color);
	background-color: var(--content-p-color) ;
    border: none ;
	color: var(--white);
	padding: 13px 20px;
}
.nice-select.open {
	overflow: visible;
	background-color: var(--white);
	border: none;
}
.select-big .nice-select.open{
	border: none;
	outline: none;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.select-big.with-border .nice-select.open {
    border: 1px solid var(--content-p-color) ;
}
.nice-select:hover {
	background-color: var(--white);
	border: none;
}
.nice-select:after {
    border-bottom: 2px solid var(--gray-dark);
    border-right: 2px solid var(--gray-dark);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.nice-selec--content-p-color-style:after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
}
.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}
.nice-select.disabled {
    border-color: var(--gray);
	color: var(--black);
    pointer-events: none;
	border: none;
}
.nice-select.disabled:after {
    border-color: var(--gray);
	border: none;
}
.nice-select.wide {
	width: 100%;
	border: none;
}
.nice-select.wide .list {
    left: 0 ;
    right: 0 ;
	border: none;
}
.nice-select.right {
    float: right;
	border: none;
}
.nice-select.right .list {
    left: auto;
    right: 0;
	border: none;
}
.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
	border: none;
}
.nice-select.small:after {
    height: 4px;
    width: 4px;
	border: none;
}
.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
	border: none;
}
.nice-select .list {
    background-color: var(--white);
	color: rgba(149,165,166,.7);
    box-sizing: border-box;
    margin-top: 3px;
    opacity: 0;
    overflow: hidden;
    overflow-y: auto;
	max-height: 220px;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,0.08);
    padding: 0;
    pointer-events: none;
    position: absolute;
	width: 100%;
	left: 0;
	margin-left: 0;
    top: 100%;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
    -webkit-transition: all 0.3s linear, opacity 0.2s ease-out;
    transition: all 0.3s linear, opacity 0.2s ease-out;
    z-index: 9;
	border: none ;
}

.nice-select .list::-webkit-scrollbar {
	width: 5px;
}
.nice-select .list::-webkit-scrollbar-track {
	background-color: var(--light);
}
.nice-select .list::-webkit-scrollbar-thumb {
	background-color: var(--gray);
}
.nice-select .list::-webkit-scrollbar-thumb:hover {
	background-color: var(--gray);
}
.nice-select .list:hover .option:not(:hover) {
}
.nice-selec--content-p-color-style .list::-webkit-scrollbar-track {
	background-color: var(--light);
}
.nice-selec--content-p-color-style .list::-webkit-scrollbar-thumb {
	background-color: var(--content-p-color);
}
.nice-selec--content-p-color-style .list::-webkit-scrollbar-thumb:hover {
	background-color: var(--content-p-color);
}
.nice-select .option {
    cursor: pointer;
    list-style: none;
	font-size: 14px;
	padding-top: 11px;
	padding-bottom: 11px;
    outline: none;
    padding-left: 20px;
    padding-right: 15px;
    text-align: left;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
	background-color: var(--white);
	border: none;
}
.nice-select .option.focus {
	background-color: var(--light);
	border: none;
}
.nice-select .option.selected.focus {
	background-color: var(--light);
	border: none;
}
.nice-select .option:hover {
    color: var(--white);
	background-color: var(--content-p-color);
	border: none;
}
.nice-select .option.selected {
	background-color: var(--gray);
}
.nice-select .option.selected:hover {
    color: var(--bali-hai);
}
.nice-select .option.disabled {
    background-color: transparent;
	color: var(--black);
    cursor: default;
	border: none;
}
.no-csspointerevents .nice-select .list {
	display: none;
}
.no-csspointerevents .nice-select.open .list {
	display: block;
}

/* #Modals
================================================== */

.modal-content {
	width: 100%;
	max-width: 580px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: subpixel-antialiased;
}
.modal-body .close {
	position: absolute;
	width: 54px;
	height: 34px;
	top: 20px;
	right: 20px;
	padding: 0;
	margin: 0;
	opacity: 1;
	line-height: 34px;
	font-size: 18px;
	text-shadow: none;
	font-weight: normal;
	background-color: transparent;
	color: var(--gray-dark);
	cursor: pointer;
	z-index: 100;
    transition: all 200ms linear;
}
.modal-body .close:hover {

}
.modal-body .close:active,
.modal-body .close:focus{
	border: none;
	outline: none;
	box-shadow: none;
}
.modal-dialog {
	position: absolute;
	width: auto;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 580px;
	margin: 0;
	padding: 0;
    max-height: 100vh;
}
.modal.fade .modal-dialog {
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform: translate(-50%, -55%);
	transform: translate(-50%, -55%);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
	}
}
.modal {
	z-index: 1121050;
	margin: 0;
	padding: 0;
}
.modal-backdrop {
	z-index: 1121040;
	background-color: var(--dark);
}
.modal-backdrop.show {
	opacity: 0.4;
}
.modal.show .modal-dialog {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.modal-body {
	margin: 0;
	padding: 60px 35px;
	padding-bottom: 50px;
}
.modal-header {
	border: none;
	margin: 0;
	padding: 0;
}
.modal-content {
	poasition: relative;
	overflow: hidden;
	border: none;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
	margin: 0;
	padding: 0;
	background-color: var(--white);
}
.modal-footer {
	border-top: none;
	margin: 0;
	padding: 0;
}

.modal-search .modal-body {
	min-height: 100vh;
}
.modal-search .modal-content {
	max-width: 100%;
	background-color: rgba(255,255,255,.95);
}
.modal-search .modal-dialog {
	max-width: 100%;
}

.modal-small .modal-content {
	max-width: 420px;
}
.modal-small .modal-dialog {
	max-width: 420px;
}

.modal-large .modal-content {
	max-width: 920px;
}
.modal-large .modal-dialog {
	max-width: 920px;
}

/* #Accordion
================================================== */

.accordion > .card {
	background-color: #fff;
	border: 1px solid rgba(21, 21, 21, 0.14);
	margin-bottom: 10px;
}
.accordion > .card .card-header {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border: none;
}
.accordion > .card .card-body {
	padding: 20px;
	padding-top: 0;
}
.accordion > .card:not(:first-of-type) .card-header:first-child {
}
.accordion > .card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 1px solid rgba(21, 21, 21, 0.14);
}
.accordion > .card:first-of-type {
	border-bottom: 1px solid rgba(21, 21, 21, 0.14);
}
.accordion > .card:last-of-type {
	margin-bottom: 0;
}
.accordion.accordion-shadow-2 > .card:not(:first-of-type):not(:last-of-type),
.accordion.accordion-shadow-2 > .card:first-of-type,
.accordion.accordion-shadow-2 > .card {
	border: none;
}

.btn-accordion {
	position: relative;
	display: block;
	width: 100%;
	padding: 12px 20px;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.4px;
	font-size: 16px;
	line-height: 24px;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.accordion.accordion-shadow-2 > .card .btn-accordion {
	letter-spacing: 0.2px;
	font-size: 17px;
	line-height: 24px;
	padding: 20px 30px;
	font-weight: 700;
}
.accordion.accordion-shadow-2 > .card .card-body {
	padding: 30px;
	padding-top: 10px;
}
.btn-accordion::before,
.btn-accordion::after {
	position: absolute;
	display: block;
	width: 13px;
	height: 1px;
	content: '';
	right: 20px;
	top: 25.5px;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.accordion.accordion-shadow-2 > .card .btn-accordion::before,
.accordion.accordion-shadow-2 > .card .btn-accordion::after {
	top: 31.5px;
	right: 25px;
}
.btn-accordion[aria-expanded="false"]::after {
	transform: rotate(90deg);
}
.btn-accordion[aria-expanded="false"]::before {
	transform: rotate(180deg);
}

/* #Gallery
================================================== */

.gallery-wrap {
	position: relative;
	display: block;
	width: 100%;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.gallery-wrap:hover {
	box-shadow: 0 6px 15px 0 rgba(31, 32, 40,.1);
}
.gallery-mask {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(14,14,14,.6);
	opacity: 0;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.gallery-wrap:hover .gallery-mask {
	opacity: 1;
}
.gallery-icon {
	position: absolute;
	display: block;
	width: 100%;
	height: 30px;
	top: 50%;
	left: 0;
	z-index: 1;
	margin-top: -15px;
	line-height: 30px;
	text-align: center;
}

/* #Table
================================================== */

.table{
	font-size: 15px;
	width: 100%;
	line-height: 24px;
	border: 1px solid rgba(12,12,12,.08);
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.table th{
    font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
}
.table td{
	font-size: 14px;
	letter-spacing: 0.5px;
	border: none;
	border-right: 1px solid rgba(12,12,12,.08);
	border-bottom: 1px solid rgba(12,12,12,.08);
	padding: 8px 20px;
}
.table td:last-of-type {
	border-right: none;
}
.table tr{
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.table-hover tbody tr:hover {
    background-color: var(--dark-blue);
	color: var(--white);
}
.table thead th {
	border: none;
	border-right: 1px solid rgba(12,12,12,.08);
	border-bottom: 1px solid rgba(12,12,12,.08);
	padding: 12px 20px;
}
.table thead th:last-of-type {
	border-right: none;
}
.table-responsive::-webkit-scrollbar {
	width: 5px ;
}
.table-responsive::-webkit-scrollbar-track {
	background-color: var(--gray);
}
.table-responsive::-webkit-scrollbar-thumb {
	background-color: var(--content-p-color);
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
	background-color: var(--dark-blue);
}

/* #Breadcrumb
================================================== */

.breadcrumb {
	padding: 0;
	margin-bottom: 0;
	list-style: none;
	border: 1px solid rgba(12,12,12,.08);
}
.breadcrumb-item + .breadcrumb-item {
	padding-left: 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
	padding-right: 10px;
	content: "\f054";
}
.breadcrumb.no-border {
	border: none;
}

/* #Tooltip
================================================== */

.tooltip-templates {
	display: none;
}
.tooltip-templates img {
	width: 100%;
	height: auto;
	display: block;
}
.tooltipster-sidetip .tooltipster-content {
	color: var(--dark-blue);
	padding: 0;
	width: 100%;
	max-width: 500px;
}
.tooltipster-sidetip .tooltipster-content img {
	width: 100%;
	height: auto;
	display: block;
}
.tooltipster-sidetip .tooltipster-box {
	background: var(--white);
	border: none;
	overflow: hidden;
	box-shadow: 0px 22px 62px rgba(44, 43, 43, 0.2);
}
.tooltipster-update-fade {
	animation: tooltipster-fading 200ms;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: var(--white);
	top: 0;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: var(--white);
	left: 0;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: var(--white);
	left: 0;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: var(--white);
	top: 0;
}
.tooltipster-sidetip .tooltipster-arrow-border {
	border: none;
}

/* #Navigation
================================================== */

.cbp-af-header {
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.header-transparent {
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	background-color: transparent;
	border-bottom: 1px solid rgba(21,21,21,0.05);
}
.cbp-af-header.header-transparent.cbp-af-header-shrink {
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	border-bottom: none;
}
.cbp-af-header.cbp-af-header-shrink {
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .padding-on-scroll{
    margin-top: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .navbar-brand{
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .nav-item{
    margin: 15px 20px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
/* .cbp-af-header.cbp-af-header-shrink .nav-link{
    margin-top: 8px;
    margin-bottom: 8px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
} */

/* #Float Navigation
================================================== */

.cbp-af-header.header-float {
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	max-width: 1400px;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 20px;
	box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5) ;
}
.cbp-af-header.header-float.cbp-af-header-shrink {
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	max-width: 100%;
	left: 0;
	transform: translateX(0);
	margin-top: 0;
}
.cbp-af-header.header-float .padding-on-scroll{
	padding-top: 0;
	padding-bottom: 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.header-float.cbp-af-header-shrink .padding-on-scroll{
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.cbp-af-header.header-float .dropdown-menu {
	margin-top: 20px;
}
.cbp-af-header.header-float .mega-menu-dropdown{
	margin-top: 0;
}

.nav-border-bottom {
	border-bottom: 1px solid rgba(21,21,21,0.05);
}
.nav-border-bottom-light {
	border-bottom: 1px solid rgba(221,221,221,0.1);
}

.padding-on-scroll{
	padding-top: 15px;
	padding-bottom: 15px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}
.navbar{
	padding: 0;
}
.navbar-brand{
	position: relative;
	display: block;
    margin: 0;
    padding: 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-brand img{
	height: 100%;
    width: auto;
	display: block;
    margin: 0;
    padding: 0;
}
.navbar-toggler {
	float: right;
	border: none;
	padding: 0;
    transition: color 300ms linear;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 16px;
	height: 18px;
	background-image: none;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
    margin-right: 7px;
	border-bottom: 2px solid var(--dark);
    transform: translateX(8px);
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before{
	width: 16px;
	position: absolute;
	height: 2px;
	background-color: var(--dark);
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transform: translateX(-8px);
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: translateX(-8px) rotate(45deg);
	width: 24px;
	left: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translate(-8px, 8px) rotate(-45deg);
	width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
    transition: all 300ms linear;
}
.nav-item{
	position: relative;
    margin: 20px;
    padding: 0;
    display: inline-block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.nav-link{
    position: relative;
	font-size: 16px;
	font-weight: 500;
    line-height: 20px;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 ;
    display: inline-block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.one-page-nav .nav-link.mPS2id-highlight{
	color: var(--content-p-color) ;
}
.one-page-nav .nav-link.mPS2id-highlight::before,
.one-page-nav .nav-link.mPS2id-highlight::before{
    bottom: -8px;
    opacity: 1;
}

.one-page-side-nav-for-scroll .link.mPS2id-highlight{
	color: var(--content-p-color) ;
}


.nav-item .dropdown-menu {
	transform: translate3d(0, 5px, 0);
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	display: block;
	padding: 0;
	margin: 0;
	pointer-events: none;
	transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	max-height: 9999px;
	transform: translate3d(0, 0px, 0);
}

.nav-item.show .dropdown-menu .nav-item .dropdown-menu {
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
	pointer-events: none;
    transform: translate3d(0, 5px, 0);
}
.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	pointer-events: auto;
	max-height: 999px;
    transform: translate3d(0, 0, 0);
}
@media (min-width: 1200px) {
	.nav-item .dropdown-menu .nav-item .dropdown-menu.drop-right-sub,
	.nav-item .dropdown-menu .nav-item.show .dropdown-menu.drop-right-sub,
	.nav-item.show .dropdown-menu .nav-item .dropdown-menu.drop-right-sub,
	.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu.drop-right-sub {
		right: -100%;
		left: auto;
	}
	.nav-item .dropdown-menu .nav-item .dropdown-menu.drop-left-sub,
	.nav-item .dropdown-menu .nav-item.show .dropdown-menu.drop-left-sub,
	.nav-item.show .dropdown-menu .nav-item .dropdown-menu.drop-left-sub,
	.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu.drop-left-sub {
		left: -100%;
	}
}
.nav-item .dropdown-menu .nav-item.show .dropdown-menu::before {
	display: none;
}
.dropdown-menu {
	padding: 8px 0;
	min-width: 226px;
	margin: 0;
	margin-top: 35px;
	border: none;
	/* border-top: 2px solid var(--content-p-color); */
}
.dropdown-menu .nav-item{
    margin: 0;
    padding: 0;
	display: block;
	width: 100%;
}
.cbp-af-header.cbp-af-header-shrink .dropdown-menu .nav-item{
    margin: 0;
    padding: 0;
	display: block;
}
.dropdown-menu::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 40px;
	left: 0;
	top: -40px;
}
.cbp-af-header.cbp-af-header-shrink .dropdown-menu {
	margin-top: 20px;
}
.cbp-af-header.cbp-af-header-shrink .dropdown-menu::before {
	height: 25px;
	top: -25px;
}
.mega-menu-dropdown-link{
	position: static;
}
.mega-menu-dropdown{
	width: 100%;
	max-width: 1400px;
	margin-top: 15px;
}
.full-width-mega-menu .mega-menu-dropdown{
	width: 100%;
	max-width: 100%;
}
.mega-menu-dropdown.full-width{
	max-width: 100%;
}
.cbp-af-header.cbp-af-header-shrink .mega-menu-dropdown{
	margin-top: 5px;
}
.dropdown-item {
	display: block;
	width: 100%;
	padding: 8px 20px;
	clear: both;
	font-size: 15px;
	line-height: 26px;
    letter-spacing: 0.4px;
    font-weight: 500;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	text-decoration: none;
	border: 0;
	transition: all 200ms linear;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-ms-flex-pack: center;
}
.dropdown-item:hover{
	padding-left: 23px;
}
.dropdown-item.active{
	background-color: transparent;
}
.dropdown-item::after {
	padding: 10px 20px;
	opacity: 0;
    transition: all 400ms linear;
}
.dropdown-item:hover::after {
	opacity: 1;
}
.dropdown-item:hover, .dropdown-item:focus {
    letter-spacing: 0.4px;
    font-weight: 600;
	text-decoration: none;
	background-color: transparent;
}
.dropdown-item.drop-left-sub::before,
.dropdown-item.drop-right-sub::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e82f';
	right: 10px;
	top: 12px;
	z-index: 4;
	font-size: 19px;
	line-height: 19px;
	color: var(--gray);
}

/* #Overlay Navigation
================================================== */

.nav-but-wrap{
	position: relative;
	display: inline-block;
	padding-left: 15px;
	padding-top: 15px;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: block;
}
.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: var(--white);
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 30px;
}
.nav-overlay {
	position: fixed;
	z-index: 98;
}
.nav-overlay:before, .nav-overlay:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(20, 21, 26,0.4);
	border-bottom-left-radius: 200%;
	z-index: -1;
	-webkit-transform: translateX(100%) translateY(-100%);
          transform: translateX(100%) translateY(-100%);
}
.nav-overlay:after {
	background: var(--dark-blue);
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav-overlay:before {
	-webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav-overlay-social {
	position: absolute;
	bottom: -100px;
	transform: translateY(30px);
	width: 100%;
	text-align: center;
	z-index: 1;
	opacity: 0;
    transition: all 250ms linear;
}
.nav__content {
	position: fixed;
	visibility: hidden;
	top: 50%;
	margin-top: 40px;
	-webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
	width: 100%;
	text-align: center;
}
.nav__list {
	position: relative;
	padding: 0;
	margin: 0;
	z-index: 2;
}
.nav__list-item {
	position: relative;
	display: block;
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
	opacity: 0;
	text-align: center;
	color: #fff;
	overflow: hidden;
	font-size: 8vh;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 3px;
	-webkit-transform: translate(100px, 0%);
          transform: translate(100px, 0%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
	margin-top: 0;
	margin-bottom: 0;
}
.nav__list-item a{
	position: relative;
	text-decoration: none;
	color: rgba(255,255,255,0.6);
	overflow: hidden;
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	z-index: 2;
	display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list-item a:after{
	position: absolute;
	content: '';
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 0;
	opacity: 0;
	margin-top: 3px;
	background-color: var(--content-p-color);
	z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list-item a:hover:after{
	height: 20px;
	opacity: 0.7;
}
.nav__list-item a:hover{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{
	height: 20px;
	opacity: 0.7;
}
body.nav-active .nav__content {
	visibility: visible;
}
body.nav-active .menu-icon__line {
	background-color: #fff;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}
body.nav-active .nav-overlay {
	visibility: visible;
}
body.nav-active .nav-overlay:before, body.nav-active .nav-overlay:after {
	-webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
}
body.nav-active .nav-overlay:after {
	-webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav-overlay:before {
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
	opacity: 1;
	-webkit-transform: translateX(0%);
          transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav-overlay-social {
	opacity: 1;
	transform: translateY(0);
	-webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(0) {
	-webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
body.nav-active .nav__list-item:nth-child(1) {
	-webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(2) {
	-webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(3) {
	-webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(4) {
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(5) {
	-webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(6) {
	-webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(7) {
	-webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(8) {
	-webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(9) {
	-webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(10) {
	-webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

/* #Side navigation
================================================== */

.side-nav-wrap {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	height: 100vh;
	z-index: 1000;
	width: 100px;
}
.side-nav-wrap.top-position {
	height: auto;
	width: 100%;
}
.side-nav-wrap.top-position.cbp-af-header {
	background-color: transparent;
	padding: 20px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	border-bottom: 1px solid rgba(23,23,23,0.05);
}
.side-nav-wrap.top-position.cbp-af-header.cbp-af-header-shrink {
	background-color: var(--white);
	padding: 12px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	border-color: transparent;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}
.side-nav-wrap.top-position.cbp-af-header.dark-version {
	background-color: transparent;
	padding: 20px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.side-nav-wrap.top-position.cbp-af-header.dark-version.cbp-af-header-shrink {
	background-color: var(--dark-blue);
	padding: 12px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	border-color: transparent;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}
.side-nav-wrap.top-position.cbp-af-header.cbp-af-header-shrink img {
	width: 50px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.side-nav-wrap.top-position img {
	width: 55px;
	height: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}

.section-side-nav-background-1 {
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top left;
	background-image: url('../img/logo-background-1.png');
}

.side-nav-wrap img {
	width: 60px;
	height: auto;
	display: block;
	margin: 0 auto;
	text-align: center;
}
.side-nav-wrap .nav-but-wrap{
	position: relative;
	display: block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.side-nav-wrap .menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	text-align: center;
}
.side-nav-wrap .menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: var(--dark-blue);
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.side-nav-wrap .menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.side-nav-wrap .menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.side-nav-wrap .menu-icon:hover .menu-icon__line-left,
.side-nav-wrap .menu-icon:hover .menu-icon__line-right {
	width: 30px;
}


.modal.show#modalNavigation ~ .side-nav-wrap .menu-icon__line,
.modal.show#modalNavigation ~ .section .menu-icon__line {
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
.modal.show#modalNavigation ~ .side-nav-wrap .menu-icon__line-left,
.modal.show#modalNavigation ~ .section .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
.modal.show#modalNavigation ~ .side-nav-wrap .menu-icon__line-right,
.modal.show#modalNavigation ~ .section .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
.modal.show#modalNavigation ~ .side-nav-wrap .menu-icon:hover .menu-icon__line-left,
.modal.show#modalNavigation ~ .side-nav-wrap .menu-icon:hover .menu-icon__line-right,
.modal.show#modalNavigation ~ .section .menu-icon:hover .menu-icon__line-left,
.modal.show#modalNavigation ~ .section .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}



body.modal-open {
}
.modal-side-nav .modal-body {
	min-height: 100vh;
}
.modal-side-nav .modal-content {
	max-width: 100%;
}
.modal-side-nav .modal-dialog {
	max-width: 100%;
	width: 360px;
	top: 0;
	left: 0;
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}
.modal.fade.modal-side-nav .modal-dialog {
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade.modal-side-nav .modal-dialog {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}
.modal.show.modal-side-nav .modal-dialog {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.modal-side-nav .modal-body {
	margin: 0;
	padding: 30px 0;
}
.logo-side-nav img {
	width: 50px;
	height: auto;
	display: block;
}
.close-side-nav {
	position: absolute;
	display: block;
	top: 40px;
	right: 30px;
	padding: 0;
	border: none;
	outline: none;
	box-shadow: none;
	width: 30px;
	height: 30px;
	z-index: 4000;
	background: transparent;
}
.close-side-nav::after,
.close-side-nav::before {
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--white);
	z-idex: 4;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.close-side-nav::after {
	transform: rotate(45deg);
}
.close-side-nav::before {
	transform: rotate(-45deg);
}
.close-side-nav:hover::after,
.close-side-nav:hover::before {
	transform: rotate(0);
}
.close-side-nav:active,
.close-side-nav:focus {
	border: none;
	outline: none;
	box-shadow: none;
}

.side-nav-link-col .uil {
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.side-nav-link-col[aria-expanded="true"] .uil:last-child {
	transform: rotate(90deg);
}
.side-nav-link-col{
	color: var(--light-2) ;
	margin-bottom: 5px;
}
.side-nav-link-col:hover{
	color: var(--content-p-color) ;
}
.side-nav-link-col[aria-expanded="true"] {
	color: var(--content-p-color) ;
}
.side-nav-collapse-wrap {
	padding: 0 15px;
}

.modal-side-nav .link.active {
	color: var(--content-p-color) ;
}


/* #Services sections
================================================== */

.services-wrap-1 img{
	width: 60px;
	height: auto;
	display: block;
}
.services-wrap-2 img{
	width: 50px;
	height: auto;
	display: block;
}
.service-back-text{
	position: absolute;
	display: block;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
	font-weight: 100;
	font-size: 80px;
	line-height: 80px;
}

.section-box-icon {
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
}

.services-wrap-3 {
	overflow: hidden;
	background-color: var(--white);
    transition: all 250ms linear;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.5);
}
.services-wrap-3:hover {
	background-color: var(--content-p-color);
	transform: translateY(-3px);
}
.services-wrap-3.ver-blog-pages {
	box-shadow: none;
	height: 234px;
}
.services-wrap-3.ver-blog-pages:hover {
	transform: translateY(0);
}
.services-wrap-3.ver-blog-pages-2 {
	box-shadow: none;
	height: 468px;
}
.services-wrap-3.ver-blog-pages-2:hover {
	transform: translateY(0);
}
.services-wrap-3.light-version {
	background-color: var(--light);
	box-shadow: none;
}
.services-wrap-3.light-version:hover {
	background-color: var(--content-p-color);
	transform: translateY(-3px);
}
.services-wrap-3 .uil {
	color: var(--content-p-color);
    transition: all 250ms linear;
}
.services-wrap-3:hover .uil {
	color: var(--white);
}
.services-wrap-3 h5,
.services-wrap-3 h6,
.services-wrap-3 p {
    transition: all 250ms linear;
}
.services-wrap-3:hover h5,
.services-wrap-3:hover h6,
.services-wrap-3:hover p {
	color: var(--white);
}

.services-wrap-3-back-dots {
	background-image: url('../img/background-19.svg');
	background-repeat: no-repeat;
	background-size: 450px auto;
	background-position: left 140px;
}
.services-wrap-3-back-dots-green {
	background-image: url('../img/background-19-green.svg');
	background-repeat: no-repeat;
	background-size: 450px auto;
	background-position: right 140px;
}
.services-wrap-3.bg-yellow h5,
.services-wrap-3.bg-yellow h6,
.services-wrap-3.bg-yellow p,
.services-wrap-3.bg-yellow .uil {
	color: var(--white);
}
.services-wrap-3.bg-yellow:hover h5,
.services-wrap-3.bg-yellow:hover h6,
.services-wrap-3.bg-yellow:hover p,
.services-wrap-3.bg-yellow:hover .uil {
	color: var(--white);
}
.services-wrap-3.bg-yellow:hover {
	background-color: var(--content-p-color) ;
}
.services-wrap-3.bg-purple h5,
.services-wrap-3.bg-purple h6,
.services-wrap-3.bg-purple p,
.services-wrap-3.bg-purple .uil {
	color: var(--white);
}
.services-wrap-3.bg-purple:hover h5,
.services-wrap-3.bg-purple:hover h6,
.services-wrap-3.bg-purple:hover p,
.services-wrap-3.bg-purple:hover .uil {
	color: var(--white);
}
.services-wrap-3.bg-purple:hover {
	background-color: var(--content-p-color) ;
}
.services-wrap-3.bg-red h5,
.services-wrap-3.bg-red h6,
.services-wrap-3.bg-red p,
.services-wrap-3.bg-red .uil {
	color: var(--white);
}
.services-wrap-3.bg-red:hover h5,
.services-wrap-3.bg-red:hover h6,
.services-wrap-3.bg-red:hover p,
.services-wrap-3.bg-red:hover .uil {
	color: var(--white);
}
.services-wrap-3.bg-red:hover {
	background-color: var(--content-p-color) ;
}
.services-wrap-3.bg-blue h5,
.services-wrap-3.bg-blue h6,
.services-wrap-3.bg-blue p,
.services-wrap-3.bg-blue .uil {
	color: var(--white);
}
.services-wrap-3.bg-blue:hover h5,
.services-wrap-3.bg-blue:hover h6,
.services-wrap-3.bg-blue:hover p,
.services-wrap-3.bg-blue:hover .uil {
	color: var(--white);
}
.services-wrap-3.bg-blue:hover {
	background-color: var(--content-p-color) ;
}
.services-wrap-3.b--content-p-color h5,
.services-wrap-3.b--content-p-color h6,
.services-wrap-3.b--content-p-color p,
.services-wrap-3.b--content-p-color .uil {
	color: var(--white);
}
.services-wrap-3.b--content-p-color:hover h5,
.services-wrap-3.b--content-p-color:hover h6,
.services-wrap-3.b--content-p-color:hover p,
.services-wrap-3.b--content-p-color:hover .uil {
	color: var(--white);
}
.services-wrap-3.bg-orange h5,
.services-wrap-3.bg-orange h6,
.services-wrap-3.bg-orange p,
.services-wrap-3.bg-orange .uil {
	color: var(--white);
}
.services-wrap-3.bg-orange:hover h5,
.services-wrap-3.bg-orange:hover h6,
.services-wrap-3.bg-orange:hover p,
.services-wrap-3.bg-orange:hover .uil {
	color: var(--white);
}
.services-wrap-3.bg-orange:hover {
	background-color: var(--content-p-color) ;
}

.services-wrap-3.process {
	overflow: initial;
}
.services-wrap-3.process::before {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	height: 0;
	right: -70px;
	z-index: 2;
	border-top: 3px dashed var(--gray);
	width: 50px;
    transition: all 250ms linear;
}
.services-wrap-3.process-2 {
	overflow: initial;
}
.services-wrap-3.process-2::before {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	height: 0;
	right: -100px;
	z-index: 2;
	border-top: 3px dashed var(--gray);
	width: 80px;
    transition: all 250ms linear;
}
.services-wrap-3.process-2.light-border::before,
.services-wrap-3.process.light-border::before {
	border-color: var(--gray-light);
}
.services-wrap-3.process:hover::before,
.services-wrap-3.process-2:hover::before {
	transform: translateY(3px);
}
.services-wrap-3 .service-back-text {
    transition: all 250ms linear;
}
.services-wrap-3:hover .service-back-text {
    color: var(--white) ;
}


.swiper-process-1-thumbs .services-wrap-3 {
	cursor: pointer;
}
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 h5,
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 h6,
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 p,
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 .uil {
	color: var(--white);
}
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 {
	background-color: var(--content-p-color) ;
}

.facts-hover-section {
    transition: all 250ms linear;
}
.facts-hover-section:hover {
	background-color: var(--content-p-color) ;
	transform: translateY(-3px);
}
.facts-hover-section h5,
.facts-hover-section p {
    transition: all 250ms linear;
}
.facts-hover-section:hover h5,
.facts-hover-section:hover p {
	color: var(--white) ;
}

/* #Portfolio sections
================================================== */

.portfolio-wrap-1 {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
    transition: all 250ms linear;
}
.portfolio-wrap-1:hover {
	box-shadow: 0 6px 28px rgba(23, 23, 23, 0.15);
}
.portfolio-wrap-1.no-shadow:hover {
	box-shadow: none;
}
.portfolio-wrap-1 h6 {
    transition: all 250ms linear;
}
.portfolio-wrap-1:hover h6 {
    padding-left: 10px;
}
.portfolio-wrap-1 h6 {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
}
.portfolio-wrap-1 h6::before {
	position: absolute;
	display: block;
	content: '';
	bottom: 0;
	left: 0;
	z-index: 2;
	height: 2px;
	width: 0;
	background-color: var(--content-p-color);
    transition: all 250ms linear;
}
.portfolio-wrap-1:hover h6::before {
	width: 70px;
	left: 10px;
}
.portfolio-wrap-1 p{
	position: absolute;
	display: block;
	width: calc(100% - 60px);
	bottom: 25px;
	left: 30px;
	letter-spacing: 1px;
	z-index: 4;
    transition: all 250ms linear;
}
.portfolio-wrap-1 .lead{
	font-size: 17px;
}
.port-wrap-text{
	position: absolute;
	display: block;
	width: calc(100% - 60px);
	top: 25px;
	left: -10px;
	letter-spacing: 1px;
	z-index: 4;
	opacity: 0;
	font-size: 17px;
	line-height: 26px;
	font-weight: 500;
    transition: all 250ms linear;
}
.portfolio-wrap-1:hover .port-wrap-text{
	opacity: 1;
	left: 30px;
}
.wrap-mask {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
	background-color: var(--dark-blue);
    transition: all 250ms linear;
}
.wrap-mask-black {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
	background-color: var(--black);
    transition: all 250ms linear;
}
.portfolio-wrap-1:hover .wrap-mask {
	opacity: .8;
}
.port-v-line {
	border-right: 2px solid var(--gray-light);
}
.portfolio-wrap-2 {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 50px;
    transition: all 250ms linear;
}
.portfolio-wrap-2:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
	transform: translateY(-5px);
}
.portfolio-wrap-2.no-shadow {
	box-shadow: none ;
}
.portfolio-wrap-2.no-shadow .portfolio-wrap-2-text {
	box-shadow: none ;
}
.portfolio-wrap-2:hover .wrap-mask {
	opacity: .4;
}
.portfolio-wrap-2:hover .wrap-mask-black {
	opacity: .7;
}
.portfolio-wrap-2-text {
	position: absolute;
	display: block;
	overflow: hidden;
	padding: 15px 0;
	z-index: 30;
	bottom: -50px;
	left: 15px;
	width: calc(100% - 30px);
	background-color: var(--white);
	box-shadow: 0 13px 50px rgba(0,0,0,.1);
    transition: all 250ms linear;
}
.portfolio-wrap-2:hover .portfolio-wrap-2-text {
	bottom: -40px;
}

.portfolio-wrap-2.ver-2 {
	margin-bottom: 0;
    transition: all 250ms linear;
}
.portfolio-wrap-2.ver-2 .section {
    transition: all 250ms linear;
}
.portfolio-wrap-2.ver-2:hover .section {
	transform: scale(1.04);
}
.portfolio-wrap-2.ver-2 .portfolio-wrap-2-text {
	bottom: auto;
    transition: all 250ms linear;
	background-color: transparent;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	box-shadow: none;
	opacity: 0;
}
.portfolio-wrap-2.ver-2:hover .portfolio-wrap-2-text {
	opacity: 1;
	transform: translate3d(0, -50%, 40px);
}

.filter-wrapper-mix{
	position: relative;
	margin: 0 auto;
	max-width: 100%;
	width: 1430px;
	display: block;
}
@media (min-width: 1200px) {
	.filter-wrapper-mix.bigger-gap{
		width: 1460px;
	}
	.mix.bigger-gap{
		padding: 0 30px;
	}
}
.filter-wrapper-mix.fullwidth{
	width: calc(100% - 30px);
}
.filter-wrapper-mix.fullwidth-wide{
	width: 100%;
}
.filter-wrapper-mix:after {
	content: '';
	display: block;
	clear: both;
}
.mix{
	position: relative;
	float: left;
	display: inline-block;
	box-sizing: border-box;
	overflow: hidden;
	width: calc(33.3333333333% - 0.5px);
	padding: 0 15px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.mix.mix-1-col{
	width: calc(100% - 0.5px);
}
.mix.mix-2-col{
	width: calc(50% - 0.5px);
}
.mix.mix-3-col{
	width: calc(33% - 0.5px);
}
.mix.mix-4-col{
	width: calc(25% - 0.5px);
}
.mix.mix-5-col{
	width: calc(20% - 0.5px);
}
.mix.mix-6-col{
	width: calc(16.666666666666% - 0.5px);
}

.filter-wrapper-mix.portfolio-1400{
	max-width: 100%;
	width: 1430px;
}
.filter-wrapper-mix.portfolio-1400.with-gutter{
	max-width: 100%;
	width: 1400px;
}
.filter-wrapper-mix.portfolio-1400.with-gutter.mixed-fix{
	max-width: 100%;
	width: 1404px;
	-webkit-transform: translateX(2px);
    transform: translateX(2px);
}
.portfolio-wrap-columns {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
    transition: all 250ms linear;
}
.portfolio-wrap-columns .wrap-mask-black {
	background-color: var(--dark-blue);
}
.portfolio-wrap-columns:hover .wrap-mask-black {
	opacity: .7;
}

.mix.poftfolio-showcase{
	width: calc(33.3333333333%);
	padding: 0;
	margin: 0;
	-webkit-transform: translateX(1px);
    transform: translateX(1px);
	margin-left: -1px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.mix.showcase-2-col{
	width: 50%;
	-webkit-transform: translateX(3px);
    transform: translateX(3px);
	margin-left: -3px;
}
.mix.showcase-4-col{
	width: 25%;
}

.portfolio-wrap-center-section {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	z-index: 20;
	opacity: 0;
	margin-top: 50px;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}
.portfolio-wrap-columns:hover .portfolio-wrap-center-section {
	opacity: 1;
	margin-top: 0;
}
.swiper-portfolio-slider-in .swiper-pagination {
	position: absolute ;
	bottom: auto ;
	top: 20px ;
	left: 20px ;
	text-align: left ;
}
.swiper-portfolio-slider-in .swiper-pagination span {
}
.swiper-portfolio-slider-in .swiper-pagination-bullet {
    width: 8px;
	background-color: var(--light);
}
.swiper-portfolio-slider-in .swiper-pagination-bullet:hover {
	background-color: var(--content-p-color);
}
.swiper-portfolio-slider-in .swiper-pagination-bullet-active:hover,
.swiper-portfolio-slider-in .swiper-pagination-bullet-active {
	width: 30px;
	background-color: var(--content-p-color);
}

.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.typed i{
	color: var(--gray-light);
}
.typed-cursor{
	color: var(--gray-light);
	-webkit-animation: 0.7s blink step-end infinite;
	-moz-animation: 0.7s blink step-end infinite;
	-ms-animation: 0.7s blink step-end infinite;
	-o-animation: 0.7s blink step-end infinite;
	animation: 0.7s blink step-end infinite;
}
@keyframes "blink" {
	from, to {
		color: transparent;
	}
	50% {
		color: var(--gray-light);
	}
}
@-webkit-keyframes "blink" {
	from, to {
		color: transparent;
	}
	50% {
		color: var(--gray-light);
	}
}


/* #Portfolio Slice Reveal
================================================== */

.scroll-img {
	width: 800px;
	max-width: 100%;
	min-width: 200px;
	height: 40vh;
	min-height: 250px;
	background-size: cover;
	overflow: hidden;
}
.uncover__img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}
.uncover__slices {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}
.uncover__slices--vertical {
	flex-direction: row;
}
.uncover__slices--horizontal {
	flex-direction: column;
}
.uncover__slices--horizontal-double {
	display: grid;
	grid-template-columns: 50% 50%;
}
.uncover__slices--vertical-double {
	display: grid;
	grid-template-rows: 50% 50%;
}
.uncover__slice {
	color: var(--white);
	background-color: var(--white);
	flex: 1;
}
.hover-portfolio-box .scroll-img:after{
	position: absolute;
	background-color: var(--dark-blue);
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.hover-portfolio-box:hover .scroll-img:after{
	opacity: 0.7;
}
.hover-portfolio-box p{
	position: absolute;
	bottom: 25px;
	left: 25px;
	color: var(--light-2);
	font-size: 16px;
	line-height: 16px;
	font-style: italic;
	opacity: 0;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	cursor: pointer;
	letter-spacing: 3px;
	margin: 0;
	padding: 0;
	z-index: 3;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.hover-portfolio-box:hover p{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.hover-portfolio-box h5{
	position: absolute;
	bottom: 25px;
	right: 25px;
	color: var(--white);
	line-height: 1;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
	cursor: pointer;
	margin: 0;
	padding: 0;
	z-index: 4;
	letter-spacing: 1px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.hover-portfolio-box:hover h5{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}


.hover-portfolio-box .blog-date-slice {
	position: absolute;
	top: 25px;
	right: 25px;
	line-height: 1;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	cursor: pointer;
	margin: 0;
	padding: 7px 15px;
	z-index: 8;
	font-size: 13px;
	line-height: 1.65;
	font-weight: 600;
	letter-spacing: 0.2px;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.hover-portfolio-box:hover .blog-date-slice {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.blog-wrap-2{
	border-top: 1px solid rgba(32,32,32,.08);
}
.blog-wrap-2 img{
	width: 50px;
	height: auto;
	display: block;
}

.blog-wrap-3{
	overflow: hidden;
}
.blog-wrap-3-mask{
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--dark-blue);
	opacity: 0.4;
	z-index: 1;
    transition: all 250ms linear;
}
.blog-wrap-3:hover .blog-wrap-3-mask{
	opacity: 0.8;
}
.blog-wrap-3-text{
	position: absolute;
	display: block;
	left: 0;
	bottom: 30px;
	padding: 0 30px;
	width: 100%;
	z-index: 4;
	transform: translateY(55px);
    transition: all 250ms linear;
}
.blog-wrap-3:hover .blog-wrap-3-text{
	transform: translateY(0);
}
.blog-wrap-3.ver-2-blog-pages .blog-wrap-3-text{
	transform: translateY(0);
	bottom: 20px;
	padding: 0 20px;
}
.blog-wrap-3-link{
	transform: translateY(20px);
	opacity: 0;
}
.blog-wrap-3:hover .blog-wrap-3-link{
	transform: translateY(0);
	opacity: 1;
}
.blog-wrap-3-tag{
	transform: translateY(-25px);
	opacity: 0;
}
.blog-wrap-3:hover .blog-wrap-3-tag{
	transform: translateY(0);
	opacity: 1;
}
.blog-wrap-3-tag:nth-child(2){
	transition: opacity 0.5s, transform 0.5s, background-color 0.25s, color 0.25s;
}
.blog-wrap-3-tag:nth-child(3){
	transition: opacity 0.7s, transform 0.7s, background-color 0.25s, color 0.25s;
}
.blog-wrap-3-tag:nth-child(4){
	transition: opacity 0.9s, transform 0.9s, background-color 0.25s, color 0.25s;
}
.blog-wrap-3-tag:nth-child(5){
	transition: opacity 1.1s, transform 1.1s, background-color 0.25s, color 0.25s;
}

.blog-wrap-4{
    transition: all 250ms linear;
	box-shadow: 0px 40px 100px -5px rgba(149, 164, 175, 0.4);
}
.blog-wrap-4:hover{
	transform: translateY(-4px);
}
.blog-wrap-4.no-shadow-version{
	box-shadow: none;
}
@media (min-width: 1700px) {
	.blog-wrap-4.no-shadow-version img{
		width: 350px;
	}
}
.blog-wrap-4 img{
	width: 220px;
	height: auto;
	display: block;
    transition: all 250ms linear;
}
.blog-wrap-4 img:hover{
	opacity: 0.7;
}
.blog-wrap-4.full-img img{
	width: 100%;
	margin-bottom: 30px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.blog-wrap-4.small{
	box-shadow: none;
}
.blog-wrap-4.small:hover{
	transform: translateY(0);
}
.blog-wrap-4.small img{
	width: 120px;
}

.blog-section-gradient-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 55vh;
	background-image: linear-gradient(to top, rgba(20,20,20,0), rgb(20,20,20));
	pointer-events: none;
	z-index: 25;
}
.blog-section-gradient-top-light {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45vh;
	background-image: linear-gradient(to top, rgba(255,255,255,0), rgb(255,255,255));
	pointer-events: none;
	z-index: 25;
}
.blog-filter-button {
	position: fixed;
	bottom: 50px;
	left: 50px;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background-color: var(--content-p-color);
	color: var(--white);
	z-index: 24;
	cursor: pointer;
    transition: all 250ms linear;
}
.blog-filter-button:hover {
	background-color: var(--dark);
	color: var(--white);
}
.bg-blog-filter {
	background-color: rgba(20,20,20,0.8) ;
}
.bg-blog-filter-light {
	background-color: rgba(255,255,255,0.9) ;
}

.blog-mix-wrap{
	display: none;
}
.blog-mix-wrapper{
	-webkit-backface-visibility: hidden;
}
.blog-mix-wrapper:after{
	content: '';
	display: inline-block;
	width: 100%;
}
.btn-filter-tag{
	padding: 0;
	background-color: transparent;
	color: var(--light-2);
	height: auto;
	font-size: 40px;
	font-weight: 800;
}
.btn-filter-tag.light{
	color: var(--dark);
}
.btn-filter-tag:hover{
	padding: 0;
	background-color: transparent;
	color: var(--content-p-color);
	height: auto;
	font-size: 40px;
	font-weight: 800;
}
.btn-filter-tag.active{
	color: var(--content-p-color);
}
.btn-filter-icon{
	position: absolute;
	top: -25px;
	right: -25px;
	z-index: 2;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 15px;
	display: block;
	text-align: center;
	font-weight: 500;
    transition: all 250ms linear;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
}
.btn-filter-tag.active .btn-filter-icon,
.btn-filter-tag:hover .btn-filter-icon{
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.blog-mix-wrap-1{
	display: none;
}
.blog-mix-wrapper-1{
	-webkit-backface-visibility: hidden;
}
.blog-mix-wrapper-1:after{
	content: '';
	display: inline-block;
	width: 100%;
}
.btn-filter-tag-small{
	padding: 0;
	background-color: transparent;
	color: var(--gray-dark);
	height: auto;
	font-size: 17px;
	font-weight: 800;
}
.btn-filter-tag-small:hover{
	padding: 0;
	background-color: transparent;
	color: var(--content-p-color);
	height: auto;
	font-size: 17px;
	font-weight: 800;
}
.btn-filter-tag-small.active{
	color: var(--content-p-color);
}
.btn-filter-icon-small{
	position: absolute;
	top: -20px;
	right: -15px;
	z-index: 2;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 13px;
	display: block;
	letter-spacing: 0;
	text-align: center;
	font-weight: 500;
    transition: all 250ms linear;
	transform: translateY(5px);
	opacity: 0;
	pointer-events: none;
}
.btn-filter-tag-small.active .btn-filter-icon-small,
.btn-filter-tag-small:hover .btn-filter-icon-small{
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}


.btn-filter-icon-small-relative{
	position: relative;
	z-index: 2;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 13px;
	display: block;
	letter-spacing: 0;
	text-align: center;
	font-weight: 500;
    transition: all 250ms linear;
	transform: translateX(-5px);
	opacity: 0;
	pointer-events: none;
}
.btn-filter-tag-small.active .btn-filter-icon-small-relative,
.btn-filter-tag-small:hover .btn-filter-icon-small-relative{
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}


.blog-stories-color{
	background: linear-gradient(to left, var(--gray-light), var(--white));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.swiper-home-blog-v2 .swiper-pagination {
	position: absolute ;
	bottom: auto ;
	top: 30px ;
	left: 50px ;
	text-align: left ;
}
.swiper-home-blog-v2 .swiper-pagination span {
}

.swiper-home-blog-v2 .swiper-pagination-bullet {
    width: 8px;
	background-color: var(--light);
}
.swiper-home-blog-v2 .swiper-pagination-bullet:hover {
	background-color: var(--content-p-color);
}
.swiper-home-blog-v2 .swiper-pagination-bullet-active:hover,
.swiper-home-blog-v2 .swiper-pagination-bullet-active {
	width: 30px;
	background-color: var(--content-p-color);
}

.blog-tag-box {
	position: relative;
	display: block;
    transition: all 250ms linear;
	background-size: cover;
	background-position: center;
	width: 100%;
	overflow: hidden;
}
.blog-tag-box:hover {
	transform: translateY(-3px);
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.blog-tag-box.no-shadow-ver:hover {
	box-shadow: none;
}
.blog-tag-box-img-1 {
	background-image: url('../img/blog-home-1.jpg');
}
.blog-tag-box-img-2 {
	background-image: url('../img/blog-home-2.jpg');
}
.blog-tag-box-img-3 {
	background-image: url('../img/blog-home-3.jpg');
}
.blog-tag-box-img-4 {
	background-image: url('../img/blog-home-4.jpg');
}
.blog-tag-box-num {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
}
.blog-tag-box-divider {
	position: relative;
	display: block;
	width: 100%;
	border-top: 1px dashed var(--light-2);
}
.blog-date {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 20;
	padding: 7px 15px;
	display: block;
}


.blog-grid-1-col-img img {
	display: block;
	width: 60px;
	height: auto;
}
.blog-grid-1-col-img-hover img{
    transition: all 250ms linear;
}
.blog-grid-1-col-img-hover img:hover{
    opacity: 0.85;
}

.comment-aut-img img {
	display: block;
	width: 65px;
	height: auto;
}
.comment-wrapper {
	position: relative;
	width: 100%;
	border-top-left-radius: 0;
	display: block;
	background-image: linear-gradient(to top, var(--white), rgba(240,239,243,.8));
	padding: 20px;
	box-shadow: 0px 12px 30px -5px rgba(0, 0, 0, 0.1);
}
.blog-post-back-img-1 {
	background-image: url('../img/blog-19.jpg');
	background-size: cover;
}


/* #Shop
================================================== */

.shop-wrap-1 {
    transition: all 250ms linear;
}
.shop-wrap-1:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.shop-wrap-1 img{
	width: 100%;
	height: auto;
	display: block;
}
.shop-mask-dark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	background-color: rgba(12,12,12,0);
    transition: all 250ms linear;
}
.shop-wrap-1:hover .shop-mask-dark {
	background-color: rgba(12,12,12,0.6);
}
.shop-mask-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -28px;
	margin-left: -28px;
	width: 56px;
	height: 56px;
	text-align: center;
	line-height: 56px;
	background-color: var(--dark);
	color: var(--white);
	z-index: 3;
	display: block;
	opacity: 0;
	box-shadow: 0px 10px 40px 0 rgba(0, 0, 0, 0.8);
    transition: all 250ms linear;
}
.shop-wrap-1:hover .shop-mask-circle {
	opacity: 1;
}

.shop-over-text {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 4;
	display: block;
	padding: 8px 15px;
	padding-top: 9px;
	box-shadow: 0px 6px 20px 0 rgba(20, 20, 20, 0.07);
    transition: all 250ms linear;
}
.shop-over-text.bottom-left {
	top: auto;
	right: auto;
	bottom: 30px;
	left: 30px;
}
.shop-over-text.bottom-right {
	top: auto;
	bottom: 30px;
}

.shop-wrap-2 {
	overflow: hidden;
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.2);
    transition: all 250ms linear;
}
.shop-wrap-2:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.shop-mask-dark-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	background-color: rgba(12,12,12,0);
    transition: all 250ms linear;
}
.shop-wrap-2:hover .shop-mask-dark-2 {
	background-color: rgba(12,12,12,0.4);
}

.shop-wrap-3 {
	padding-bottom: 70px;
    transition: all 250ms linear;
}
.shop-wrap-3:hover {
	transform: translateY(-5px);
}
.shop-wrap-3 img {
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.2);
    transition: all 250ms linear;
}
.shop-wrap-3:hover img {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}
.shop-wrap-2-text {
	position: absolute;
	display: block;
	padding: 15px 20px;
	padding-top: 20px;
	z-index: 30;
	bottom: 0;
	left: 10px;
	width: calc(100% - 20px);
	background-color: var(--white);
	box-shadow: 0 13px 30px rgba(0,0,0,.1);
    transition: all 250ms linear;
}
.shop-wrap-3:hover .shop-wrap-2-text {
	box-shadow: 0 13px 40px rgba(0,0,0,.15);
}
.shop-wrap-2-size {
	position: absolute;
	display: block;
	overflow: hidden;
	padding: 5px 10px;
	z-index: 30;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--dark-blue);
	box-shadow: 0 8px 20px rgba(0,0,0,.3);
    transition: all 250ms linear;
}
.shop-wrap-2-left {
	position: absolute;
	display: block;
	z-index: 30;
	top: 20px;
	left: 20px;
    transition: all 250ms linear;
}
.shop-wrap-2-left-circle {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.shop-wrap-2-right {
	position: absolute;
	display: block;
	z-index: 30;
	top: 20px;
	right: -20px;
	opacity: 0;
	pointer-events: none;
	transform: rotate(-5deg);
    transition: all 250ms linear;
}
.shop-wrap-3:hover .shop-wrap-2-right {
	right: 20px;
	opacity: 1;
	pointer-events: auto;
	transform: rotate(0);
}

.shop-wrap-2-right-circle {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background-color: var(--dark);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(0,0,0,.3);
    transition: all 250ms linear;
}
.shop-wrap-2-right-circle:hover {
	background-color: var(--content-p-color);
	color: var(--white);
	box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.shop-mix-wrap-1{
	display: none;
}
.shop-mix-wrapper-1{
	-webkit-backface-visibility: hidden;
}
.shop-mix-wrapper-1:after{
	content: '';
	display: inline-block;
	width: 100%;
}

.checkbox-color:checked + label,
.checkbox-color:not(:checked) + label{
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	overflow: hidden;
	border: 3px solid transparent;
	cursor: pointer;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.checkbox-color:not(:checked) + label{
}
.checkbox-color:checked + label{
	border-color: var(--dark-blue);
}
.checkbox-color:not(:checked) + label:hover{
	border-color: var(--dark-blue);
}
.checkbox-color:checked + label::after,
.checkbox-color:not(:checked) + label::after{
	position: absolute;
	font-family: 'unicons';
	content: '\e8d8';
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 34px;
	font-size: 20px;
	color: var(--white);
	cursor: pointer;
	opacity: 0;
	z-index: 10;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.checkbox-color:checked + label::after{
	opacity: 1;
}

.checkbox-size:checked + label,
.checkbox-size:not(:checked) + label{
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	text-align: center;
	line-height: 40px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--dark-blue);
	overflow: hidden;
	cursor: pointer;
	background-color: var(--light-2);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.checkbox-size:checked + label{
	background-color: var(--dark-blue);
	color: var(--white);
}
.checkbox-size:not(:checked) + label:hover{
	background-color: var(--dark-blue);
	color: var(--white);
}

.checkbox-review:checked + label,
.checkbox-review:not(:checked) + label{
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	width: 100%;
	height: 50px;
	color: var(--gray-dark);
	background-color: var(--light-2);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	overflow: hidden;
	border: none;
	cursor: pointer;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.checkbox-review:checked + label{
	background-color: var(--dark-blue);
	color: var(--white);
}
.checkbox-review:not(:checked) + label:hover{
	background-color: var(--dark-blue);
	color: var(--white);
}
.checkbox-review + label .uil{
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}
.checkbox-review:checked + label .uil{
	color: var(--yellow);
}
.checkbox-review:not(:checked) + label:hover .uil{
	color: var(--yellow);
}

.quantity.shop-quantity input {
	position: relative;
	width: 150px;
	height: 48px;
	font-weight: 400;
	font-size: 18px;
	line-height: 48px;
	display: block;
	color: var(--white);
	padding: 0;
	margin: 0;
	border: none;
	text-align: center;
	overflow: hidden;
	background-color: var(--dark-blue);
	background-image: none;
}
.quantity.shop-quantity.light input {
	color: var(--content-a-hover-color);
	background-color: var(--white);
}
.quantity.shop-quantity .quantity-nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}
.quantity.shop-quantity .quantity-button {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	width: 48px;
	height: 48px;
	display: inline-block;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	opacity: 1;
	display: block;
}
.quantity.shop-quantity .quantity-button.quantity-up {
	right: 0;
	left: auto;
}
.quantity.shop-quantity .quantity-button.quantity-up::after,
.quantity.shop-quantity .quantity-button.quantity-down::after {
	position: absolute;
	font-family: 'unicons';
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	text-align: center;
	line-height: 48px;
	font-size: 15px;
	color: var(--white);
	background-color: var(--dark);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.quantity.shop-quantity.light .quantity-button.quantity-up::after,
.quantity.shop-quantity.light .quantity-button.quantity-down::after {
	color: var(--content-a-hover-color);
	background-color: var(--light-4);
}
.quantity.shop-quantity .quantity-button.quantity-up::after {
	content: '\eb20';
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.quantity.shop-quantity .quantity-button.quantity-down::after {
	content: '\ead3';
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.quantity.shop-quantity .quantity-button.quantity-up:hover::after,
.quantity.shop-quantity .quantity-button.quantity-down:hover::after {
	background-color: var(--content-p-color);
}
.quantity.shop-quantity.light .quantity-button.quantity-up:hover::after,
.quantity.shop-quantity.light .quantity-button.quantity-down:hover::after {
	background-color: var(--content-p-color);
	color: var(--white);
}

.shop-review-height {
	height: 120px ;
}

	border-top-right-radius: 0;
}

.shop-cart-img img {
	width: 100px;
	height: auto;
	display: block;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.shop-cart-img img:hover {
	opacity: 0.7;
}

/* #Parallax on mouse move
================================================== */

.section-absolute {
    position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
.parallax-elements{
	-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	-webkit-transform: perspective(300px);
		transform: perspective(300px);
}
.parallax-elements:hover .z-tran-10{
	-webkit-transform: translateZ(10px);
		transform: translateZ(10px);
}
.parallax-elements:hover .z-tran-20{
	-webkit-transform: translateZ(20px);
		transform: translateZ(20px);
}
.parallax-elements:hover .z-tran-30{
	-webkit-transform: translateZ(30px);
		transform: translateZ(30px);
}
.parallax-elements:hover .z-tran-40{
	-webkit-transform: translateZ(40px);
		transform: translateZ(40px);
}
.parallax-elements:hover .z-tran-50{
	-webkit-transform: translateZ(50px);
		transform: translateZ(50px);
}

/* #Separator sections
================================================== */

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
    left: 0;
    width: 100%;
	z-index: 200;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.swiper-pagination-bullet {
    width: 14px;
    height: 6px;
    display: inline-block;
	background-color: var(--gray-light);
    opacity: 1;
	cursor: pointer;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.swiper-pagination-bullet:hover {
	background-color: var(--gray);
}
.swiper-pagination-bullet-active:hover,
.swiper-pagination-bullet-active {
    opacity: 1;
	background-color: var(--content-p-color);
	width: 40px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.swiper-pagination-bullet:active,
.swiper-pagination-bullet:focus {
    border: none;
	outline: none;
}
.separator-img-shadow {
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.5);
}
.translate-top-120 {
	transform: translateY(-120px);
}
.translate-top-200 {
	transform: translateY(-200px);
}
.translate-bottom-120 {
	transform: translateY(120px);
}
.translate-top-60 {
	transform: translateY(-60px);
}
.separator-wrap-1 {
	width: 100%;
	max-width: 500px;
}
.border-counters-right {
	border-right: 1px solid rgba(21,21,21,.12);
}
.counter-big-num {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--light-3);
	font-size: 85px;
	font-weight: 700;
	line-height: 1.1;
}

/* #Cookie
================================================== */

.alert-style-fixed{
	position: fixed;
	background-image: linear-gradient(to right, var(--dark), var(--dark-blue));
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
	z-index: 20000;
	width: 1400px;
	max-width: calc(100% - 40px);
	left: 50%;
	bottom: 40px;
	padding: 15px 5px;
	transform: translateX(-50%);
}

.datepicker-dropdown:before,
.datepicker-dropdown:after {
	display: none;
}
.datepicker-dropdown.datepicker-orient-top:after {
	display: none;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
	display: none;
}
.datepicker.dropdown-menu {
	overflow: hidden;
	background-clip: border-box;
	border: none;
	background-color: rgba(0,0,0,.9);
	box-shadow: 0 7px 16px -3px rgba(0, 0, 0, 0.4);
	-webkit-animation: popup .2s ease-out forwards;
	animation: popup .2s ease-out forwards;
	padding: 10px ;
}
.datepicker.dropdown-menu.datepicker-orient-top {
	margin-top: -15px ;
}
.datepicker.dropdown-menu.datepicker-orient-bottom {
	margin-top: 25px ;
}
.datepicker.dropdown-menu table {
	background-color: transparent;
}
.datepicker.dropdown-menu table thead {
	background-color: rgba(0,0,0,.3);
}
.datepicker.dropdown-menu table thead tr {
	border-top: 0;
}
.datepicker.dropdown-menu table tbody {
	background-color: transparent;
}
.datepicker.dropdown-menu table tr {
	border-top: 1px solid rgba(0,0,0,.3);
}
.datepicker.dropdown-menu table tr td, .datepicker.dropdown-menu table tr th {
	width: auto;
	height: 24px;
	padding: 6px;
	font-size: 14px;
	color: #fff;
	background-color: transparent;
	transition: background-color .6s ease-out;
}
.datepicker.dropdown-menu table tr td:hover, .datepicker.dropdown-menu table tr td.active:hover, .datepicker.dropdown-menu table tr td:active:hover, .datepicker.dropdown-menu table tr th:hover, .datepicker.dropdown-menu table tr th.active:hover, .datepicker.dropdown-menu table tr th:active:hover {
	transition: background-color .2s ease-out;
	color: #fff;
}
.datepicker.dropdown-menu table tr td.focused, .datepicker.dropdown-menu table tr td.selected, .datepicker.dropdown-menu table tr th.focused, .datepicker.dropdown-menu table tr th.selected {
	border-color: rgba(0,0,0,.3);
	color: #fff;
}
.datepicker.dropdown-menu table tr td.active, .datepicker.dropdown-menu table tr td.active:focus, .datepicker.dropdown-menu table tr td.active.active:hover, .datepicker.dropdown-menu table tr td:active:focus, .datepicker.dropdown-menu table tr td.highlighted, .datepicker.dropdown-menu table tr th.active, .datepicker.dropdown-menu table tr th.active:focus, .datepicker.dropdown-menu table tr th.active.active:hover, .datepicker.dropdown-menu table tr th:active:focus, .datepicker.dropdown-menu table tr th.highlighted {
	border-color: rgba(0,0,0,.3);
	color: #fff;
}
.datepicker.dropdown-menu table tr th.datepicker-switch {
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #ffffff;
	background-color: inherit;
}
.datepicker.dropdown-menu table tr th.prev,
.datepicker.dropdown-menu table tr th.next {
	color: #ffffff;
	background-color: rgba(0,0,0,0);
	font-weight: 400;
	font-size: 15px;
}
.datepicker.dropdown-menu table tr th.dow {
	padding: 2px 12px;
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	color: #ffffff;
	background-color: rgba(0,0,0,0);
	border-top: 1px solid rgba(0,0,0,.7);
}
.datepicker.dropdown-menu table tr td.day {
	width: 24px;
	border-right: 1px solid rgba(0,0,0,.3);
	text-shadow: none;
}
.datepicker.dropdown-menu .old:hover {
	background-color: transparent ;
}
.datepicker.dropdown-menu table tr td.day:last-child {
	border-right-width: 0;
}
.datepicker.dropdown-menu table tr td.range {
	background-color: rgba(0,0,0,0);
}
.datepicker.dropdown-menu .new,
.datepicker.dropdown-menu .old,
.datepicker.dropdown-menu .disabled,
.datepicker.dropdown-menu .disabled:hover {
	color: #888;
}
.datepicker.dropdown-menu table tr td.day:hover,
.datepicker.dropdown-menu table tr td.focused,
.datepicker.dropdown-menu table tr td.selected,
.datepicker.dropdown-menu table tr th.focused,
.datepicker.dropdown-menu table tr th.selected,
.datepicker.dropdown-menu table tr td.active,
.datepicker.dropdown-menu table tr td.active:focus,
.datepicker.dropdown-menu table tr td.active.active:hover,
.datepicker.dropdown-menu table tr td:active:focus,
.datepicker.dropdown-menu table tr td.highlighted,
.datepicker.dropdown-menu table tr th.active,
.datepicker.dropdown-menu table tr th.active:focus,
.datepicker.dropdown-menu table tr th.active.active:hover,
.datepicker.dropdown-menu table tr th:active:focus,
.datepicker.dropdown-menu table tr th.highlighted,
.datepicker.dropdown-menu table tr td:hover,
.datepicker.dropdown-menu table tr td.active:hover,
.datepicker.dropdown-menu table tr td:active:hover,
.datepicker.dropdown-menu table tr th:hover,
.datepicker.dropdown-menu table tr th.active:hover,
.datepicker.dropdown-menu table tr th:active:hover {
	background-color: var(--content-p-color);
}
.quantity {
	position: relative;
}
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button{
	-webkit-appearance: none;
	margin: 0;
}
.quantity input[type=number]{
	-moz-appearance: textfield;
}
.quantity input {
	position: relative;
	width: 100%;
	height: 80px;
	font-weight: 400;
	font-size: 34px;
	line-height: 80px;
	display: block;
	color: var(--dark-blue);
	padding: 0;
	margin: 0;
	text-align: center;
	border: none;
	background-color: var(--light-2);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70px 70px;
	background-image: url('../img/user.png');
}
.quantity input:focus {
	outline: 0;
	border: none;
	box-shadow: none;
}
.quantity-nav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
}
.quantity-button {
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 40px;
	display: block;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	opacity: 0.3;
}
.quantity-button:hover {
	opacity: 1;
}
.quantity-button.quantity-up::after,
.quantity-button.quantity-down::after {
	position: absolute;
	font-family: 'unicons';
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 22px;
	color: var(--dark-blue);
}
.quantity-button.quantity-up::after {
	content: '\e850';
}
.quantity-button.quantity-down::after {
	content: '\e844';
}

.blog-tag-box-img-5 {
	background-image: url('../img/ser-1.jpg');
}
.blog-tag-box-img-6 {
	background-image: url('../img/ser-2.jpg');
}
.blog-tag-box-img-7 {
	background-image: url('../img/ser-3.jpg');
}
.blog-tag-box-img-8 {
	background-image: url('../img/ser-4.jpg');
}

.icon-box-landing {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 70px;
	background-color: var(--white);
	color: var(--content-p-color);
	text-align: center;
	line-height: 70px;
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.4);
}


body.triger-anime .load-anime-left {
	opacity: 0;
	transform: translateX(-100px);
}
.load-anime-left {
	opacity: 1;
	transform: translateX(0);
    transition: all 500ms linear;
    transition-delay: 400ms;
}
body.triger-anime .load-anime-right {
	opacity: 0;
	transform: translateX(100px);
}
.load-anime-right {
	opacity: 1;
	transform: translateX(0);
    transition: all 500ms linear;
    transition-delay: 600ms;
}
body.triger-anime .load-anime-top {
	opacity: 0;
	transform: translateY(80px);
}
.load-anime-top {
	opacity: 1;
	transform: translateY(0);
    transition: all 500ms linear;
    transition-delay: 900ms;
}

/* #Google map
================================================== */
.gm-control-active {
	margin-top: 140px ;
	margin-right: 20px ;
}



@media (max-width: 1700px) {
	.hero-radius-img-anime {
		top: 20vh;
		right: 50px;
		height: 60vh;
	}
	.hero-left-full-section {
		top: auto;
		transform: translateY(0);
		bottom: 50px;
		left: auto;
		right: 20px;
	}
}

@media (max-width: 1600px) {
	.bakery-contact-wrap {
		top: auto;
		bottom: 20px;
		transform: translate(-50%, 0);
		left: 50%;
		-webkit-writing-mode: initial;
		writing-mode: initial;
	}
	.bakery-contact-wrap p {
		background-color: var(--dark-blue);
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 15px;
		padding-left: 8px;
		display: block;
	}
	.bakery-contact-wrap .uil-wrap {
		margin-bottom: 0;
		margin-right: 5px;
		transform: rotate(0);
	}
}

@media (max-width: 1500px) {
	.hero-radius-img-anime {
		top: 25vh;
		right: 50px;
		height: 50vh;
	}
	.mix.mix-6-col{
		width: calc(20% - 0.5px);
	}
}

@media (max-width: 1400px) {
	.mix.mix-5-col{
		width: calc(25% - 0.5px);
	}
	.mix.mix-6-col{
		width: calc(25% - 0.5px);
	}
}

@media (max-width: 1300px) {
	.hero-radius-img-anime {
		top: 30vh;
		right: 50px;
		height: 40vh;
	}
	.mix.mix-4-col{
		width: calc(33.3333333333% - 0.5px);
	}
	.swiper-hero-creative-v3 .swiper-button-next,
	.swiper-hero-creative-v3 .swiper-button-prev{
		background-color: var(--black);
		border: none;
	}
	.swiper-hero-creative-v3 .swiper-button-prev{
		left: 20px;
	}
	.swiper-hero-creative-v3 .swiper-button-next{
		right: 20px;
	}
	.swiper-hero-creative-v3 .swiper-button-prev:hover{
		border: none;
	}
	.swiper-hero-creative-v3 .swiper-button-next:hover{
		border: none;
	}
	.swiper-hero-creative-v3 .swiper-button-next:active,
	.swiper-hero-creative-v3 .swiper-button-prev:active,
	.swiper-hero-creative-v3 .swiper-button-next:focus,
	.swiper-hero-creative-v3 .swiper-button-prev:focus{
		border: none;
	}
	.swiper-hero-creative-v3 .swiper-button-next:active:hover,
	.swiper-hero-creative-v3 .swiper-button-prev:active:hover,
	.swiper-hero-creative-v3 .swiper-button-next:focus:hover,
	.swiper-hero-creative-v3 .swiper-button-prev:focus:hover{
		border: none;
	}
}

@media (max-width: 1199px) {
	.product-wrap-fashion h5 {
		right: 20px;
	}
	.product-wrap-fashion-cart {
		bottom: 15px;
		left: 15px;
	}
	.product-wrap-fashion-size {
		left: 30px;
	}
	.product-wrap-fashion:hover .product-wrap-fashion-size {
		left: 20px;
	}
	.navbar-collapse.collapsing{
		max-height: 450px;
	}
	.navigation-wrap{
		position: relative;
		top: auto;
		left: auto;
		display: block;
	}
	.navigation-wrap.one-page-nav{
		position: fixed;
		top: 0;
		left: 0;
		display: block;
	}
	.cbp-af-header.header-transparent,
	.cbp-af-header.header-transparent.cbp-af-header-shrink {
		background-color: var(--white);
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
		border-bottom: none;
	}
	.cbp-af-header.header-dark,
	.cbp-af-header.header-dark.header-transparent,
	.cbp-af-header.header-dark.header-semi-transparent,
	.cbp-af-header.header-dark.cbp-af-header-shrink,
	.cbp-af-header.header-dark.header-transparent.cbp-af-header-shrink,
	.cbp-af-header.header-dark.header-semi-transparent.cbp-af-header-shrink {
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
		background-color: var(--black);
		border-bottom: none;
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	}
	.cbp-af-header,
	.cbp-af-header.cbp-af-header-shrink,
	.cbp-af-header.header-semi-transparent,
	.cbp-af-header.header-semi-transparent.cbp-af-header-shrink {
		background-color: var(--white);
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.cbp-af-header.header-float.cbp-af-header-shrink,
	.cbp-af-header.header-float {
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
		max-width: 100%;
		left: 0;
		transform: translateX(0);
		margin-top: 0;
		box-shadow: none ;
	}
	.cbp-af-header.header-float .dropdown-menu {
		margin-top: 0;
	}
	.cbp-af-header.header-float .mega-menu-dropdown{
		margin-top: 0;
	}
	.cbp-af-header.header-float .padding-on-scroll,
	.cbp-af-header.header-float.cbp-af-header-shrink .padding-on-scroll,
	.cbp-af-header.cbp-af-header-shrink .padding-on-scroll,
	.padding-on-scroll{
		padding-top: 17px;
		padding-bottom: 17px;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.cbp-af-header.cbp-af-header-shrink .navbar-brand,
	.navbar-brand{
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.cbp-af-header.cbp-af-header-shrink .nav-item,
	.nav-item{
		padding: 10px 0;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.cbp-af-header.cbp-af-header-shrink .nav-link,
	.nav-link{
		margin-top: 0;
		margin-bottom: 0;
		-webkit-transition : all 0.3s ease-out;
		transition : all 0.3s ease-out;
	}
	.padding-top-mob-nav{
		padding-top: 20px;
	}
	.progress-wrap {
		right: 20px;
		bottom: 20px;
		height: 40px;
		width: 40px;
		background-color: var(--dark-blue);
		box-shadow: none;
	}
	.progress-wrap::after {
		line-height: 40px;
		font-size: 20px;
		color: var(--white);
		height: 40px;
		width: 40px;
	}
	.progress-wrap::before {
		line-height: 40px;
		font-size: 20px;
		height: 40px;
		width: 40px;
	}
	.dropdown-menu {
		padding: 0;
		min-width: 240px;
		margin-top: 0;
		box-shadow: none;
		border-top: none;
	}
	.dropdown-menu::before {
		display: none;
	}
	.cbp-af-header.cbp-af-header-shrink .dropdown-menu {
		margin-top: 0;
	}
	.dropdown-item {
		padding: 8px 10px;
		border-bottom: 1px solid rgba(11,11,11,.06);
	}
	.dropdown-item:hover {
		padding-left: 10px;
	}
	.dropdown-item:focus,
	.dropdown-item:active {
		border-bottom: 1px solid rgba(11,11,11,.06);
	}
	.dropdown-item::after {
		padding: 8px 10px;
	}
	.nav-item.show .dropdown-menu .nav-item .dropdown-menu,
	.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu {
		margin-top: 0;
	}
	.nav-item .dropdown-menu .nav-item .dropdown-menu {
		margin-left: 20px;
	}
	.mega-menu-dropdown,
	.cbp-af-header.cbp-af-header-shrink .mega-menu-dropdown{
		margin-top: 0;
	}
	.mega-menu-background-1,
	.mega-menu-background-2,
	.mega-menu-background-3{
		background-image: none;
	}
	.blend-mode-xl-normal {
		mix-blend-mode: normal ;
	}
	.full-height-xl {
		height: calc(100vh - 79px) ;
	}
	.min-full-height.full-height-xl {
		min-height: calc(100vh - 79px) ;
	}
	.hero-radius-img-anime {
		top: 50%;
		right: auto;
		left: 50%;
		height: 60vh;
		transform: translate(-50%, -50%);
		opacity: 0.2;
	}
	.display-1 {
		font-size: 80px;
	}
	.hero-circle-img {
		height: auto;
		width: 40%;
	}
	.hero-circle-img img {
		height: auto;
		width: 100%;
	}
	.display-2 {
		font-size: 16vw;
	}
	.filter-wrapper-mix.fullwidth{
		width: 100%;
	}
	.display-6 {
		font-size: 60px;
	}
	.display-8 {
		font-size: 45px;
	}
	.services-wrap-3.process::before,
	.services-wrap-3.process-2::before {
		display: none;
	}
	.swiper-hero-creative-v4 .swiper-slide {
		width: 70%;
	}
	.section-hero-v4 h2 {
		font-size: 4vw;
	}
	.blog-filter-button {
		bottom: 90px;
		left: auto;
		right: 20px;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.room-wrap-name {
		top: 20px;
		left: 20px;
	}
	.room-wrap-stars {
		top: 60px;
		left: 20px;
	}
	.countdown-block {
		width: 150px;
	}
	#cd-zoom-in {
		margin-top: 15px;
		margin-left: 15px;
	}
	#cd-zoom-out {
		margin-left: 15px;
	}
	.gm-control-active {
		margin-top: 15px ;
		margin-right: 15px ;
	}
	.h-550-map {
		height: 370px;
	}
	.mix.poftfolio-showcase{
		width: 50%;
	}
	.mix.showcase-2-col{
		width: 50%;
		-webkit-transform: translateX(1px);
		transform: translateX(1px);
		margin-left: -1px;
	}
	.mix.showcase-4-col{
		width: 50%;
	}
	.mix.mix-5-col{
		width: calc(33.3333333333% - 0.5px);
	}
	.mix.mix-6-col{
		width: calc(33.3333333333% - 0.5px);
	}
	.services-wrap-3.ver-blog-pages-2 {
		height: 234px;
	}
}

@media (max-width: 991px) {
	.section-background-gradient-white-gray {
		background-image: none;
		background-color: rgba(240,239,243,0.9);
	}
	.border-counters-right {
		border-right: none;
	}
	.mix{
		width: calc(50% - 0.5px);
	}
	.mix.mix-4-col{
		width: calc(50% - 0.5px);
	}
	.display-3 {
		font-size: 14vw;
		-webkit-text-stroke: 2px transparent;
		text-stroke: 2px transparent;
		-webkit-text-fill-color: var(--light-2);
		text-fill-color: var(--light-2);
		color: var(--light-2);
	}
	.display-5 {
		font-size: 13vw;
		line-height: 0.9;
	}
	.display-6 {
		font-size: 50px;
	}
	.display-8 {
		font-size: 40px;
	}
	.swiper-hero-creative-v4 .swiper-slide {
		width: 100%;
	}
	.hero-bottom-section-v4{
		left: 0;
		bottom: 60px;
		text-align: center;
	}
	.section-hero-v4 h2 {
		font-size: 6vw;
	}
	.swiper-home-blog-v2 .swiper-pagination {
		top: 30px ;
		left: auto ;
		right: 30px ;
		text-align: right ;
	}
	.side-nav-wrap {
		height: auto;
		width: 100%;
	}
	.side-nav-wrap img {
		width: 50px;
	}
	.full-height.height-side-nav-mob {
		height: auto;
	}
	.bakery-thumbs-wrap {
		top: auto;
		bottom: 90px;
		right: auto;
		left: 50%;
		transform: translate(-50%, 0);
		width: 320px;
		height: auto;
	}
	.shedule-box,
	.shedule-box-2 {
		height: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.countdown-block-1 {
		width: 100px;
	}
	.mix.mix-5-col{
		width: calc(50% - 0.5px);
	}
	.mix.mix-6-col{
		width: calc(50% - 0.5px);
	}
}

@media (max-width: 767px) {
	.display-1 {
		font-size: 60px;
	}
	.swiper-hero-design-studio .swiper-button-prev{
		left: 10px;
		margin-top: -130px;
	}
	.swiper-hero-design-studio .swiper-button-next{
		right: 10px;
		margin-top: -130px;
	}
	.display-6 {
		font-size: 45px;
	}
	.display-8 {
		font-size: 35px;
	}
	.link-hero-creative-v3{
		letter-spacing: 3px;
		font-size: 20px;
	}
	#flight-datepicker-1 .form-item input {
		background-color: var(--white);
	}
	#flight-datepicker-1 .form-item:nth-child(2) input {
		background-color: var(--light-2);
	}
	body.triger-anime .load-anime-left {
		opacity: 0;
		transform: translate(0, 40px);
	}
	.load-anime-left {
		opacity: 1;
		transform: translate(0);
		transition: all 500ms linear;
		transition-delay: 600ms;
	}
	body.triger-anime .load-anime-right {
		opacity: 0;
		transform: translate(0, 40px);
	}
	.load-anime-right {
		opacity: 1;
		transform: translate(0);
		transition: all 500ms linear;
		transition-delay: 300ms;
	}
	.countdown-block {
		width: 100px;
	}
}

@media (max-width: 575px) {
    .padding-sm-top-bottom-50{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .padding-sm-top-50{
        padding-top: 50px;
    }
    .padding-sm-bottom-50{
        padding-bottom: 50px;
    }
    .list-style ul{
        padding-left: 20px;
    }
	.modal-dialog {
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		min-height: 100vh;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	.modal.fade .modal-dialog {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	@media (prefers-reduced-motion: reduce) {
		.modal.fade .modal-dialog {
			-webkit-transform: translate(0);
			transform: translate(0);
		}
	}
	.modal-body {
		min-height: 100vh;
		padding: 60px 15px;
	}
	.modal-small .modal-content {
		max-width: 100%;
	}
	.modal-small .modal-dialog {
		max-width: 100%;
	}
	.display-1 {
		font-size: 36px;
	}
	.blog-wrap-1 img{
		width: 100%;
	}
	.btn-pricing{
		height: 60px;
	}
	.btn-pricing-2{
		height: 60px;
	}
	.hero-circle-img {
		width: 50%;
	}
	.display-2 {
		font-size: 18vw;
	}
	.hero-center-section.hero-center-push-top-mob{
		margin-top: -60px;
	}
	.hero-center-creative-v2-section.hero-center-push-top-mob{
		margin-top: -60px;
	}
	.mix{
		width: 100%;
	}
	.mix.mix-2-col{
		width: 100%;
	}
	.mix.mix-4-col{
		width: 100%;
	}
	.mix.mix-5-col{
		width: 100%;
	}
	.mix.mix-6-col{
		width: 100%;
	}
	.swiper-hero-branding .swiper-button-next,
	.swiper-hero-branding .swiper-button-prev{
		display: none;
	}
	.swiper-hero-branding .swiper-pagination {
		bottom: 180px;
		top: auto;
		margin-top: 0;
		width: 100%;
	}
	.title-text-left-line {
		position: relative;
		padding-left: 60px;
	}
	.title-text-left-line::before {
		left: 20px;
		width: 30px;
	}
	.swiper-container-horizontal.swiper-hero-creative-v2>.swiper-pagination-bullets {
		bottom: 80px;
	}
	.display-6 {
		font-size: 35px;
	}
	.display-8 {
		font-size: 33px;
	}
	.blog-wrap-4 img{
		width: 100%;
	}
	.hero-center-section-v3 img{
		box-shadow: none;
	}
	.swiper-container-horizontal > .swiper-scrollbar {
		bottom: -20px;
		left: 15%;
		right: 15%;
		width: 70%;
	}
	.swiper-hero-creative-v3 .swiper-pagination {
		bottom: -80px;
	}
	.swiper-hero-creative-v4 .swiper-scrollbar {
		background: var(--gray-light);
		left: 50%;
		right: auto;
		bottom: -20px;
		height: 5px;
		width: 200px;
		margin-left: -100px;
	}
	.swiper-hero-creative-v4 .swiper-pagination {
		bottom: 40px;
		width: 100%;
		left: 0;
		font-weight: 400;
	}
	.swiper-hero-creative-v4 .swiper-button-next,
	.swiper-hero-creative-v4 .swiper-button-prev{
		bottom: -20px;
		margin-top: 0;
	}
	.swiper-hero-creative-v4 .swiper-button-prev{
		right: auto;
		left: 20px;
	}
	.swiper-hero-creative-v4 .swiper-button-next{
		right: 20px;
		left: auto;
	}
	.swiper-hero-corporate-v1 .swiper-button-prev{
		left: 10px;
	}
	.swiper-hero-corporate-v1 .swiper-button-next{
		right: 10px;
	}
	.hero-left-section {
		bottom: 20px;
		left: 0;
	}
	.btn-filter-tag{
		font-size: 30px;
	}
	.btn-filter-tag:hover{
		font-size: 30px;
	}
	.modal-side-nav .modal-dialog {
		width: 100%;
	}
	.swiper-hero-portfolio-v3 .swiper-scrollbar {
		background: var(--dark);
		left: 50%;
		transform: translateX(-50%);
		right: auto;
		bottom: 80px;
		width: 80%;
	}
	.swiper-hero-shop-v2 .swiper-button-prev{
		left: 10px;
	}
	.swiper-hero-shop-v2 .swiper-button-next{
		right: 10px;
	}
	.niche-slide-1 img {
		height: 200px;
	}
	.blog-wrap-4.small img{
		width: 70px;
	}
	.img-room-bottom img {
		width: 20px;
	}
	.countdown-block {
		width: 70px;
	}
	.countdown-block-1 {
		width: 70px;
	}
	.title-text-left-line-small {
		padding-left: 0;
	}
	.title-text-left-line-small::before {
		display: none;
	}
	.mix.poftfolio-showcase,
	.mix.showcase-2-col,
	.mix.showcase-4-col{
		width: 100%;
	}
}

.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.textcenter {
	text-align: center;
}

body .iflogged {
	display: none;
}
body.logged .iflogged {
	display: block;
}
/* ESTRUCTURA GENERAL*/
.main-navigation .dropdown-menu {
	margin-top: 22px
}
.nav-item.dropdown a:after {
	content: "\f107";
	font-family: FontAwesome;
	margin-left: 15px;
}
.dropdown-menu a.dropdown-item:after {
	content: "";
}
.nav-item.dropdown a.opendropmobile:after {
	font-size: 15px;
	color: rgba(0,0,0,.5);
}
.owl-nav button {
	position: absolute;
	border: 1px solid #ccc;
	width: 30px;
	height: 30px;
	top: 40%;
	background-color: #fff;
}
.owl-nav .owl-prev {
	left: -20px;
}
.owl-nav .owl-next {
	right: -20px;
}

#acceso_usuarios button.close {
	margin-right: -30px;
	margin-top: -30px;
}
.flip {
	transform: rotate(180deg);
}
#sysModal .modal-dialog, #sysModal .modal-dialog .modal-content {
	padding: 40px;
}
body.logged .loginbutton {
	pointer-events: none;
}
