/*** 3. Basic Default ***/
body {
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 22px;
    height: 100%;
    color: var(--black-color);
    background: #fff; }
a,
button{
    cursor:pointer;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
a:hover,
a:focus{
    text-decoration: none; }
ul{
    margin: 0;
    padding: 0;
    list-style-type: none; }
button:focus,
input:focus,
a:focus{
    outline: 0;
    background: transparent; }
::-webkit-input-placeholder { color: #929292 !important; }
::-moz-placeholder { color: #929292 !important; }
:-ms-input-placeholder { color: #929292 !important; }
input:-moz-placeholder { color: #929292 !important; }
.contactform ::-webkit-input-placeholder { color: #f2f2f2 !important; }
.contactform ::-moz-placeholder { color: #f2f2f2 !important; }
.contactform :-ms-input-placeholder { color: #f2f2f2 !important; }
.contactform input:-moz-placeholder { color: #f2f2f2 !important; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type=number] { -moz-appearance:textfield; }
.compensate-for-scrollbar { margin-right: 15px !important; }
.form-group.alice{ display: none; }

/* Titles */
.title-head{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0; }
.title-head span{
    position: relative;
    padding: 0 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    line-height: 24px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.title-head span:before,
.title-head span:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.title-head span:before{ left: 0; }
.title-head span:after{ right: 0; }

/* Buttons */
.nc-btn {
    display: block;
	position: relative;
	font-size: 15px;
	color: #fff;
	font-weight: var(--primary-font-medium);
	background-color: transparent;
    overflow: hidden;
    border-radius: 30px;
    border: none;
    padding: 0; }
.nc-btn.btn-white { color: var(--black-color); }
.nc-btn:hover,
.nc-btn:focus { 
    color: #fff; }
.nc-btn span:before {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	content: "";
    background-color: var(--primary-color); 
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
	-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); }
.btn-white span:before { background-color: var(--black-color); }
.nc-btn:hover span:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left; }

.btn-orange span,
.btn-white span {
	position: relative;
	display: block;
	z-index: 1;
    line-height: 54px;
    border-radius: 30px;
    padding: 0 40px 2px 40px;
	background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease; }
.btn-white span { background-image: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%); }

.btn-transparent span {
	position: relative;
	display: block;
	z-index: 1;
    line-height: 54px;
    border-radius: 30px;
    padding: 0 40px 2px 40px;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease; }
.btn-transparent span:after {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	content: "";
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease;
	-o-transition: .5s ease;
	transition: .5s ease;
	border: 2px solid rgba(248, 248, 248, 0.3);
	border-radius: 30px; }
.btn-transparent:hover span:after {
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0; }

.spinner {
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid var(--second-color);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .95s linear infinite;
    animation: spinner-border .95s linear infinite }
@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


/* Header */
#header_fixed {
    background: #fff;
    width: 100%;
    height: 70px;
    z-index: 8000;
    position: fixed;
    top: -100px;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease;
    -o-transition: 0.4s ease;
    -webkit-transition: 0.4s ease; }
#header_fixed.fixed {
    visibility: visible;
    opacity: 1;
    top: 0; }
#header_fixed .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; }   
#header_fixed .header-logo img{ max-height: 40px; }
#header_fixed .language,
#header_fixed .quote,
#header_fixed .social,
#header_fixed .widget-html ul.mail,
#header_fixed .widget-html ul.phone li:first-child{
    display: none; }
#header_fixed .header-menu,
#header_fixed .widget-html ul.phone{
    display: flex;
    align-items: center;
    justify-content: flex-end; }   
#header_fixed .widget-html ul.phone li:last-child{
    position: relative;
    margin-right: 60px;
    font-size: 15px;
    color: var(--gray-color); }
#header_fixed .widget-html ul.phone li:last-child a{
    color: var(--second-color);
    font-weight: var(--primary-font-bold); }
#header_fixed .widget-html ul.phone li:last-child::before{ padding-right: 10px; }
.lang_en #header_fixed .widget-html ul.phone li:last-child::before{ content: "Call Us:"; }
.lang_es #header_fixed .widget-html ul.phone li:last-child::before{ content: "Llámanos:"; }

#header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 8003; }
#header_top .wrapper,
#header_top .block_content {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
#header_top .widget-html{ padding-right: 50px; }
#header_top .widget-html ul{ 
    padding-left: 40px;
    margin-right: 60px;
    position: relative; }
#header_top .widget-html ul.mail{ margin-right: 0; }
#header_top .widget-html ul:before{
    position: absolute;
    left: 0;
    top: 0;
    font-family: Flaticon;
    font-style: normal;
    font-size: 24px;
    color: #fff; } 
#header_top .widget-html ul.phone:before{ content: "\f134"; }
#header_top .widget-html ul.mail:before{ content: "\f146"; }
#header_top .widget-html li{ 
    color: #9fb3bd;
    line-height: 24px; }
#header_top .widget-html li a{ 
    color: #fff;
    font-weight: var(--primary-font-medium); }
#header_top .language{
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 50px;
    border-right: 1px solid rgba(255,255,255,0.3);
    border-left: 1px solid rgba(255,255,255,0.3); }
#header_top .language>span{ 
    color: #9fb3bd;
    margin-right: 7px; }
#header_top .language .lang-selector{ position: relative; }
#header_top .language a.dropdown-toggle{
    display: block;
    position: relative;
    color: #fff;
    padding-right: 20px; }
#header_top .language a.dropdown-toggle::before{
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f107";
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 1px; }
#header_top .language .dropdown-menu{
    border-radius: 0;
    border: none;
    padding: 0;
    margin: 12px 0 0 0;
    min-width: 125px;
    left: -30px; }
#header_top .language .dropdown-menu a,
#header_top .language .dropdown-menu li.selected span{
    display: block;
    padding: 10px 20px 10px 30px;
    line-height: 24px; }
#header_top .language .dropdown-menu li.selected span{
    color: #fff;
    background-image: -moz-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%); }
#header_top .quote{ padding-left: 50px; }

#header_bottom .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff; }
#header .header-logo{ padding: 15px 0 15px 15px; }
#header .header-menu,
#header .social ul{
    display: flex;
    align-items: center;
    justify-content: flex-end; }
#header .social{
    background-color: var(--second-color);
    min-height: 80px;
    margin-left: 60px; }
#header .social li{
    min-height: 80px;
    padding: 0 10px;
    border-left: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#header .social li:hover{ background-color: var(--third-color); }
#header .social li a{
    display: flex;
    padding: 20px 15px;
    color: #fff; }

/* Menu style */
.navbar-default {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin: 0;
    min-height: 40px; }
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background-color: transparent; }

.nc-caret { 
    display: block;
    padding-left: 12px;
    height: 20px; }
.nc-caret:before {
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f107";
    font-size: 13px;
    color: var(--gray-color); }

.navbar-content {
    font-weight: var(--primary-font-bold);
    font-size: 15px;
    position: relative;
    padding: 0; }
.navbar-content li {
    margin: 0 20px;
    position: relative; }
.navbar-content li.first-item{ margin-left: 0; }
.navbar-content li.last-item { margin-right: 0; }
.navbar-content li a {
    padding: 30px 0;
    color: var(--gray-color) !important;
    line-height: 20px; }
#header_fixed .navbar-content li a { padding: 25px 0; }
.navbar-content a.dropdown-toggle{
    display: flex;
    align-items: center; }
.navbar-content li a:hover,
.navbar-content li.active a {
    color: var(--second-color) !important; }

.navbar-content .dropdown-menu {
    display: block;
    opacity: 0;
    top: 150%;
    left: -30px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--second-color);
    padding: 0;
    width: 300px;
    visibility: hidden;
    z-index: 25000 !important;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease; }
.navbar-content .dropdown:hover .dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
    z-index: 9999; }
.navbar-content .dropdown-menu li { margin: 0; }
.navbar-content .dropdown-menu li a {
    padding: 14px 30px !important;
    line-height: 24px;
    font-size: 15px;
    color: #fff !important;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-weight: var(--primary-font-normal); }
.navbar-content .dropdown-menu li a:hover {
    background: var(--third-color);
    color: #fff !important; }

/* Breadcrumb */
#breadcrumb {
	position: relative;
    display: block;
    height: 400px;
    padding-top: 160px; }
#breadcrumb .video-layer,
#breadcrumb .video-layer:after {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: flex-end; }
#breadcrumb .video-layer video{
    position: relative;
    width: 65%;
    height: 100%;
    object-fit: cover;  
    z-index: 1; }
@media (min-width: 1800px) {
    #breadcrumb .video-layer video{ width: 47%; }
}
#breadcrumb .video-layer:after{ 
    content: "";
    background-image: url(../img/bg-breadcrumb.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 2; }
#breadcrumb .container{
    position: relative;
    display: flex;
    align-items: center;
    height: 240px;
    z-index: 3; }
#breadcrumb .wrapper h1 {
    margin: 0 0 5px 0;
    font-weight: var(--primary-font-bold);
    font-size: 46px;
    line-height: 60px;
    color: #fff; }
#breadcrumb .path {
    display: flex;
    align-items: center;
    color: #fff;
    padding-left: 2px; }
#breadcrumb .path a{ color: var(--silver-color); }
#breadcrumb .path a:hover{ color: #fff; }
#breadcrumb .path .pipe{
    margin: 1px 15px 0 15px;
    font-size: 11px;
    color: #fff; }


/* Banners */
#banners{
    display: block;
    width: 100%;
    height: 100vh; 
    position: relative; }   
.seq {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden; }
.seq .seq-canvas,
.seq .seq-canvas > * {
    position: absolute;
    height: 100%;
    width: 100%; }
.seq .seq-canvas,
.seq .seq-canvas > * {
    margin: 0;
    padding: 0;
    list-style: none; }
.seq .seq-pagination {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002; }
.seq .seq-pagination span{ margin: 0 4px; }
.seq .seq-pagination a {
    display: block;
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.7);;
    border-radius: 50%; }
.seq .seq-pagination a:hover,
.seq .seq-pagination .seq-current a{ 
    background-color: var(--primary-color); }
.seq.seq-active { overflow: hidden; }
.seq.seq-active .seq-preloader,
.seq.seq-active .seq-pagination {
    visibility: visible; }
.seq.seq-active .seq-preloader.seq-preloaded { visibility: hidden; }
.seq .seq-step > .seq-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s; }
.seq .seq-step.seq-in > .seq-wrapper {
    opacity: 1;
    visibility: visible; }

.seq-wrapper,
.seq-wrapper .video-layer,
.seq-wrapper .video-layer:after,
.seq-wrapper .image-layer,
.seq-wrapper .image-layer:after{ 
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1002; }
.vidbacking-active-body-back{
	position: absolute;
	z-index: -100;
	width: 101%;
    height: 101%;
    object-fit: cover;
	top: 50%;
	left: 50%;
	background-size: cover;
	overflow: hidden;
	opacity: 1;
	transition: 2s opacity;
	transform: translateX(-50%) translateY(-50%); }
.seq-wrapper .image-layer .image{
	position: absolute;
	z-index: -100;
	width: 100%;
    height: 100%;
	background-size: cover;
	overflow: hidden; }
.vidmask-body-back{ display: none; }
.image-layer .lazy-image{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
.seq-in .image-layer .lazy-image{
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transition: all 7000ms linear; }
.seq-wrapper .video-layer:after,
.seq-wrapper .image-layer.overlay:after{ 
    content: "";
    background-color: #0e1a29;
    opacity: .8;
    z-index: 2; }
.seq-wrapper .image-layer.overlay:after{ opacity: 0.75; }

.seq .seq-nav {
    display: none;
    position: absolute;
    z-index: 100;
    top: calc(50% - 40px);
    left: 0;
    width: 100%;
    border: none;
    margin: 0 auto;
    padding: 0; } 
.seq.seq-active .seq-nav { display: block; }
.seq .seq-nav .seq-prev,
.seq .seq-nav .seq-next{ 
    position: absolute;
    width: 55px;
    height: 55px;
    border: none;
    fill: #a7a7a7;
    background-color: transparent;
    opacity: 0;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.seq .seq-nav .seq-prev{ left: 15px; }
.seq .seq-nav .seq-next{ right: 15px; }
.seq:hover .seq-nav button{ opacity: 0.4; }
.seq .seq-nav button:hover{ opacity: 1; }


.seq-wrapper .slide-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
    padding-top: 160px; }
.slide-item .auto-container { 
    position: relative;
    z-index: 1003;
    width: 900px; }
.slide-item .content-box {
	position: relative;
	z-index: 5; }
.slide-item .content-box:before {
	position: absolute;
	content: "";
	background: rgba(0,28,42,0.4);
	left: -240px;
	top: -120px;
	width: 550px;
	height: 550px;
	border-radius: 50%; }
.slide-item .content-box h3 {
	display: block;
	font-size: 20px;
	line-height: 24px;
	color: #ffffff;
	font-weight: var(--primary-font-bold);
	opacity: 0;
	margin: 0 0 20px 0;
	-webkit-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px); }
.seq-in .slide-item .content-box h3 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms; }
.slide-item .content-box h2 {
	display: block;
	font-size: 70px;
	line-height: 70px;
	color: #ffffff;
	font-weight: var(--primary-font-bold);
    letter-spacing: -3px;
	opacity: 0;
	margin: 0 0 40px 0;
	position: relative;
	-webkit-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px); }
.slide-item .content-box h2 strong { font-weight: var(--primary-font-normal); }
.seq-in .slide-item .content-box h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	transition: all 900ms ease;
	-webkit-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms; }
.slide-item .content-box p {
	display: block;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	opacity: 0;
	margin-bottom: 35px;
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	transform: translateY(80px);
    max-width: 60%; }
.seq-in .slide-item .content-box p {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	-webkit-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms; }

.slide-item .content-box ul{
    display: flex;
    align-items: center;
	position: relative;
	opacity: 0;
	z-index: 5;
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	transform: translateY(80px); }
.seq-in .slide-item .content-box ul {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	-webkit-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms; }
.slide-item .content-box li{ 
    display: block;
    position: relative;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: var(--primary-font-medium);
    background-color: transparent;
    overflow: hidden;
    border-radius: 30px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0px;
    margin-right: 20px;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.slide-item .content-box li a:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--primary-color);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); }
.slide-item .content-box li a:hover:before  {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left; }
.slide-item .content-box li a { 
    color: #fff;
    position: relative;
    display: block;
    z-index: 1;
    line-height: 54px;
    border-radius: 30px;
    padding: 0px 40px 2px;
    transition: 0.3s; }
.slide-item .content-box li:first-child a{ background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.slide-item .content-box li:last-child a:after {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    border: 2px solid rgba(248, 248, 248, 0.3);
    border-radius: 30px; }
.slide-item .content-box li:last-child a:hover:after {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
.slide-item a.clean{ 
    position: relative;
    width: calc(100% - 180px);
    height: 100%;
    z-index: 1003; }


/* Home Services */
#home_services { padding: 80px 0; }
#home_services .grid {
    display: flex;
    align-items: center; }
#home_services .grid .item{ flex: 1 1 0px; }
#home_services .item .inner-box{
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0px 8px 16px 0px rgba(165, 165, 165, 0.4); }
#home_services .item-1 .inner-box { background-color: #282828; }
#home_services .item-3 .inner-box { background-color: #fff; }
#home_services .item-2 .inner-box {
    padding: 110px 40px;
    background-repeat: no-repeat;
    background-size: cover; }
#home_services .item-2 .inner-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    background-image: -moz-linear-gradient(0deg, rgb(4, 173, 191) 0%, rgb(3, 130, 143) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(4, 173, 191) 0%, rgb(3, 130, 143) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(4, 173, 191) 0%, rgb(3, 130, 143) 100%); }
#home_services .item .icon-box {
    position: relative;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 30px;
    color: var(--third-color); }
#home_services .item-2 .icon-box { color: #fff; }
#home_services .item .txt-box { position: relative; }
#home_services .item .txt-box h1{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    margin: 0 0 20px 0;
    font-size: 20px;
    line-height: 26px;
    font-weight: var(--primary-font-bold); }
#home_services .item .txt-box a{ color: #fff; }
#home_services .item-3 .txt-box a{ color: var(--black-color); }
#home_services .item .txt-box p{
    font-size: 15px;
    line-height: 26px;
    color: var(--silver-color);
    margin: 0;
    height: 78px;
    overflow: hidden; }
#home_services .item-2 .txt-box p{ color: #fff; }
#home_services .item-3 .txt-box p{ color: var(--black-color); }
#home_services .item .more-box { 
    position: relative;
    margin-top: 20px;
    z-index: 1; }
#home_services .item .more-box a{
    color: var(--silver-color);
    font-size: 15px;
    font-weight: var(--primary-font-bold); }
#home_services .item-3 .more-box a{ color: var(--black-color); }
#home_services .item .more-box a:hover{ color: var(--third-color); }
#home_services .item-2 .more-box a:hover{ color: var(--black-color); }
#home_services .item .inner-box:after {
    position: absolute;
    font-size: 190px;
    color: #9c9c9c;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(156, 156, 156, 0.3);
    right: 20px;
    bottom: 8px;
    line-height: 150px;
    letter-spacing: -15px;
    z-index: 0; }
#home_services .item-1 .inner-box:after { 
    content: "01";
    -webkit-text-stroke-color: rgba(156, 156, 156, 0.2); }
#home_services .item-2 .inner-box:after { content: "02"; }
#home_services .item-3 .inner-box:after { content: "03"; }
#home_services .all { 
    margin-top: 30px;
    text-align: center; }
#home_services .all a{
    color: var(--gray-color);
    font-weight: var(--primary-font-medium);
    text-decoration: underline; }
#home_services .all a:hover{ color: var(--black-color); }

/* Home About */
#home_about{ padding-bottom: 80px; }
#home_about .row-flex{
    display: flex;
    align-items: center; } 
#home_about .about-img{ padding-right: 0; }
#home_about .about-img p{ margin: 0; }
#home_about .about-img img{
    display: block;
    max-width: 100%;
    height: auto; }
#home_about .about-txt{ padding-left: 90px; }
#home_about .about-txt h2{
    position: relative;
    padding-left: 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 0 0 15px 0; 
    line-height: 24px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#home_about .about-txt h2:before{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 0;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#home_about .about-txt h1{
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 54px;
    line-height: 64px; }
#home_about .about-txt p{
    font-size: 15px;
    line-height: 26px;
    color: var(--gray-color);
    margin: 0; }
#home_about .about-txt h3{
    font-size: 15px;
    line-height: 26px;
    margin: 15px 0 0 0; }
#home_about .about-txt h3 a{
    color: var(--gray-color);
    font-weight: var(--primary-font-medium);
    text-decoration: underline; }
#home_about .about-txt h3 a:hover{ color: var(--black-color); }
#home_about .about-txt .widget-html:last-of-type{ margin-top: 50px; }
#home_about .about-txt .widget-html:last-of-type .block_content {
    display: flex;
    align-items: center; }
#home_about .about-txt ul:first-of-type{ margin-right: 82px; }
#home_about .about-txt ul:first-of-type::after{
    content: "";
    position: absolute;
    width: 2px;
    min-height: 112px;
    right: -42px;
    top: 0;
    background-image: url(../img/shape.png);
    background-position: center;
    background-repeat: no-repeat; }
#home_about .about-txt ul{
    position: relative;
    padding-top: 85px;
    background-repeat: no-repeat;
    background-position: left top; }
#home_about .about-txt ul.phone{ background-image: url(../img/icon-phone.png); }
#home_about .about-txt ul.mail{ background-image: url(../img/icon-mail.png); }
#home_about .about-txt li{
    font-size: 20px;
    line-height: 26px;
    font-weight: var(--primary-font-bold); }
#home_about .about-txt li a{ color: var(--black-color); }

/* Home Feedblog */
#home_feedblog { 
    position: relative;
    padding: 80px 0; }
#home_feedblog:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 400px;
    left: 0;
    top: 0;
    background-image: url(../img/bg-feedblog.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat; }

/* Home Reviews */
#home_reviews {
    position: relative;
    padding-bottom: 80px; } 
#home_reviews .head{ margin-bottom: 50px; }
#home_reviews .head h2{
    margin: 0 0 15px 0;
    width: 100%;
    display: flex;
    justify-content: center; }
#home_reviews .head h2 span{
    position: relative;
    margin: 0;
    padding: 0 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    line-height: 22px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#home_reviews .head h2 span:before,
#home_reviews .head h2 span:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#home_reviews .head h2 span:before { left: 0; }
#home_reviews .head h2 span:after { right: 0; }
#home_reviews .head h1 {
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 54px;
    line-height: 64px;
    text-align: center; }
#home_reviews .item { padding: 0 100px; }
#home_reviews .item p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 0; }
#home_reviews .item .stars {
    color: #ffe234;
    text-align: center;
    margin: 20px 0 10px; }
#home_reviews .item h2 {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--primary-font-bold);
    text-align: center; } 
#home_reviews .item h3 {
    margin: 0 0 25px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--primary-font-normal);
    text-align: center; } 


/* Feedblog */
.feedblog-head{ 
    margin-bottom: 50px;
    display: flex;
    justify-content: center; }
.feedblog-head h2 {
    position: relative;
    margin: 0;
    padding: 0 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    line-height: 22px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.feedblog-head h2:before,
.feedblog-head h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.feedblog-head h2:before { left: 0; }
.feedblog-head h2:after { right: 0; }
.feedblog .owl-item { padding: 0 15px; }
.feedblog .element{ 
    max-width: 400px;
    padding-bottom: 25px; }
.feedblog a.head-link:hover{ box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2); }


/* Blog */
.d-flex { display: flex !important; }
.justify-content-start, 
.justify-content-left { 
    justify-content: flex-start !important; }
.justify-content-end,
.justify-content-right { 
    justify-content: flex-end !important; } 
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; } 
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }
.center-column{ width: calc(100% - 360px); }
.center-column .list-blog{
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    width: 750px;
    margin: 0 auto; }
.center-column a.head-link,
.feedblog a.head-link{ 
    display: block; }
.center-column a.head-link:hover { box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.1); }
.center-column .element-img,
.feedblog .element-img{
    overflow: hidden;
    position: relative; }
.center-column .element-img:after,
.feedblog .element-img:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #020407;
    opacity: 0;
    z-index: 1;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
.center-column a.head-link:hover .element-img:after,
.feedblog a.head-link:hover .element-img:after{ 
    opacity: 0.2; }
.center-column .element-img span.play,
.feedblog .element-img span.play {
    position: absolute;
    width: 140px;
    height: 140px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2; }
.center-column .element-img span.play .play-icon,
.feedblog .element-img span.play .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background-color: var(--third-color);
    border-radius: 50%;
    color: #fff;
    padding-left: 5px;
    z-index: 4; }
.center-column .element-img span.play .play-icon svg,
.feedblog .element-img span.play .play-icon svg{ 
    width: 40px; }
.center-column .element-img span.play .ripple,
.feedblog .element-img span.play .ripple{
    position: absolute;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,.5);
    animation: ripple 2s linear infinite;
    transition: background 0.1s ease;
    z-index: 3; }
.center-column .element-img span.play .ripple-1,
.feedblog .element-img span.play .ripple-1 { 
    animation-delay: 0s; }
.center-column .element-img span.play .ripple-2,
.feedblog .element-img span.play .ripple-2 { 
    animation-delay: 0.3s; }
.center-column .element-img span.play .ripple-3,
.feedblog .element-img span.play .ripple-3 { 
    animation-delay: 1.7s; }
.center-column .element-info,
.feedblog .element-info{
    position: relative;
    background-color: #fff;
    border: 1px solid var(--silver-color);
    border-top: none;
    padding: 40px; }
.center-column .element-info .category,
.feedblog .element-info .category{
    position: absolute;
    top: -20px;
    right: 30px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: var(--primary-font-medium);
    z-index: 1;
    background-image: -moz-linear-gradient(0deg, rgb(4, 173, 191) 0%, rgb(3, 130, 143) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(4, 173, 191) 0%, rgb(3, 130, 143) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(4, 173, 191) 0%, rgb(3, 130, 143) 100%); }
.center-column .element-info .title,
.feedblog .element-info .title{
    font-weight: var(--primary-font-bold);
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    height: 48px;
    overflow: hidden;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.center-column a.head-link:hover .element-info .title,
.feedblog a.head-link:hover .element-info .title{ 
    color: var(--third-color); }
.center-column .element-info .date,
.feedblog .element-info .date{ 
    margin-bottom: 10px; }
.center-column .element-info .date-icon,
.feedblog .element-info .date-icon{
    color: var(--black-color);
    margin-right: 10px; }
.center-column .element-info .date-icon svg,
.feedblog .element-info .date-icon svg{ 
    width: 13px; }
.center-column .element-info .date-txt,
.feedblog .element-info .date-txt{
    color: var(--black-color);
    font-weight: var(--primary-font-medium);
    text-transform: capitalize; }
.center-column .element-info .description,
.feedblog .element-info .description{
    margin-top: 15px;
    line-height: 24px;
    color: var(--black-color);
    max-height: 72px;
    overflow: hidden; }

.center-column .article-blog{
    width: 750px;
    margin: 0 auto; }
.center-column .article-img{
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 500px; }
.center-column .article-img img{ transform: translateY(-7px); } 
.center-column .article-img a{ 
    position: relative;
    display: block;
    height: 100%;
    width: 100%; }
.center-column .article-img a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #020407;
    opacity: 0;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.center-column .article-img a:hover:after{ opacity: 0.2; }
.center-column .article-img a span.play {
    position: absolute;
    width: 180px;
    height: 180px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2; }
.center-column .article-img a span.play .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    padding-left: 7px;
    z-index: 4; }
.center-column .article-img a span.play .play-icon svg{ width: 60px; }
.center-column .article-img a span.play .ripple{
    position: absolute;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.5);
    animation: ripple 2s linear infinite;
    transition: background 0.1s ease;
    z-index: 3; }
.center-column .article-img a span.play .ripple-1 { animation-delay: 0s; }
.center-column .article-img a span.play .ripple-2 { animation-delay: 0.3s; }
.center-column .article-img a span.play .ripple-3 { animation-delay: 1.7s; }
.center-column .article-info{
    padding: 30px;
    background-color: #f8fafd;
    border: 1px solid var(--silver-color);
    border-top: none;
    border-radius: 0 0 10px 10px; }
.center-column .article-info .date-icon{
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 15px; }
.center-column .article-info .date-icon svg{ width: 11px; }
.center-column .article-info .date-txt,
.center-column .article-info .share h2{
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize; }
.center-column .article-info .share h2{
    margin: 0 8px 0 0;
    font-weight: var(--primary-font-normal);
    line-height: 22px; }
.center-column .article-info .share li{ margin-left: 7px; }
.center-column .article-info .share li a,
.center-column .article-info .share li button{
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    border: none;
    text-align: center;
    line-height: 24px;
    font-size: 13px; }
.center-column .article-info .share li a:hover,
.center-column .article-info .share li button:hover{
    background-color: var(--primary-color);
    color: #fff; }
.center-column .article-info h1.title{
    margin: 30px 0;
    font-size: 22px;
    font-weight: var(--primary-font-bold);
    line-height: 34px; }
.center-column .article-info .description h1{
    line-height: 30px;
    font-size: 20px;
    font-weight: var(--primary-font-bold); 
    line-height: 34px;
    margin: 0 0 15px 0; }
.center-column .article-info .description p+h1,
.center-column .article-info .description ul+h1{ 
    margin-top: 20px; }
.center-column .article-info .description h2{
    line-height: 26px;
    font-size: 18px;
    font-weight: var(--primary-font-bold);
    margin: 0 0 10px 0; }
.center-column .article-info .description p+h2,
.center-column .article-info .description ul+h2{ 
    margin-top: 15px; }
.center-column .article-info .description h3{
    line-height: 26px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 0 0 10px 0; }
.center-column .article-info .description p{
    color: var(--gray-color);
    line-height: 26px; }
.center-column .article-info .description p strong,
.center-column .article-info .description p b{
    font-weight: var(--primary-font-medium);
    color: var(--black-color); }
.center-column .article-info .description ul{ margin: 15px 0; }
.center-column .article-info .description li{
    position: relative;
    color: var(--gray-color);
    line-height: 26px;
    padding-left: 20px;
    margin-bottom: 5px; }
.center-column .article-info .description li:last-child{ margin-bottom: 0; }
.center-column .article-info .description li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color); }
.center-column .article-info .description p a,
.center-column .article-info .description li a{
    color: var(--gray-color);
    text-decoration: underline; }
.center-column .article-info .description p a:hover,
.center-column .article-info .description li a:hover{ 
    color: var(--black-color); }
.center-column .article-info .pages,
.center-column .article-info .tags { 
    flex-wrap: wrap;
    margin-top: 30px; }
.center-column .article-info .tags a{ 
    margin-top: 10px;
    margin-right: 20px;
    color: var(--gray-color); } 
.center-column .article-info .tags a:last-of-type{ margin-right: 0; }
.center-column .article-info .tags a:hover{ color: var(--black-color); }
.center-column .article-info .tags-icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 10px;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.center-column .article-info a:hover .tags-icon {
    background-color: var(--primary-color);
    color: #fff; }
.center-column .article-info .tags-icon svg { width: 11px; }
.center-column .article-info .pages a{ 
    margin-top: 10px;
    margin-right: 20px;
    color: var(--black-color);
    font-weight: var(--primary-font-medium); } 
.center-column .article-info .pages a:last-of-type{ margin-right: 0; }
.center-column .article-info .pages a:hover{ color: var(--primary-color); }
.center-column .article-info .pages p{
    margin-top: 10px;
    margin-bottom: 0;
    margin-right: 15px;
    color: var(--gray-color); } 
.center-column .article-info .back{ margin-top: 40px; }
.center-column .article-info .back a{
    display: inline-block;
    background-color: var(--gray-color);
    line-height: 20px;
    padding: 11px 25px 13px 25px;
    color: #fff;
    font-size: 14px;
    font-weight: var(--primary-font-medium);
    border-radius: 3px;
    box-shadow: 3px 4px 5px 0 rgba(0,0,0,0.1); }
.center-column .article-info .back a:hover{ background-color: var(--black-color); }
.center-column .pagination-box{
    width: 750px;
    margin: 40px auto 0 auto; }
.center-column .pagination-box .count{ color: var(--gray-color); }
.center-column .pagination-box .count b{ font-weight: var(--primary-font-medium); }
.center-column .pagination{ 
    margin: 0;
    border-radius: 0; }
.center-column .pagination span{ cursor: default !important; }
.center-column .pagination svg{ width: 22px; }
.center-column .pagination li{ margin-right: 8px; }
.center-column .pagination li:last-child{ margin-right: 0; }
.center-column .pagination span,
.center-column .pagination a{
    border-radius: 3px;
    display: block;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ddecf7;
    padding: 0;
    text-align: center;
    line-height: 40px;
    color: var(--black-color);
    margin: 0; }
.center-column .pagination .pagination-nav span,
.center-column .pagination .pagination-nav a{
    display: flex;
    align-items: center;
    justify-content: center; }
.center-column .pagination span:hover,
.center-column .pagination span:focus{
    background-color: #ddecf7;
    color: var(--black-color); }
.center-column .pagination .pagination-nav span{ color: #fff !important; }
.center-column .pagination a:hover{
    background-color: var(--silver-color);
    color: var(--black-color); }
.center-column .pagination .active span{
    background-color: var(--primary-color);
    color: #fff; }
@keyframes ripple{
    0%{transform:scale(.2);opacity:0}
    50%{opacity:.9}
    100%{transform:scale(1em);opacity:0}
}

.right-column{
    flex: none;
    width: 360px;
    padding-left: 30px; }
.right-column .box{
    background-color: #f8fafd;
    border: 1px solid var(--silver-color);
    border-radius: 5px;
    margin-bottom: 30px; }
.right-column .box-head{
    display: flex;
    align-items: center;
    padding: 0 30px;
    height: 60px;
    border-bottom: 1px solid var(--silver-color);
    font-weight: var(--primary-font-medium); }
.right-column .box-body{ padding: 25px 30px; }
.right-column .box-body .categories li{ margin-bottom: 15px; }
.right-column .box-body .categories li:last-child{ margin-bottom: 0; }
.right-column .box-body .categories li a{
    height: 24px;
    color: var(--black-color);
    position: relative; }
.right-column .box-body .categories li a:hover{
    padding-left: 10px;
    color: var(--primary-color); }
.right-column .box-body .categories li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 3px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease; }
.right-column .box-body .categories li a:hover:before {
    opacity: 1;
    visibility: visible; }
.right-column .box-body .categories li a .badge{
    background-color: #ddecf7;
    font-weight: var(--primary-font-medium);
    height: 20px;
    color: var(--black-color);
    padding: 0 7px;
    line-height: 20px; } 
.right-column .recents li{ margin-bottom: 15px; }
.right-column .recents li:last-child{ margin-bottom: 0; }
.right-column .recent-img{
    width: 95px;
    border-radius: 3px;
    overflow: hidden; }
.right-column .recent-info{
    flex: none;
    width: 148px; }
.right-column .recent-info h5{
    margin: 0;
    line-height: 20px;
    font-weight: var(--primary-font-medium);
    max-height: 40px;
    overflow: hidden;
    font-size: 14px; }
.right-column .recent-info h5 a{ color: var(--black-color); }
.right-column .recent-info h5 a:hover{ color: var(--primary-color); }
.right-column .recent-info .date{ margin-top: 12px; }
.right-column .recent-info .date-icon{
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 15px; }
.right-column .recent-info .date-icon svg{ width: 11px; }
.right-column .recent-info .date-txt{
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize; }
.right-column .tags{
    display: flex;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-left: -10px; }
.right-column .tags a{
    display: block;
    margin: 10px 0 0 10px;
    line-height: 30px;
    color: var(--gray-color);
    border-radius: 3px;
    padding: 0 10px;
    background-color: var(--silver-color);
    font-size: 14px; }
.right-column .tags a:hover{
    color: #fff;
    background-color: var(--primary-color); }


/* Service Detail*/
#inner { padding: 50px 0 60px 0; }
#product #inner { padding-bottom: 20px; }
#calendly #inner { padding: 0 0 50px 0; }
#inner .wrapper{
    display: flex;
    justify-content: space-between; }

#inner .wrapper .sidebar{ 
    width: 360px;
    flex: none; }
.sidebar .categoriesbox{
    position: relative;
    border: 2px solid #ebebeb;
    padding: 30px 0; }
.sidebar .categoriesbox a {
    position: relative;
    font-size: 15px;
    font-weight: var(--primary-font-bold);
    padding: 12px 70px 12px 50px;
    color: var(--black-color);
    display: flex;
    align-items: center; }
.sidebar .categoriesbox a.current { 
    padding: 12px 50px 12px 70px;
    color: #fff;
    background-image: -moz-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%); }
.sidebar .categoriesbox a.current:before,
.sidebar .categoriesbox a:after{
    font-family: "FontAwesome5";
    font-weight: 900;
    font-size: 16px;
    content: "\f105";
    position: absolute;
    right: 50px;
    color: var(--black-color); }
.sidebar .categoriesbox a.current:before{ 
    color: #fff;
    right: inherit;
    left: 50px; }
.sidebar .categoriesbox a.current:after{ display: none; }

.sidebar .contactform{
    position: relative;
    margin-top: 30px;
    padding: 40px;
    background-image: -moz-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(35, 74, 124) 0%, rgb(7, 43, 89) 100%); }
.sidebar .contactform h1,
.landing-form .contactform h1{
    margin: 0 0 25px 0;
    text-align: center;
    font-weight: var(--primary-font-bold);
    font-size: 20px;
    line-height: 30px;
    color: #fff; }
.contactform .form-group{
    position: relative;
    margin-bottom: 0; }
.contactform .form-group svg{
    position: absolute;
    bottom: 20px;
    right: 18px;
    width: 18px;
    fill: #fff; }
.contactform .form-control {
    padding: 0 40px 0 15px;
    height: 56px;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.4);
    border-bottom: none;
    background: transparent;
    color: #fff; }
.contactform textarea.form-control { 
    padding-top: 10px;
    min-height: 88px;
    line-height: 22px;  
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.contactform .form-control:focus { 
    border-color: #d5d7d2;
    border-bottom: 1px solid #d5d7d2; }
.contactform .form-group.ptd{
    display: flex;
    align-items: center;
    margin: 20px 0; }
.contactform .form-group.ptd label{
    margin: 0;
    font-weight: var(--primary-font-normal);
    color: var(--silver-color);
    line-height: 24px;
    font-size: 13px; }
.contactform .form-group.ptd label a{
    color: #fff;
    font-weight: var(--primary-font-medium); }
.contactform .form-group.ptd label a:hover{ text-decoration: underline; }
.contactform .form-group.submit{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; }

#inner .wrapper .column{ width: calc(100% - 415px); }
#inner .service-top{ padding-bottom: 45px; }
#inner .service-top .image{ margin-bottom: 40px; }
#inner .service-top h2.subtitle{
    position: relative;
    padding-left: 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 0 0 15px 0;
    line-height: 24px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#inner .service-top h2.subtitle:before{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 0;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#inner .service-top h1.title{
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 46px;
    line-height: 56px; }
#inner .service-top .description p,
#inner .service-top .description li,
#inner .service-auxiliar .description p,
#inner .service-auxiliar .description li{
    font-size: 15px;
    line-height: 26px;
    color: var(--gray-color); }
#inner .service-top .description p strong,
#inner .service-top .description li strong,
#inner .service-auxiliar .description p strong,
#inner .service-auxiliar .description li strong{
    font-weight: var(--primary-font-bold);
    color: var(--black-color); }
#inner .service-top .description h2,
#inner .service-auxiliar .description h2{ 
    margin: 0 0 20px 0;
    font-weight: var(--primary-font-bold);
    font-size: 30px;
    line-height: 40px; }
#inner .service-top .description p,
#inner .service-auxiliar .description p{ 
    margin-bottom: 15px; }
#inner .service-top .description li,
#inner .service-auxiliar .description li{
    position: relative;
    margin-bottom: 8px;
    padding-left: 26px; }
#inner .service-top .description li:last-child,
#inner .service-auxiliar .description li:last-child{ 
    margin-bottom: 15px; }
#inner .service-top .description li:before,
#inner .service-auxiliar .description li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--third-color); }
#inner .service-action{ margin-bottom: -120px; }
#inner .service-action .action{
    position: relative;
    z-index: 2;
    padding: 60px 170px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#inner .service-action h3{
    margin: 0 0 25px 0;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: var(--primary-font-medium); }
#inner .service-action h1{
    margin: 0 0 25px 0;
    color: #fff;
    text-align: center;
    font-size: 32px;
    line-height: 44px;
    font-weight: var(--primary-font-medium); }
#inner .service-action p{
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 16px; }
#inner .service-action .quote{
    display: flex;
    justify-content: center;
    margin-top: 40px; }
#inner .service-action .quote a{
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #fff;
    font-weight: var(--primary-font-medium);
    border-radius: 30px;
    overflow: hidden;
    vertical-align: middle;
    background-color: transparent; }
#inner .service-action .quote a:hover{ color: var(--black-color); }
#inner .service-action .quote a span {
    position: relative;
    display: block;
    z-index: 1;
    padding: 10px 40px;
    border-radius: 30px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease; }
#inner .service-action .quote a span:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); }
#inner .service-action .quote a:hover span:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left; }
#inner .service-choose{ 
    position: relative;
    z-index: 1;
    padding: 190px 0 70px 0;
    margin-bottom: 60px;
    background-color: var(--silver-color); }
#inner .service-choose ul{
    display: flex;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px; }
#inner .service-choose li {
    position: relative;
    flex: 1 1 0px;
    padding: 0 15px 0 100px; }
#inner .service-choose li::before {
    position: absolute;
    font-family: Flaticon;
    font-style: normal;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid var(--second-color);
    border-radius: 50%;
    color: var(--second-color);
    background-color: #fff;
    top: 7px;
    left: 15px; }
#inner .service-choose li:nth-child(1)::before { content: "\f10f"; }
#inner .service-choose li:nth-child(2)::before { content: "\f14a"; }
#inner .service-choose li:nth-child(3)::before { content: "\f16e"; }
#inner .service-choose li h1 {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: var(--primary-font-bold); }
#inner .service-choose li p{
    color: var(--gray-color);
    height: 44px;
    margin: 0;
    overflow: hidden; }
#inner .service-auxiliar{
    padding-top: 15px;
    padding-bottom: 55px;
    align-items: center; }
#inner .service-auxiliar .image {
    width: 360px;
    flex: none; }
#inner .service-auxiliar .description { width: calc(100% - 415px); }
#inner .service-bottom{ padding-bottom: 35px; }


/* About */
#company_box .row-flex{
    display: flex;
    align-items: center;
    justify-content: space-between; } 
#company_box .about-img{ 
    width: 485px;
    padding-left: 0; }
#company_box .about-img p{ margin: 0; }
#company_box .about-img img{
    display: block;
    max-width: 100%;
    height: auto; }
#company_box .about-txt{ padding-right: 90px; }
#company_box .about-txt h2{
    position: relative;
    padding-left: 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 0 0 15px 0; 
    line-height: 24px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#company_box .about-txt h2:before{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 0;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
#company_box .about-txt h1{
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 54px;
    line-height: 64px; }
#company_box .about-txt p{
    font-size: 15px;
    line-height: 26px;
    color: var(--gray-color);
    margin-bottom: 15px; }
#company_box .about-txt h3{
    font-size: 15px;
    line-height: 26px;
    margin: 15px 0 0 0; }
#company_box .about-txt h3 a{
    color: var(--gray-color);
    font-weight: var(--primary-font-bold);
    text-decoration: underline; }
#company_box .about-txt h3 a:hover{ color: var(--black-color); }
#company_box .about-txt .widget-html:last-of-type{ margin-top: 50px; }
#company_box .about-txt .widget-html:last-of-type .block_content {
    display: flex;
    align-items: center; }
#company_box .about-txt ul:first-of-type{ margin-right: 82px; }
#company_box .about-txt ul:first-of-type::after{
    content: "";
    position: absolute;
    width: 2px;
    min-height: 112px;
    right: -42px;
    top: 16px;
    background-image: url(../img/shape.png);
    background-position: center;
    background-repeat: no-repeat; }
#company_box .about-txt ul{
    position: relative;
    padding-top: 85px;
    background-repeat: no-repeat;
    background-position: left top; }
#company_box .about-txt ul.phone{ background-image: url(../img/icon-phone.png); }
#company_box .about-txt ul.mail{ background-image: url(../img/icon-mail.png); }
#company_box .about-txt li{
    font-size: 20px;
    line-height: 26px;
    font-weight: var(--primary-font-bold); }
#company_box .about-txt li a{ color: var(--black-color); }
#company #inner .service-action{ 
    margin-bottom: 10px;
    margin-top: 60px; } 


/* Contact */
#contact .title-head{ margin-bottom: 40px; }
#contact .contact-box form{
    width: 900px;
    margin: 0 auto; }
#contact .form-flex{
    display: flex;
    justify-content: space-between; }
#contact .form-flex .form-group{
    width: 26%;
    margin-left: 20px; }
#contact .form-flex .large{
    width: 48%;
    margin-left: 0; }
#contact .form-group{
    position: relative;
    margin-bottom: 20px; }
#contact .form-group label{
    display: block;
    margin-bottom: 10px;
    font-weight: var(--primary-font-bold); }
#contact .form-group i{
    position: absolute;
    bottom: 20px;
    right: 18px;
    font-size: 16px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient( 0deg, rgb(209,100,26) 0%, rgb(192,40,42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(209,100,26) 0%, rgb(192,40,42) 100%); }
#contact .form-group i.top{
    bottom: inherit;
    top: 50px; }
#contact .form-control {
    padding: 0 40px 0 15px;
    height: 56px;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid transparent;
    background: #f5f7f2;
    color: var(--black-color); }
#contact textarea.form-control { 
    padding-top: 10px;
    min-height: 110px;
    line-height: 22px; }
#contact .form-control:focus { border-color: #d5d7d2; }
#contact .form-group.ptd{
    display: flex;
    align-items: center; }
#contact .form-group.ptd label{
    margin: 0;
    font-weight: var(--primary-font-normal);
    color: var(--gray-color);
    line-height: 24px; }
#contact .form-group.ptd label a{
    color: var(--black-color);
    font-weight: var(--primary-font-medium); }
#contact .form-group.ptd label a:hover{ text-decoration: underline; }
#contact .form-group.submit{
    display: flex;
    align-items: center;
    height: 50px; }


/* Confirmation */
#confirmation .confirmation-box{
    position: relative;
    margin: 20px auto;
    text-align: center;
    width: 600px; }
#confirmation .confirmation-box svg{
    fill: var(--second-color);
    width: 60px; }
#confirmation .confirmation-box h1{
    margin: 30px 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 36px; }
#confirmation .confirmation-box p{
    color: var(--gray-color);
    font-size: 18px;
    line-height: 30px;
    margin: 0; }


/* Privacy */
#privacy.content_only .privacy-box{ padding: 44px; }
#privacy .privacy-box h2{
    margin: 25px 0 15px 0;
    font-size: 15px;
    font-weight: var(--primary-font-bold); }
#privacy .privacy-box p,
#privacy .privacy-box li{ 
    color: var(--gray-color); }
#privacy .privacy-box p strong,
#privacy .privacy-box li strong{
    color: var(--black-color);
    font-weight: var(--primary-font-medium); }
#privacy .privacy-box li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px; }
#privacy .privacy-box li:before{
    content: "";
    position: absolute;
    left: 2px;
    bottom: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-color); }


/* Footer */
#footer{
    position: relative;
    background-color: #282828;
    padding-top: 50px;
    margin-top: 40px; }
#footer .wrapper{ display: flex; }
#footer .footer-about{
    width: 370px;
    margin-top: -90px;
    background-color: #fff;
    border-top: 6px solid var(--second-color);
    padding: 150px 50px 60px 50px;
    background-position: 50px 50px;
    background-repeat: no-repeat; }
.lang_es #footer .footer-about{ background-image: url(../img/logo-es.png); }
.lang_en #footer .footer-about{ background-image: url(../img/logo-en.png); }
#footer .footer-about p{
    margin-bottom: 0;
    line-height: 24px;
    font-size: 15px;
    color: var(--gray-color); }
#footer .footer-about p strong{ 
    color: var(--black-color);
    font-weight: var(--primary-font-bold); }
#footer .footer-about .social{ margin-top: 30px; }
#footer .footer-about .social ul{
    display: flex;
    align-items: center; }
#footer .footer-about .social li{ margin-right: 12px; }
#footer .footer-about .social li:last-child{ margin-right: 0; }
#footer .footer-about .social li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #dadada;
    border-radius: 50%;
    color: var(--gray-color);
    background: transparent;
    -webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease; }
#footer .footer-about .social li a:hover{
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    color: #fff;
    border-color: transparent; }
#footer .footer-contact{ 
    padding-left: 80px;
    padding-right: 15px;
    width: 420px; }
#footer .info h2{
    margin: 30px 0 40px 0;
    color: #fff;
    font-weight: var(--primary-font-bold);
    font-size: 18px; }
#footer .info ul{
    position: relative;
    padding-left: 34px;
    margin-bottom: 15px; }
#footer .info ul:last-of-type{ margin-bottom: 0; }
#footer .info ul:before{
    font-family: "FontAwesome5";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--second-color); }
#footer .info ul.mobile:before{ 
    font-weight: 300;
    content: "\f232"; }
#footer .info ul.mail:before{ 
    content: "\f0e0";
    left: 0; }
#footer .info ul.address:before{ content: "\f3c5"; }
#footer .info li,
#footer .info li a{
    color: #cdcecf;
    font-size: 15px; }
#footer .links{ margin-top: 40px; }
#footer .links li{
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px; }
#footer .links li:last-child{ margin-bottom: 0; }
#footer .links li:before{
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--second-color); }
#footer .links li a{
    color: #cdcecf;
    text-decoration: underline;
    font-size: 15px; }
#footer .info li a:hover,
#footer .links li a:hover{ 
    color: #fff; }
#footer .social-feed,
#footer .social-fake{
    background-color: #282828;
    width: 279px;
    height: 367px;
    overflow: hidden; }
#footer .social-fake{ background-image: url(../img/insta-tmp.jpg); }
#footer .social-fake a{
    display: block;
    width: 100%;
    height: 100%; }
#footer .copyright{
    margin-top: 80px;
    padding: 25px 0 30px 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid var(--second-color); }

.wa-mobile {
    position: fixed;
    width: 56px;
    height: 56px;
    left: calc(97% - 24px);
    top: calc(97% - 56px);
    z-index: 8001; }
.wa-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    font-size: 34px;
    background: #25d366; }
.wa-mobile a:hover { background: #128c7e; }
.o-livechat-root{ z-index: 8002 !important; }


/* Landings */
#slider {
	position: relative;
    display: block;
    height: 100vh; }
#slider .slide-item {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	overflow: hidden;
    height: 100vh;
    padding-top: 160px;
    padding-right: 200px; }
#slider .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; }
#slider .auto-container { width: 940px; }
#slider .content-box {
	position: relative;
	z-index: 5; }
#slider .content-box h3 {
	display: block;
	font-size: 18px;
	line-height: 24px;
	color: #ffffff;
	font-weight: var(--primary-font-medium);
	opacity: 0;
	margin: 0 0 20px 0;
	-webkit-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px); }
#slider .active .content-box h3 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms; }
#slider .content-box h2 {
	display: block;
	font-size: 70px;
	line-height: 80px;
	color: #ffffff;
	font-weight: var(--primary-font-normal);
    letter-spacing: -3px;
	opacity: 0;
	margin: 0 0 40px 0;
	position: relative;
	-webkit-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px); }
#slider .content-box h2 strong { font-weight: var(--primary-font-bold); }
#slider .active .content-box h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	transition: all 900ms ease;
	-webkit-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms; }
#slider .content-box p {
	display: block;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	opacity: 0;
	margin-bottom: 35px;
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	transform: translateY(80px);
    max-width: 80%; }
#slider .active .content-box p {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	-webkit-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms; }
#slider .content-box .btn-box {
    display: flex;
    align-items: center; }
#slider .btn-box .btn-orange { margin-right: 20px; }
#slider .btn-box .btn-transparent span{
    display: flex;
    align-items: center;
    padding-right: 35px; }
#slider .btn-box .btn-transparent span i{ margin-left: 12px; }

.slider-shape-1 {
    position: absolute;
    top: 435px;
    left: -200px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(255, 255, 255);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0.4;
    width: 415px;
    height: 415px;
    z-index: 3;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
.slider-shape-2 {
    position: absolute;
    top: 160px;
    right: -343px;
    border-radius: 50%;
    background-color: var(--second-color);
    width: 543px;
    height: 543px;
    opacity: 0.7;
    z-index: 2;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: banner3Shake;
    animation-name: banner3Shake;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}
@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.landing-box{ padding: 50px 0 80px 0; }
.landing-top{ 
    display: flex;
    align-items: center;
    padding-bottom: 70px; } 
.landing-top .image {
    position: absolute;
    width: 430px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; }
#auxone .landing-top .image {
    height: 620px;
    background-image: url(../img/bg-auxone.jpg); }
#auxtwo .landing-top .image {
    height: 670px;
    background-image: url(../img/bg-auxtwo.jpg); }
.landing-top .image .nc-btn{
    position: absolute;
    bottom: -25px;
    right: 20px; }
.landing-top .info {
    position: relative;
    padding: 70px 50px 70px 35%;
    box-shadow: 0px 8px 16px 0px rgba(40, 40, 40, 0.1);
    background-color: #fff;
    margin-left: 100px; }
.landing-top .widget-html h2 {
    position: relative;
    padding-left: 70px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 10px 0 15px 0;
    line-height: 24px;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.landing-top .widget-html h2:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 0;
    top: 11px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }
.landing-top .widget-html h1 {
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 46px;
    line-height: 56px; }
.landing-top .widget-html p,
.landing-top .widget-html li,
.landing-info .widget-html p,
.landing-info .widget-html li,
.landing-info .panel-body p,
.landing-info .panel-body li {
    font-size: 15px;
    line-height: 26px;
    color: var(--gray-color); }
.landing-top .widget-html p strong,
.landing-top .widget-html li strong,
.landing-info .widget-html p strong,
.landing-info .widget-html li strong,
.landing-info .panel-body p strong,
.landing-info .panel-body li strong {
    font-weight: var(--primary-font-bold);
    color: var(--black-color); }
.landing-top .widget-html li,
.landing-info .widget-html li,
.landing-info .panel-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px; }
.landing-top .widget-html li::before,
.landing-info .widget-html li::before,
.landing-info .panel-body li::before {
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f00c";
    font-size: 14px;
    color: #d1641a;
    position: absolute;
    left: 2px;
    top: 0; }
.landing-box .wrapper{
    display: flex;
    justify-content: space-between; }
.landing-box .landing-info { width: calc(100% - 415px); }
.landing-box .landing-form {
    width: 360px;
    flex: none; }
.landing-info h3{
    margin: 0 0 30px 0;
    font-size: 15px;
    font-weight: var(--primary-font-bold); }
.landing-info .panel{
    position: relative;
    display: block;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease; }
.landing-info .panel + .panel { margin-top: 20px; }
.landing-info .panel-heading{ 
    padding: 0;
    background-color: #fff;
    font-size: 15px;
    font-weight: var(--primary-font-bold); }
.landing-info .panel-heading a{
    position: relative;
    display: flex;
    line-height: 20px;
    color: var(--black-color);
    padding: 20px 40px; }
.landing-info .panel-heading a:before{
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f107";
    font-size: 15px;
    position: absolute;
    right: 40px;
    top: 21px;
    color: var(--black-color); }
.landing-info .panel-heading a[aria-expanded="true"]::before {
    transform: rotate(180deg);
    color: #d1641a; }
.landing-info .panel-body{ 
    padding: 20px 40px;
    border-color: #e4e4ea !important; }
.landing-form .contactform{
    position: relative;
    margin-top: 0;
    padding: 40px;
    background-image: -moz-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(209, 100, 26) 0%, rgb(192, 40, 42) 100%); }



/*** 4. Responsive ***/
@media (min-width: 1580px) and (max-width: 1900px) { 
    
}

@media (min-width: 1280px) and (max-width: 1579px) { 
   
}

@media (min-width: 992px) and (max-width: 1279px) { 

}

@media (min-width: 767px) and (max-width: 991px) {
    #header_top .widget-html { padding-right: 30px; }
    #header_top .widget-html ul { margin-right: 0; }
    #header_top .widget-html ul.mail {
        display: none; }
    #header_top .language { padding: 0 30px; }
    #header_top .quote { padding-left: 30px; }
    .navbar-content { font-size: 14px; }
    .navbar-content li { margin: 0 15px; }
    .navbar-content li.first-item { margin-left: 0; }
    .navbar-content li.last-item { margin-right: 0; }
}

@media (max-width: 767px) { 
    #header_top .widget-html ul.mail,
    #header_top .language>span { 
        display: none; }
    #header_top .wrapper{ 
        justify-content: flex-start;
        flex-wrap: wrap; }
    #header_top .language {
        height: 50px;
        padding: 0 0 0 20px;
        border-right: none; }
    #header_top .widget-html { padding-right: 0; }
    #header_top .widget-html ul {
        padding-left: 30px;
        margin-right: 20px; }
    #header_top .widget-html ul:before {
        top: 2px;
        font-size: 18px; }
    #header_top .language .dropdown-menu {
        padding: 0;
        min-width: 130px;
        left: -20px; }
    #header_bottom { background-color: #fff; }
    #header .header-logo { padding: 15px 0; }
    #header .header-logo img{ max-height: 40px; }

    .navbar-default { min-height: 0; }
    .navbar-header .navbar-toggle {
        position: fixed;
        top: 65px;
        right: 15px;
        z-index: 8000;
        margin: 0;
        border: 0;
        border-radius: 0;
        width: 40px;
        height: 40px;
        font-size: 20px;
        color: #fff;
        background: var(--second-color); }
    .navbar-header .navbar-toggle:focus,
    .navbar-header .navbar-toggle:hover {
        background: var(--second-color); }
    .navbar-default .navbar-content{
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 8004;
        width: 80%;
        height: 100% !important;
        background: rgba(255,255,255,1);
        padding-top: 100px;
        border-top: none;
        transition: 0.4s ease;
        -o-transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
    .navbar-default .collapse{ display: block; }
    .navbar-default .navbar-content.in{ right: 0%; }
    .navbar-close .navbar-toggle {
        position: absolute;
        top: 15px;
        left: 24px;
        z-index: 8005;
        margin: 0;
        border: 0;
        border-radius: 0;
        width: 40px;
        height: 40px;
        background: transparent !important;
        padding: 4px;
        fill: var(--gray-color); }
    .navbar-default .navbar-content ul {
        margin: 0;
        float: inherit;
        background: none; }
    .navbar-content .dropdown-menu ul:before { display: none; }

    .navbar-content li {
        margin: 0 !important;
        padding: 0; }
    .navbar-content li:before,
    .navbar-content li:after {
        display: none; }
    .navbar-content li a {
        color: var(--gray-color) !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 20px 30px;
        display: block; }
    .navbar-content li a:hover, 
    .navbar-content li.active a {
        background-color: transparent !important;
        color: var(--second-color) !important;
        padding: 20px 30px !important; }

    .navbar-content .dropdown-menu {
        left: 0 !important;
        background: var(--second-color) !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important; }
    .navbar-content .open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important; }
    .navbar-content .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none; }
    .navbar-content .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important; }
    .navbar-content .dropdown-menu ul li a { padding: 20px 30px !important; }

    #breadcrumb {
        height: 260px;
        padding-top: 120px; }
    #breadcrumb .video-layer video { width: 100%; }
    #breadcrumb .container { height: 140px; }
    #breadcrumb .wrapper h1 {
        font-size: 28px;
        line-height: 34px; }
    #breadcrumb .path { 
        display: block;
        font-size: 13px;
        height: 23px;
        overflow: hidden; }

    .seq-wrapper .slide-item { padding-top: 120px; }
    .slide-item .auto-container { width: 300px; }
    .slide-item .content-box h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 0 0 15px 0; }
    .slide-item .content-box h2 {
        font-size: 46px;
        line-height: 48px;
        margin: 0 0 30px 0; }
    .slide-item .content-box p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
        max-width: 100%; }
    .slide-item .content-box ul { flex-wrap: wrap; }
    .slide-item .content-box li {
        margin-right: 20px;
        margin-bottom: 15px;
        font-size: 14px; }
    .slide-item .content-box li:last-child { margin-bottom: 0; }
    .slide-item .content-box li a { line-height: 48px; }

    #home_services { padding: 80px 0 50px 0; }
    #home_services .grid,
    #home_about .row-flex,
    #home_about .about-txt .widget-html:last-of-type .block_content,
    #company_box .row-flex,
    #company_box .about-txt .widget-html:last-of-type .block_content { 
        display: block; }
    #home_about .about-img { padding-right: 15px; }
    #company_box .about-img {
        width: 100%;
        padding-left: 15px; }
    #home_about .about-txt { 
        margin-top: 40px;
        padding-left: 15px; }
    #company_box .about-txt { 
        margin-top: 40px;
        padding-right: 15px; }
    #home_about .about-txt h1,
    #home_reviews .head h1,
    #company_box .about-txt h1 {
        font-size: 32px;
        line-height: 40px; }
    #home_reviews .item { padding: 0; }
    #home_about .about-txt ul:first-of-type,
    #company_box .about-txt ul:first-of-type {
        margin-right: 0;
        margin-bottom: 40px; }
    #home_about .about-txt ul,
    #company_box .about-txt ul {
        padding-top: 65px;
        background-size: 50px; }
    #home_about .about-txt ul:first-of-type::after,
    #company_box .about-txt ul:first-of-type::after {
        display: none; }
    #home_about .about-txt .widget-html:last-of-type,
    #company_box .about-txt .widget-html:last-of-type {
        margin-top: 40px; }
    #home_about .about-txt li,
    #company_box .about-txt li {
        font-size: 18px;
        line-height: 24px; }

    #inner .wrapper .sidebar,
    .landing-box .landing-form,
    #inner .wrapper .column,
    #inner .service-auxiliar .description,
    #inner .service-auxiliar .image { 
        width: 100%; }
    .sidebar .contactform,
    .landing-form .contactform { 
        padding: 30px; }
    #inner .wrapper,
    #inner .service-choose ul { 
        flex-wrap: wrap; }
    #inner .service-top h1.title,
    .landing-top .widget-html h1 {
        font-size: 32px;
        line-height: 40px; }
    .sidebar .contactform h1, 
    .landing-form .contactform h1 {
        font-size: 18px;
        line-height: 26px; }
    #inner .service-action .action { padding: 60px 30px; }
    #inner .service-action h1 {
        font-size: 20px;
        line-height: 30px; }
    #inner .service-choose { padding: 170px 0 50px 0; }
    #inner .service-choose li { margin-bottom: 25px; }
    #inner .service-choose li:last-child { margin-bottom: 0; }
    #inner .service-choose li h1 { 
        margin: 0 0 10px 0;
        font-size: 15px; }
    #inner .service-choose li::before { top: 3px; }
    #inner .service-auxiliar { padding-top: 0; }
    #inner .service-auxiliar .image{ margin-bottom: 20px; }
    #inner .service-auxiliar .image p img{
        display: block;
        max-width: 100%;
        height: auto; }
    #inner .service-top .description h2, 
    #inner .service-auxiliar .description h2 {
        font-size: 22px;
        line-height: 30px; }

    #footer .wrapper { display: block; }
    #footer .footer-about {
        width: 100%;
        padding: 150px 35px 40px 35px; }
    #footer .footer-contact {
        padding-left: 0;
        width: 255px;
        margin: 40px auto; }
    #footer .info h2 { margin: 0 0 30px 0; }
    #footer .social-feed, 
    #footer .social-fake {
        margin: 0 auto; }
    #footer .copyright { margin-top: 60px; }

    .wa-mobile {
        left: calc(97% - 56px);
        top: inherit;
        bottom: 55px; }

    #slider,
    #slider .slide-item {
	    height: 70vh; }
    #slider .slide-item {
        padding-top: 120px;
        padding-right: 0; }
    #slider .auto-container { width: 300px; }
    #slider .content-box h2 {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0;
        margin: 0 0 25px 0; }
    #slider .content-box h3 {
        font-size: 15px;
        line-height: 20px;
        margin: 0 0 10px 0; }
    #slider .content-box p { display: none; }
    #slider .content-box .btn-box,
    .landing-box .wrapper { 
        flex-wrap: wrap; }
    #slider .btn-box .btn-orange {
        margin-right: 0;
        margin-bottom: 10px; }
    .landing-top .image{ display: none; }
    .landing-top .info {
        width: 100%;
        padding: 30px 30px;
        margin-left: 0; }
    .landing-box .landing-info { width: 100%; }
}
