/*** 3. Basic Default ***/
body {
    font-family: var(--primary-font);
    font-size: 15px;
    line-height: 22px;
    color: var(--black-color);
    background: #fff; }
a,
button,
.hover{
    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; }
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; }

a.nc-btn,
.slide-item .content-box li a,
#about .widget-html h3 a{
    position: relative;
    font-size: 14px;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 8px;
    height: 56px;
    overflow: hidden; }
a.nc-btn.short,
#about .widget-html h3 a{ 
    height: 50px; }
.slide-item .content-box li:first-child a{ border: 2px solid #fff; }
a.nc-btn span,
.slide-item .content-box li a span,
#about .widget-html h3 a span{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1;
    padding: 0 45px;
    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; }
a.nc-btn.short span,
#about .widget-html h3 a span{ 
    padding: 0 40px; }
.slide-item .content-box li:last-child a span{ background-color: var(--third-color); }
.slide-item .content-box li:first-child a span{ background-color: transparent; }
a.nc-btn span:before, 
.slide-item .content-box li a span:before,
#about .widget-html h3 a span:before{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--gray-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 span:before{ background-color: #fff; }
.slide-item .content-box li a:hover{ color: var(--gary-color); }
a.nc-btn:hover span:before,
.slide-item .content-box li a:hover span:before,
#about .widget-html h3 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; }

.title,
#about .widget-html h1,
#advantages .widget-html h1{
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 38px;
    line-height: 46px;
    color: var(--gray-color); }
.title a{ color: var(--gray-color); }
.title a:hover{ color: var(--black-color); }
.subtitle,
#about .widget-html h2{
    display: flex;
    position: relative;
    padding-left: 22px;
    color: var(--gray-color);
    font-family: var(--second-font);
    font-weight: var(--second-font-normal);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px; }
.subtitle:before,
#about .widget-html h2:before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 1px;
    background-color: var(--gray-color); }

.ripple {
    position:relative;
    background-color: var(--third-color);
    border:none;
    border-radius:50%;
    fill:#fff;
    height:66px;
    width: 66px;
    box-sizing:border-box;
    padding: 0 12px 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
a:hover .ripple{ background-color: var(--fourth-color); }
.ripple:before {
    animation:ripple 2s ease-out infinite;
    border:solid 2px var(--third-color);
    border-radius:50%;
    bottom:0;
    box-sizing:border-box;
    content:"";
    left:0;
    position:absolute;
    right:0;
    top:0; }
.ripple:after {
    animation:ripple 2s 1s ease-out infinite;
    border:solid 2px var(--third-color);
    border-radius:50%;
    bottom:0;
    box-sizing:border-box;
    content:"";
    left:0;
    position:absolute;
    right:0;
    top:0; }
@keyframes ripple {
    0% {
        opacity:.25;
    }
    100% {
        border-radius:50%;
        opacity:0;
        transform:scale(2.5);
    }
}


/* Header */
header,
#header_fixed{ 
    background-color: #f9f6ef; }
header .wrapper,
#header_fixed .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px; }
header .logo img,
#header_fixed .logo img{
    display: block;
    max-height: 60px;
    width: auto; }

.header .menu,
.header .menu .language,
.header .menu .quote{
    display: flex;
    align-items: center; }
.header .menu{ padding-top: 2px; }
.header .menu .language{ margin: 0 40px 0 60px; }
.header .menu .lang{ 
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--second-font); }
.header .menu .lang:first-of-type{
    position: relative;
    padding-right: 18px; }
.header .menu .lang:first-of-type:after{
    content: "";
    position: absolute;
    top: 4px;
    right: 8px;
    width: 1px;
    height: 12px;
    background: #00000050; }
.header .menu .lang span{ 
    color: var(--primary-color);
    font-weight: var(--second-font-medium); }
.header .menu .lang a{ color: var(--gray-color); }
.header .menu .lang span,
.header .menu .lang a:hover{ 
    color: var(--second-color); }
.header .menu .quote a{ 
    height: 44px;
    font-size: 13px; }
.header .menu .quote a span{ 
    padding: 0 30px;
    background-color: var(--third-color); }

#header_fixed {
    width: 100%;
    z-index: 8000;
    position: fixed;
    top: -100px;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
#header_fixed.fixed {
    visibility: visible;
    opacity: 1;
    top: 0; }
#header_fixed .wrapper{ height: 60px; }
#header_fixed .logo img{ max-height: 40px; }

/*** 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; }

.caret{
    border: none;
    position: relative;
    margin-left: 7px;
    width: 11px;
    height: 15px;
    top: -2px;
    line-height: 15px; }
.caret:before{
    font-family: "FontAwesome7";
    content: "\f078";
    font-size: 10px; }

.navbar-content{
    position: relative;
    padding: 0;
    font-weight: var(--primary-font-medium);
    font-size: 15px; }
.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: 0;
    color: var(--black-color) !important;
    line-height: 20px;
    padding: 12px 0; }
.navbar-content li a:hover,
.navbar-content li.active a {
    color: var(--primary-color) !important; }

.navbar-content .dropdown-menu {
    display: block;
    opacity: 0;
    top: 150%;
    left: -50px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 7px 0 0 0;
    width: 345px;
    visibility: hidden;
    z-index: 25000 !important;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease; }
.navbar-content .dropdown:hover .dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
    z-index: 9999; }
.navbar-content .dropdown-menu ul {
    position: relative;
    padding: 25px 35px 25px 45px; 
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0,0,0,0.15);
    border-radius: 0 16px 16px 0;
    border-left: 5px solid var(--primary-color); }
.navbar-content .dropdown-menu li { 
    margin: 0 0 10px 0;
    border-bottom: 1px solid #00000010;
    padding-bottom: 7px; }
.navbar-content .dropdown-menu li:last-child { 
    margin: 0;
    border: none;
    padding-bottom: 0;
    padding-right: 10px; }
.navbar-content .dropdown-menu li a {
    padding: 5px 0;
    color: var(--black-color) !important;
    display: block;
    font-size: 15px;
    line-height: 22px;
    text-transform: none;
    height: inherit; }
.navbar-content .dropdown-menu li a:hover { 
    padding-left: 10px;
    color: var(--gray-color); }

#breadcrumb{ position: relative; }
#breadcrumb:before{ 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #f9f6ef;
    z-index: -1; }
#breadcrumb .wrapper{
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    background-color: #fff;
    width: calc(100% - 100px);
    padding: 8px 8px 0 8px;
    border-radius: 16px 16px 0 0; }
#breadcrumb .wrapper:before,
#breadcrumb .wrapper:after{
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: 180px;
    background-repeat: no-repeat; }
#breadcrumb .wrapper:before{
    background-image: url(../img/radius-b-left.png);
    left: -32px; }
#breadcrumb .wrapper:after{
    background-image: url(../img/radius-b-right.png);
    right: -32px; }
#breadcrumb .wrapper .box{
    position: relative;
    width: 100%;
    height: 284px;
    border-radius: 16px;
    background-image: url(../img/bg-breadcrumb.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; } 
#breadcrumb .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 20px; }
#breadcrumb h1{
    margin: 0 0 30px 0;
    text-align: center;
    color: #e2e2e2;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    font-size: 50px;
    line-height: 1; }
#breadcrumb .path{ 
    color: var(--primary-color);
    font-size: 14px;
    text-align: center; }
#breadcrumb .path a{ color: #e2e2e299; }
#breadcrumb .path a:hover{ color: #fff; }
#breadcrumb .path .pipe{ 
    margin: 0 15px; 
    color: #e2e2e299; }


/* Banners */
#banners {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 5px; }
#banners,
.seq-wrapper .slide-item {
    height: calc(100vh - 96px); }
.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 .image-layer,
.seq-wrapper .image-layer:after,
.seq-wrapper .video-layer, 
.seq-wrapper .video-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 8100ms linear;
    -o-transition: all 8100ms linear;
    transition: all 8100ms linear; }
.seq-wrapper .image-layer.overlay:after,
.seq-wrapper .video-layer.overlay:after {
    content: "";
    background-image: url(../img/overlay.png);
    background-color: #00000070;
    z-index: 2; }
.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: #fff;
    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.5; }
.seq .seq-nav button:hover { opacity: 1; }
.seq-wrapper .slide-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px; }
.slide-item .auto-container {
    position: relative;
    z-index: 1003;
    width: 700px; }
.slide-item .content-box {
    position: relative;
    z-index: 5; }
.slide-item .content-box h2 {
    display: block;
    color: #ffffff;
    font-family: var(--second-font);
    font-weight: var(--second-font-normal);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0;
    margin: 0 0 15px 0;
    position: relative;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px); }
.seq-in .slide-item .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    transition: all 800ms ease; }
.slide-item .content-box h1 {
    display: block;
    font-size: 60px;
    line-height: 64px;
    color: #ffffff;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    opacity: 0;
    margin: 0 0 30px 0;
    position: relative;
    text-align: center;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px); }
.slide-item .content-box h1 strong { font-weight: var(--primary-font-normal); }
.seq-in .slide-item .content-box h1 {
    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: 18px;
    line-height: 30px;
    color: #ffffffbb;
    opacity: 0;
    margin-bottom: 40px;
    text-align: center;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px); }
.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;
    justify-content: 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: flex; }
.slide-item .content-box li:first-child { margin-right: 25px; }

#banners .break{
    display: block;
    position: absolute;
    left: 50%;
    bottom: -80px;
    margin-left: -7px;
    width: 15px;
    height: 130px;
    z-index: 10; }
#banners .break:before,
#banners .break:after{
    content: "";
    position: absolute;
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 5px; }
#banners .break:before{
    height: 75px;
    top: 10px;
    left: 0; }
#banners .break:after{
    height: 100%;
    right: 0; }


/* Home */
#about{ padding: 90px 0; }
#about .wrapper,
#company .company-top.wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center; }
#about .about-video,
#company .about-video{
    position: relative;
    flex: none;
    width: 500px;
    height: 480px;
    margin-right: 100px;
    background-image: url(../img/img-about.jpg);
    background-repeat: no-repeat; }
#about .about-video a,
#company .about-video a{ 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; }
#about .widget-html{ padding-top: 20px; }
#about .widget-html h2{ margin: 0 0 10px 0; }
#about .widget-html h1{ margin: 0 0 30px 0; }
#about .widget-html p{
    color: var(--gray-color);
    line-height: 26px;
    margin-bottom: 0; }
#about .widget-html h3{
    margin: 30px 0 0 0; 
    display: flex; }

#services{
    position: relative;
    padding-bottom: 20px;
    background-color: var(--silver-color); }
#services:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 200px;
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 1; }
#services .wrapper{
    position: relative;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 80px;
    background-color: #fff;
    padding: 0 12px 12px 12px;
    border-radius: 0 0 16px 16px; }
#services .wrapper:before,
#services .wrapper:after{
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    top: 200px; }
#services .wrapper:before{
    background-image: url(../img/radius-left.png);
    left: -32px; }
#services .wrapper:after{
    background-image: url(../img/radius-right.png);
    right: -32px; }
#services .wrapper .box{ 
    position: relative;
    z-index: 2; }
#services .services-head h2{ margin: 0 0 10px 0; }
#services .services-head h1{ margin: 0 0 30px 0; } 
#services .element .element-img,
#category .element .element-img{
    position: relative;
    border-radius: 16px;
    overflow: hidden; }
#services .element .element-img:before,
#category .element .element-img:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
#services .element a:hover .element-img:before,
#category .element a:hover .element-img:before{ 
    opacity: 0.15; }
#services .element .element-info,
#category .element .element-info{
    position: relative;
    border-radius: 16px;
    background-color: #f9f6ef;
    padding: 20px;
    width: calc(100% - 40px);
    margin: -40px auto 0 auto;
    z-index: 2; }
#services .element-info span,
#category .element-info span{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    top: -28px;
    right: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 24px; }
#services a:hover .element-info span,
#category a:hover .element-info span{ 
    background-color: var(--third-color); }
#services .element-info h3,
#category .element-info h3{
    display: flex;
    align-items: center; 
    margin: 0 0 10px 0;
    color: var(--black-color);
    font-weight: var(--primary-font-bold);
    font-size: 16px;
    line-height: 24px;
    height: 48px; }
#services .element-info p,
#category .element-info p{
    margin: 0;
    color: var(--gray-color);
    max-height: 66px;
    overflow: hidden; }
#services .owl-dots {
    position: absolute;
    margin-top: 0;
    width: 100%;
    bottom: -50px; }
#services .link{
    display: none;
    /* display: flex; */
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px; }

#advantages { padding: 90px 0; }
#advantages .widget-html h1{
    margin: 0 0 50px 0;
    padding-right: 50%; }
#advantages .list .block_content{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr); }
#advantages .list ul{
    position: relative;
    padding: 0 30px;
    border-right: 1px solid #00000020; }
#advantages .list ul:first-of-type{
    padding-left: 0;
    padding-right: 60px; }
#advantages .list ul li:first-child{
    position: relative;
    padding-top: 70px;
    font-size: 18px;
    font-weight: var(--primary-font-bold);
    margin-bottom: 20px; }
#advantages .list ul li:first-child:before{
    position: absolute;
    font-family: "FontAwesome7L";
    content: "\e416";
    top: 0;
    left: 0;
    font-size: 40px;
    line-height: 50px;
    color: var(--third-color); }
#advantages .list ul:first-of-type li:first-child:before{ content: "\e4bb"; }
#advantages .list ul:last-of-type li:first-child:before{ content: "\f643"; }
#advantages .list ul li:last-child{ color: var(--gray-color); }

#feedblog{ padding-bottom: 90px; }
#feedblog .feedblog-head h2{ margin: 0 0 10px 0; }
#feedblog .feedblog-head h1{ margin: 0 0 30px 0; }


/* Global */
#inner{ padding: 50px 0 90px 0; }

/* Company */
#company .company-top{ 
    padding-top: 10px;
    padding-bottom: 60px; }
#company .about-video {
    margin-right: 0;
    margin-left: 100px;
    background-image: url(../img/img-about-single.jpg); } 

#company .company-middle{ 
    padding-top: 60px;
    background-color: var(--silver-color); }
#services .lines-head h2,
#company .company-middle .lines-head h2{ 
    margin: 0 0 10px 0; }
#services .lines-head h1,
#company .company-middle .lines-head h1{ 
    margin: 0 0 30px 0; }
#services .lines.grid,
#company .lines.grid{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px; }
#services .lines .item,
#company .lines .item{ 
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 40px; }
#services .lines .item span,
#company .lines .item span{
    display: block;
    margin-bottom: 20px; } 
#services .lines .item svg,
#company .lines .item svg{
    width: 46px;
    height: 46px;
    fill: var(--gray-color);
    stroke: var(--gray-color); }
#services .lines .item.item-4 svg,
#company .lines .item.item-4 svg{
    width: 42px;
    height: 42px; }
#services .lines .item h3,
#company .lines .item h3{
    margin: 0 0 15px 0;
    font-weight: var(--primary-font-bold);
    font-size: 18px; }
#services .lines .item p,
#company .lines .item p{
    margin-bottom: 0;
    color: var(--gray-color);
    line-height: 24px; }

#company .company-middle{ position: relative; }
#company .company-middle:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 160px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    z-index: 1; }
#company .company-middle .wrapper{
    position: relative;
    margin-left: -12px;
    margin-right: -12px;
    background-color: #fff;
    padding: 12px 12px 0 12px;
    border-radius: 16px 16px 0 0; }
#company .company-middle .wrapper:before,
#company .company-middle .wrapper:after{
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    bottom: 160px; }
#company .company-middle .wrapper:before{
    background-image: url(../img/radius-b-left.png);
    left: -32px; }
#company .company-middle .wrapper:after{
    background-image: url(../img/radius-b-right.png);
    right: -32px; }
#company .company-middle .cta{ 
    position: relative;
    background-color: var(--third-color);
    border-radius: 8px;
    padding: 40px 30px;
    z-index: 2; }
#company .company-middle .cta .block_content{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr); }
#company .company-middle .cta ul{
    border: 2px solid #ffffff99;
    border-radius: 8px;
    padding: 50px 30px 30px 30px; } 
#company .company-middle .cta li{ color: #fff; }
#company .company-middle .cta li:first-child{ 
    margin-bottom: 20px;
    font-weight: var(--primary-font-medium);
    font-size: 16px; }
#company .company-middle .cta li:first-child strong{
    display: block;
    font-size: 30px;
    font-weight: var(--primary-font-bold);
    margin-bottom: 10px; }
#company .company-middle .cta .action{
    display: flex;
    justify-content: center;
    margin-top: 40px; }

#company .company-bottom{ padding-top: 80px; }
#company .company-bottom h1.title{ 
    margin: 0 0 30px 0;
    text-align: center; }

/* Category */
#category #inner{ padding-bottom: 70px; }
#category #inner .grid{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr); }
#category .element{ margin-bottom: 20px; }

/* Blog */


.feedblog .element{
    position: relative;
    padding: 25px;
    border: 1px solid #00000020;
    border-radius: 16px; }
.feedblog .element:hover{ background-color: #f9f6ef; }
.feedblog .element-img{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px; }
.feedblog .video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
.feedblog .ripple {
    height:58px;
    width: 58px; }
.feedblog .cat-date {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px; }
.feedblog .cat-date .cat{
    display: flex;
    align-items: center;
    height: 26px;
    padding: 0 15px;
    color: #fff;
    font-size: 13px;
    background-color: var(--gray-color);
    border-radius: 4px; }
.feedblog .cat-date .date{
    color: var(--gray-color);
    font-size: 14px;
    text-transform: capitalize; }
.feedblog .element-info h3 {
    font-weight: var(--primary-font-bold);
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    margin: 0 0 10px 0;
    overflow: hidden;
    color: var(--black-color); }
.feedblog .element-info .description { 
    position: relative;
    color: var(--gray-color);
    height: 66px;
    overflow: hidden;
    margin-bottom: 15px; }
.feedblog .more span {
    font-weight: var(--primary-font-medium);
    color: var(--black-color);
    text-decoration: underline; }
.feedblog a:hover .more span { color: var(--third-color); } 





























#contact .contact-left{ padding-right: 130px; }
#contact .contact-left .widget-html h1{
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 30px 0;
    color: var(--second-color); }
#contact .contact-left .widget-html p {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0; }
#contact .contact-right{ 
    padding-left: 45px;
    padding-top: 10px; }
#contact .contact-right .form-group.alice { display: none; }
#contact .contact-right .form-flex{ 
    display: flex;
    align-items: center; }
#contact .contact-right .form-group.col-medium,
#contact .contact-right .form-group.col-small{
    flex: none;
    width: 50%;
    margin-left: 15px; } 
#contact .contact-right .form-group.col-small{ width: 40%; }
#contact .contact-right .form-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%; }
#contact .contact-right .form-control {
    padding: 10px 20px 0 20px;
    height: 46px;
    box-shadow: none;
    border-radius: 0;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: var(--black-color); }
#contact .contact-right .form-control:focus {
    border-color: var(--third-color);
    outline: 0;
    box-shadow: none; }
#contact .contact-right .form-group textarea {
    height: 78px;
    line-height: 22px;
    padding: 16px 20px 12px 20px; }
#contact .contact-right .form-group label.txt{
    margin: 0;
    font-size: 14px;
    color: var(--gray-color);
    font-weight: var(--primary-font-medium);
    padding: 0 10px;
    background-color: #fff;
    position: absolute;
    z-index: 1;
    left: 10px;
    top: -9px; }
#contact .contact-right .form-group .selector {
    width: 100% !important;
    background-image: none;
    padding: 0;
    height: 46px;
    background: #fff;
    border-radius: 0;
    position: relative; }
#contact .contact-right .form-group .selector span {
    color: var(--black-color);
    text-shadow: none;
    background-image: none;
    width: 100% !important;
    padding: 10px 0 0 20px;
    height: 46px;
    line-height: 32px;
    border: 2px solid #e0e0e0; }
#contact .contact-right .form-group .selector span:after {
    position: absolute;
    width: 38px;
    height: 32px;
    background: transparent;
    right: 0;
    top: inherit;
    bottom: 0;
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f078";
    font-size: 12px;
    text-align: center;
    line-height: 32px;
    color: var(--black-color); }
#contact .contact-right .form-group .selector select{ padding-right: 60px; }
#contact .contact-right .ptd{ 
    margin: 0 0 20px 0 !important;
    padding-top: 1px;
    display: flex;
    align-items: center; }
#contact .contact-right .ptd label {
    font-weight: var(--primary-font-normal);
    margin: 0;
    color: var(--gray-color); }
#contact .contact-right .ptd label a{
    font-weight: var(--primary-font-medium);
    color: var(--black-color); }
#contact .contact-right .ptd label a:hover{ text-decoration: underline; }
#contact .contact-right .ptd div.checker {
    margin-right: 14px;
    width: 20px;
    height: 20px;
    top: -1px; }
#contact .contact-right .ptd div.checker span {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px; }
#contact .contact-right .submit{ 
    margin-bottom: 0 !important;
    display: flex;
    align-items: center; }
#contact .contact-right .submit button{
    background-color: var(--second-color);
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 0 60px 2px 40px;
    line-height: 38px;
    height: 40px;
    position: relative;
    font-size: 12px;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    letter-spacing: 1px;
    box-shadow: 0px 8px 15px rgba(0,0,0,0.1); }
#contact .contact-right .submit button:before {
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f30b";
    font-size: 11px;
    position: absolute;
    right: 40px;
    top: 0; }
#contact .contact-right .submit button:hover { background: var(--third-color); }
#contact .contact-right .submit .sending {
    padding: 0 70px 0 40px;
    background: var(--third-color);
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    position: relative;
    line-height: 38px;
    height: 40px;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    letter-spacing: 1px; }
#contact .contact-right .submit .sending:before{
    content: "";
    position: absolute;
    right: 40px;
    top: 9px;
    width: 20px;
    height: 20px;
    background: url(../img/ajax-loader.gif) no-repeat;
    background-size: cover; }
#contact .contact-right h2{
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 30px 0; }

#confirmation_box {
    position: relative;
    z-index: 1; }
#confirmation .conf-block {
    padding: 50px 40px;
    width: 640px;
    margin: 0 auto;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
    background-color: #fff;
    border-radius: 30px;
    position: relative;
    z-index: 2; }
#confirmation .conf-block h1{
    margin: 0 0 30px 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: var(--second-color); }
#confirmation .conf-block p{
    margin: 0;
    padding: 0 60px;
    line-height: 28px;
    font-size: 16px;
    color: var(--gray-color);
    text-align: center; }














/* Privacy */
#privacy.content_only .privacy-box{ padding: 30px 40px; }
#privacy .privacy-box h1{
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0;
    font-weight: var(--primary-font-bold);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px; }
#privacy .privacy-box h2{
    margin: 25px 0 15px 0;
    font-size: 16px;
    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{
    padding-bottom: 20px;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
footer .logo{
    display: flex;
    justify-content: center;
    margin-bottom: 60px; }
footer .logo .wrapper{
    position: relative; 
    padding: 0 8px 8px 8px;
    background-color: #fff;
    border-radius: 0 0 16px 16px; }
footer .logo .wrapper:before,
footer .logo .wrapper:after{
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: 0;
    background-repeat: no-repeat; }
footer .logo .wrapper:before{
    background-image: url(../img/radius-left.png);
    left: -32px; }
footer .logo .wrapper:after{
    background-image: url(../img/radius-right.png);
    right: -32px; }
footer .logo .box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 120px;
    margin-top: -16px;
    border-radius: 8px;
    background-color: #f9f6ef; }
footer .logo .box img{
    display: block;
    max-height: 60px;
    width: auto; }
footer .widget,
footer .widget ul{
    display: flex;
    align-items: center;
    justify-content: center; }
footer .links .widget-html{
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ffffff66; }
footer .links ul{ gap: 60px; }
footer .links li a{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-weight: var(--primary-font-medium); }
footer .links li a:hover,
footer .info .widget-html li a:hover{ 
    color: var(--primary-color); }
footer .info .widget-html ul{ gap: 40px; }
footer .info .widget-html li{
    position: relative;
    padding-left: 24px; }
footer .info .widget-html li:before{
    font-family: "FontAwesome7R";
    font-size: 14px;
    color: #ffffff50;
    position: absolute;
    left: 0;
    top: 0; }
footer .info .widget-html li.mobile:before{ 
    font-family: "FontAwesome7B";
    content: "\f232";
    font-size: 15px; } 
footer .info .widget-html li.mail:before{ 
    content: "\f0e0";
    top: 1px; }
footer .info .widget-html li.address:before{ content: "\f3c5"; }
footer .info .widget-html li,
footer .info .widget-html li a{
    color: #fff; }
footer .info .social{ margin-left: 50px; }
footer .info .social ul{ gap: 8px; }
footer .info .social li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--black-color);
    font-size: 15px; }
footer .info .social li a:hover{ 
    background-color: var(--primary-color);
    color: #fff; }

footer .copyright{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    font-size: 14px;
    margin-top: 60px; }

.wa-mobile {
    position: fixed;
    width: 56px;
    height: 56px;
    right: 25px;
    bottom: 25px;
    z-index: 9000; }
.compensate-for-scrollbar .wa-mobile { right: 40px; }
.wa-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    font-size: 34px;
    background: var(--third-color); }
.wa-mobile a:hover { background: var(--fourth-color); }



/*** 4. Responsive ***/
@media (min-width: 992px) and (max-width: 1200px) {

}

@media (min-width: 767px) and (max-width: 991px) {
    
}

@media (max-width: 767px) {
    
}





































/* Services */
#product #inner .wrapper {
    display: flex;
    justify-content: space-between; }

#product #inner .wrapper .sidebar{ 
    width: 360px;
    flex: none; }
#product .sidebar .categoriesbox{
    position: relative;
    border: 2px solid #ebebeb;
    padding: 30px 0; }
#product .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; }
#product .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%); }
#product .sidebar .categoriesbox a.current:before,
#product .sidebar .categoriesbox a:after{
    font-family: "FontAwesome5";
    font-weight: 900;
    font-size: 16px;
    content: "\f105";
    position: absolute;
    right: 50px;
    color: var(--black-color); }
#product .sidebar .categoriesbox a.current:before{ 
    color: #fff;
    right: inherit;
    left: 50px; }
#product .sidebar .categoriesbox a.current:after{ display: none; }

#product .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%); }
#product .sidebar .contactform h1,
#product .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; }
#product .contactform .form-group{
    position: relative;
    margin-bottom: 0; }
#product .contactform .form-group svg{
    position: absolute;
    bottom: 20px;
    right: 18px;
    width: 18px;
    fill: #fff; }
#product .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; }
#product .contactform textarea.form-control { 
    padding-top: 10px;
    min-height: 88px;
    line-height: 22px;  
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
#product .contactform .form-control:focus { 
    border-color: #d5d7d2;
    border-bottom: 1px solid #d5d7d2; }
#product .contactform .form-group.ptd{
    display: flex;
    align-items: center;
    margin: 20px 0; }
#product .contactform .form-group.ptd label{
    margin: 0;
    font-weight: var(--primary-font-normal);
    color: var(--silver-color);
    line-height: 24px;
    font-size: 13px; }
#product .contactform .form-group.ptd label a{
    color: #fff;
    font-weight: var(--primary-font-medium); }
#product .contactform .form-group.ptd label a:hover{ text-decoration: underline; }
#product .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); }
