/*** 3. Basic Default ***/
body {
    font-family: var(--primary-font);
    font-size: 15px;
    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: #c2c4c6 !important; }
::-moz-placeholder { color: #c2c4c6 !important; }
:-ms-input-placeholder { color: #c2c4c6 !important; }
input:-moz-placeholder { color: #c2c4c6 !important; }
.unvisible { display: none; }
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; }

.spinner {
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    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)
    }
}

/* Buttons */
a.nc-btn,
button.nc-btn,
#banners .content-box li:first-child a {
    display: flex;
    align-items: center;
    position: relative;
    height: 50px;
    z-index: 1;
    border: none;
    border-radius: 30px;
    padding: 0 40px 2px 40px;
    font-weight: var(--primary-font-medium);
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    background-image: -webkit-linear-gradient(0deg, rgb(94, 193, 62) 0%, rgb(48, 129, 22) 100%);
    overflow: hidden; }
a.nc-btn:before,
button.nc-btn:before,
#banners .content-box li:first-child a:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #308116;
    -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); }
a.nc-btn:hover:before,
button.nc-btn:hover:before,
#banners .content-box li:first-child 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; }


/* Headers */
#header_fixed .wrapper,
#header .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between; }
#header_fixed .wrapper{ 
    justify-content: center;
    height: 60px; }
#header .header-logo img{
    display: block; 
    max-height: 150px;
    width: auto; }

#header_fixed {
    background-color: #fff;
    width: 100%;
    z-index: 8000;
    position: fixed;
    top: -150px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    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 .header-menu{
    display: flex;
    align-items: center; }
#header_fixed .header-menu ul.mobile li:last-child,
#header_fixed .header-menu ul.address,
#confirmation #header_fixed,
#privacy #header_fixed{
    display: none; }
#header_fixed .navbar-default{ margin-right: 70px; }
#header_fixed .header-menu ul.mobile li:first-child{
    position: relative;
    padding-left: 24px; }
#header_fixed .header-menu ul.mobile li:first-child:before {
    position: absolute;
    font-family: "FontAwesome7B";
    content: "\f232";
    top: -1px;
    left: 0;
    font-size: 18px;
    color: var(--primary-color); }
#header_fixed .header-menu ul.mobile li a {
    font-size: 18px;
    font-weight: var(--primary-font-bold);
    color: var(--black-color);
    letter-spacing: 1px; }
#header_fixed .header-menu ul.mobile li a:hover { color: var(--primary-color); }

#header{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 8000;
    margin-top: 30px;
    padding: 0; }
.compensate-for-scrollbar #header,
.compensate-for-scrollbar #header_fixed{ 
    padding-right: 15px; }
.compensate-for-scrollbar #header_fixed{
    transition: none;
    -o-transition: none;
    -webkit-transition: none; }
#privacy #header,
#confirmation #header {
    position: relative;
    margin-top: 0;
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #fff; }

/*** Menu style ***/
.navbar-default {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin: 0;
    min-height: 40px; }
#privacy .navbar-default,
#confirmation .navbar-default {
    display: none; }
.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; }
.navbar-content{
    position: relative;
    padding: 0;
    font-weight: var(--primary-font-medium); 
    font-size: 15px; }
.navbar-content li {
    margin: 0 25px;
    position: relative; }
.navbar-content li.first-item{ margin-left: 0; }
.navbar-content li.last-item{ margin-right: 0; }
#header .navbar-content li a,
#header_fixed .navbar-content li a {
    padding: 10px 0;
    color: #fff;
    line-height: 20px; }
#header_fixed .navbar-content li a { color: var(--gray-color); }
.navbar-content li a:hover{ color: var(--second-color) !important; }
#header_fixed .navbar-content li a:hover{ color: var(--primary-color) !important; }
.navbar-content li.last-item:after {
    content: "";
    position: absolute;
    top: 18px;
    left: -14px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--second-color);
    -webkit-animation: notify-pulse 1s infinite; }
#header_fixed .navbar-content li.last-item:after { 
    background-color: var(--primary-color);
    -webkit-animation: notify2-pulse 1s infinite; }
@-webkit-keyframes notify-pulse {
    0% { box-shadow: 0 0 0 0px rgba(254, 215, 0, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}
@keyframes notify-pulse {
    0% { box-shadow: 0 0 0 0px rgba(254, 215, 0, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}

@-webkit-keyframes notify2-pulse {
    0% { box-shadow: 0 0 0 0px rgba(52, 177, 12, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}
@keyframes notify2-pulse {
    0% { box-shadow: 0 0 0 0px rgba(52, 177, 12, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}

/* Banners */
#banners {
    display: block;
    width: 100%;
    position: relative; }
#banners,
.seq-wrapper .slide-item {
    height: 100vh; }
.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 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1002; }
.seq-wrapper .image-layer .image {
    position: absolute;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-size: cover;
    overflow: hidden; }
.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 {
    content: "";
    background-image: url(../img/overlay.png);
    background-color: #12240cbb;
    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: 190px;
    padding-bottom: 80px; }
.slide-item .auto-container {
    position: relative;
    z-index: 1003;
    width: 900px; }
.slide-item .content-box {
    position: relative;
    z-index: 5; }
.slide-item .content-box h1 {
    display: block;
    font-size: 66px;
    line-height: 72px;
    color: #ffffff;
    font-weight: var(--primary-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;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    opacity: 0;
    margin-bottom: 45px;
    -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:first-child { margin-right: 20px; }
.slide-item .content-box li:last-child a {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 40px 2px 40px;
    background-color: transparent;
    border: 2px solid var(--second-color);
    border-radius: 30px;
    color: #fff;
    font-weight: var(--primary-font-medium);
    text-transform: uppercase;
    font-size: 14px; }
.slide-item .content-box li:last-child a:hover{
    background-color: var(--second-color);
    color: var(--fourt-color); }

#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(--second-color);
    border-radius: 5px; }
#banners .break:before{
    height: 75px;
    top: 10px;
    left: 0; }
#banners .break:after{
    height: 100%;
    right: 0; }

/* About */
#about{ padding: 90px 0; }
#about .animated{
    opacity: 1;
    transition-delay: .6s;
    transform: translateZ(0) scale(1);
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
    transition-duration: .45s;
    transition-property: opacity, transform;
    line-height: 1; }
#about .animated h2{
    background-image: url(../img/bg-animated.jpg);
    margin: 30px 0 60px 0;
    font-size: 90px;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    text-transform: uppercase;
    text-align: center;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-name: masked-animation;
    animation-name: masked-animation;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear }

@-webkit-keyframes masked-animation {
    0%,100% { background-position: 50% 35% }
    50% { background-position: 50% 65% }
}
@keyframes masked-animation {
    0%,100% { background-position: 50% 35% }
    50% { background-position: 50% 65% }
}

#about .wrapper{
    display: flex;
    justify-content: space-between;
    height: 450px;
    background-image: url(../img/bg-about.jpg);
    background-position: center;
    background-repeat: no-repeat; }
#about .wrapper .widget{
    display: flex;
    align-items: center;
    padding: 0; }
#about .wrapper .widget.about-left{ width: 30%; }
#about .wrapper .widget.about-right{ width: 31%; }
#about .about-left h1,
#about .about-left h2{
    font-family: var(--second-font);
    font-weight: var(--second-font-normal);
    color: var(--gray-color);
    margin: 0;
    text-transform: uppercase;
    font-size: 36px;
    text-align: center; }
#about .about-left h1 strong,
#about .about-left h2 strong{
    font-weight: var(--second-font-bold);
    color: var(--black-color); }
#about .about-left h2{
    margin-top: 20px;
    font-size: 30px; }
#about .about-right p{ 
    color: var(--gray-color);
    line-height: 26px;
    margin-bottom: 12px; }
#about .about-right p:last-of-type{ margin-bottom: 0; } 

/* Products */
#products{ 
    position: relative;
    padding: 80px 0;
    background-color: var(--silver-color);
    background-image: url(../img/bg-products.jpg);
    background-repeat: no-repeat;
    background-position: right center; }
#products .widget-html,
#work .widget-html{ 
    margin-bottom: 50px; }
#products .widget-html h1,
#work .widget-html h1,
#location .widget-html h1 {
    font-family: var(--second-font);
    font-weight: var(--second-font-normal);
    text-transform: uppercase;
    font-size: 34px;
    margin: 0 0 20px 0;
    text-align: center;
    color: var(--gray-color);
    line-height: 40px; }
#products .widget-html h1 strong,
#work .widget-html h1 strong,
#location .widget-html h1 strong {
    font-weight: var(--second-font-bold);
    color: var(--primary-color); }
#products .widget-html p,
#work .widget-html p {
    color: var(--gray-color);
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto;
    max-width: 80%; }

#products .grid{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 360px); }
#products .flip-box {
    background-color: transparent;
    width: 100%;
    height: 360px;
    perspective: 1000px; }
#products .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d; }
#products .flip-box:hover .flip-box-inner { transform: rotateY(180deg); }
#products .flip-box-front,
#products .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px 30px;
    border-radius: 30px;
    overflow: hidden; }
#products .flip-box-front{ z-index: 1; }
#products .flip-box-back {
    transform: rotateY(180deg);
    z-index: 2; }
#products .flip-box-front:before{
    position: absolute;
    font-family: "FontAwesome7R";
    content: "\f021";
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: 20px;
    z-index: 1; }
#products .flip-box-front:after,
#products .flip-box-back:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #12240cbb;
    z-index: -1; }
#products .flip-box-front h2{
    position: relative;
    margin: 0 0 20px 0;
    color: var(--second-color);
    font-weight: var(--primary-font-medium);
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    cursor: default; }
#products .flip-box-front p,
#products .flip-box-back p{
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
    cursor: default; }
#products .cta{
    display: flex;
    justify-content: center;
    margin-top: 40px; }

/* Work*/
#work{ padding: 90px 0 115px 0; }
#work .grid{
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr); }
#work .item span{
    position: relative;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 72px;
    color: #e2e4e6;
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px; }
#work .item.item-1 span{ width: 50px; }
#work .item.item-4 span{ width: 65px; }
#work .item span:before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--second-color);
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 3px; }
#work .item h2{
    margin: 30px 0 15px 0;
    font-weight: var(--primary-font-bold);
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color); }
#work .item p{
    color: var(--gray-color);
    line-height: 24px;
    margin-bottom: 0; }

/* Location */
#location{
    position: relative;
    padding: 80px 0;
    background-color: var(--silver-color);
    z-index: 2; }
#location .wrapper{ position: relative; }
#location .wrapper .row{ padding-right: 575px; }
#location .widget-html h1 {
    margin: 0 0 20px 0;
    text-align: left; }
#location .widget-html h2 {
    margin: 0 0 30px 0;
    font-weight: var(--primary-font-bold);
    font-size: 24px;
    line-height: 36px;
    padding-right: 45px; }
#location .widget-html p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-color); }
#location .widget-html p strong{ 
    font-weight: var(--primary-font-medium); 
    color: var(--black-color); }
#location .map{
    position: absolute;
    top: -105px;
    right: 0;
    width: 500px;
    height: 444px;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);  }
#location .map iframe{
    width: 100%;
    height: 100%; }

/* Auxiliares */
#privacy_box h1,
#privacy_box h2{
    font-weight: var(--primary-font-medium); }
#privacy_box h1{
    margin: 0 0 25px 0;
    font-size: 18px;
    text-align: center; }
#privacy_box h2{
    margin: 20px 0 15px 0;
    font-size: 15px; }
#privacy_box p{
    text-align: justify;
    line-height: 22px;
    color: var(--gray-color); }
#privacy_box ol,
#privacy_box ul{
    padding-left: 30px;
    margin-bottom: 10px; }
#privacy_box ul{ list-style-type: disc; }
#privacy_box ol li,
#privacy_box ul li{
    margin-bottom: 5px; }

#confirmation .conf-block {
    padding: 50px 40px;
    width: 800px;
    margin: 0 auto;
    border: 3px dashed #d4d6d8;
    background-color: #fff;
    border-radius: 16px; }
#confirmation .conf-block h1{
    margin: 0 0 30px 0;
    font-family: var(--second-font);
    font-weight: var(--second-font-bold);
    font-size: 36px;
    margin: 0 0 30px 0;
    line-height: 40px;
    text-align: center; }
#confirmation .conf-block p{
    margin: 0;
    padding: 0 30px;
    line-height: 30px;
    font-size: 18px;
    color: var(--gray-color);
    text-align: center; }


/* Footer */
footer{
    padding: 110px 0 20px 0;
    background-image: url(../img/bg-footer.jpg);
    background-size: cover;
    background-position: center top; }
footer .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between; }
footer .wrapper>div{
    width: 48%;
    flex: none; }
footer .wrapper>div.box{ 
    width: 46%; }
footer .copyright{
    text-align: center;
    color: #fff;
    padding-top: 20px;
    margin-top: 60px;
    border-top: 1px solid #ffffff79; }
footer .text h1{
    margin: 0 0 30px 0;
    color: #fff;
    font-weight: var(--primary-font-bold);
    font-size: 28px; }
footer .text p{
    margin: 0;
    color: var(--silver-color); }
footer .info{ 
    margin-top: 50px;
    padding-left: 270px;
    background-image: url(../../../img/logo.png);
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 200px; }
footer .info .widget-html li{
    font-size: 14px;
    color: #fff; }
footer .info .widget-html li a{
    font-size: 18px;
    font-weight: var(--primary-font-bold);
    color: #fff;
    letter-spacing: 1px; }
footer .info .widget-html li a:hover{ color: var(--primary-color); }
footer .info ul.mobile li{
    position: relative;
    padding-left: 30px; }
footer .info ul.mobile li{ margin-bottom: 15px; }
footer .info ul.mobile li:before,
footer .info ul.address:before{
    font-family: "FontAwesome7R";
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color); }
footer .info ul.mobile li:first-child:before{
    font-family: "FontAwesome7B";
    content: "\f232";
    top: -1px;
    font-size: 18px; }
footer .info ul.mobile li:last-child:before{ 
    content: "\f0e0";
    top: 1px; }
footer .info ul.address:before{ 
    content: "\f3c5";
    left: 2px; }
footer .info ul.address { 
    position: relative;
    padding-left: 30px; }
footer .social{
    margin-left: 30px;
    margin-top: 30px;}
footer .social ul{
    display: flex;
    align-items: center; }
footer .social ul li:last-child{ margin-left: 12px; }
footer .social ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background-color: #fff;
    color: var(--black-color);
    font-size: 14px; }
footer .social ul li a:hover{ 
    background-color: var(--primary-color); 
    color: #fff; }

footer .footer-form{ position: relative; }
footer .footer-form .alert{
    display: block;
    position: absolute;
    width: 100%;
    top: -74px;
    margin: 0;
    font-size: 14px; } 
footer form .form-group.alice { display: none; }
footer form .group-flex {
    display: flex;
    align-items: center; }
footer form .group-flex .form-group {
    flex: none;
    width: calc(60% - 30px); }
footer form .group-flex .form-group:last-of-type {
    width: 40%;
    margin-left: 30px; }
footer form .form-group {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px; }
footer form .form-control {
    padding: 0 20px;
    height: 50px;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid #ffffff60;
    background-color: #ffffff30;
    font-size: 15px;
    color: #fff; }
footer form .form-group textarea {
    height: 120px;
    line-height: 22px;
    padding: 10px 20px;
    text-align: justify; }
footer form .form-control:focus {
    border-color: var(--second-color);
    outline: 0;
    box-shadow: none; }
footer form .ptd{ 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px; }
footer form .ptd label {
    font-weight: var(--primary-font-normal);
    margin: 0;
    color: #fff;
    font-size: 14px; }
footer form .ptd label a {
    font-weight: var(--primary-font-medium);
    color: #fff;
    text-decoration: underline; }
footer form .ptd label a:hover{ text-decoration: none; }
footer form .ptd div.checker {
    cursor: pointer;
    margin-right: 15px;
    margin-left: 1px; }
footer form .ptd div.checker span {
    position: relative;
    top: 0; }
footer form .submit{ 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 0; }

.wa-mobile {
    position: fixed;
    width: 56px;
    height: 56px;
    right: 25px;
    bottom: 25px;
    z-index: 9000; }
.compensate-for-scrollbar .wa-mobile { right: 42px; }
.wa-mobile a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    line-height: 56px;
    text-align: center;
    font-size: 34px;
    background: var(--primary-color); }
.wa-mobile a:hover { background: #308116; }

#confirmation #header .wrapper,
#confirmation footer .wrapper,
#privacy #header .wrapper,
#privacy footer .wrapper {
    justify-content: center; }
#confirmation footer,
#privacy footer{ 
    padding-top: 80px;
    margin-top: 70px; }
#confirmation footer .footer-form,
#privacy footer .footer-form,
#confirmation footer .text,
#privacy footer .text{ 
    display: none; }
#confirmation footer .info,
#privacy footer .info{
    margin-top: 0; } 
.content_only #privacy_box { padding: 30px; }
.fancybox-slide--iframe .fancybox-content { max-width: 80% !important; }



/*** 3. Basic Default (Responsive) ***/
@media (min-width: 992px) and (max-width: 1200px) {
    
}

@media (min-width: 767px) and (max-width: 991px) {
    
}

@media (max-width: 767px) {
    #header_fixed .wrapper { height: 40px; }
    #header_fixed .navbar-default { margin-right: 0; }
    #header { margin-top: 20px; }
    #header .wrapper { justify-content: center; }

    .navbar-default { min-height: 0; }
    .navbar-default .navbar-toggle {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8009;
        margin: 0;
        border: 0;
        border-radius: 0;
        width: 40px;
        height: 40px;
        font-size: 20px;
        color: #fff;
        background: var(--primary-color);
        padding: 0; }
    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover {
        background: var(--primary-color); }
    .navbar-default .navbar-content{
        position: fixed;
        right: -85%;
        top: 0;
        z-index: 8008;
        width: 75%;
        height: 100% !important;
        background: rgba(255,255,255,0.96);
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        padding-top: 80px;
        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-default .navbar-content ul {
        margin: 0;
        float: inherit;
        background: none; }
    .navbar-content li {
        margin: 0 !important;
        padding: 0; }
    .navbar-content li a {
        color: var(--gray-color) !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 15px 30px !important;
        display: block; }
    .navbar-content li a:hover,
    .navbar-content li.active a {
        background-color: transparent !important;
        color: var(--primary-color) !important;
        padding: 15px 30px !important; }
    .navbar-content li.last-item:after {
        top: 24px;
        left: 15px;
        background-color: var(--primary-color);
        -webkit-animation: notify2-pulse 1s infinite; }

    #banners, 
    .seq-wrapper .slide-item {
        height: 93vh; }
    .slide-item .auto-container { width: 300px; }
    .seq .seq-nav .seq-prev { left: 0; }
    .seq .seq-nav .seq-next { right: 0; }
    .seq-wrapper .slide-item { padding-top: 180px; }
    .slide-item .content-box p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 35px; }
    .slide-item .content-box ul{ text-align: center; }
    .slide-item .content-box li{ display: inline-block; }
    .slide-item .content-box li:first-child{ margin-bottom: 15px; }
    #banners .break {
        bottom: -50px;
        height: 100px; }
    #banners .break:before { height: 60px; }

    #about .animated h2 {
        background-image: url(../img/bg-animated-m.jpg);
        margin: 20px 0 30px 0;
        font-size: 34px; }
    #about .wrapper {
        height: inherit;
        overflow: hidden;
        padding-top: 330px;
        background-size: 300px;
        background-position: center top; }
    #about .wrapper .widget.about-left,
    #about .wrapper .widget.about-right {
        width: 100%; }
    #about .about-left h1 { font-size: 30px; }
    #about .about-left h2 {
        margin-top: 10px;
        font-size: 25px;
        margin-bottom: 30px; }
    #about .about-right p { 
        line-height: 22px;
        text-align: center; }

    #products .grid,
    #work .grid {
        grid-template-columns: repeat(1, 300px);
        justify-content: center; }
    #products .widget-html h1, 
    #work .widget-html h1, 
    #location .widget-html h1 {
        font-size: 30px;
        line-height: 36px; }
    #location .widget-html h1 { text-align: center; }
    #products .widget-html p, 
    #work .widget-html p {
        font-size: 15px;
        line-height: 22px;
        max-width: 100%; }

    #about,
    #products,
    #work { 
        padding: 60px 0; }
    #products .widget-html, 
    #work .widget-html {
        margin-bottom: 40px; }

    #products { background-position: right bottom; }

    #location { padding: 60px 0 0 0; }
    #location .wrapper .row { 
        padding-right: 0;
        margin-bottom: 40px; }
    #location .widget-html h2 {
        margin: 0 0 20px 0;
        font-size: 20px;
        line-height: 28px;
        padding-right: 0;
        text-align: center;
        padding: 0 10px; }
    #location .widget-html p {
        font-size: 15px;
        line-height: 22px;
        text-align: center; }
    #location .map {
        position: relative;
        width: 300px;
        height: 360px;
        margin: 0 auto -25px auto;
        top: 0; }

    .slide-item .content-box h1,
    .slide-item .content-box ul,
    #about .wrapper,
    #about .wrapper .widget,
    footer .wrapper,
    footer form .group-flex {
        display: block; }

    footer {
        padding: 70px 0 20px 0;
        background-image: url(../img/bg-footer-m.jpg); }
    footer .wrapper>div { width: 100% !important; }
    footer .wrapper>div.box { width: inherit !important; }
    footer .text h1 { text-align: center; }
    footer .info { 
        padding-left: 15px;
        margin-top: 60px;
        padding-bottom: 180px;
        background-position: center bottom;
        background-size: 150px; }
    footer .info .widget-html{
        max-width: 220px;
        margin: 0 auto; }
    footer .social {
        margin: 25px auto 0 auto;
        max-width: 220px; }
    footer .social ul { margin-left: 30px; }
    footer .footer-form {
        max-width: 330px;
        margin: 0 auto; }
    footer .footer-form .alert {
        position: relative;
        top: 0;
        margin: 0 0 20px 0; }
    footer form .group-flex .form-group { 
        width: 100% !important;
        margin-left: 0 !important; }

    .wa-mobile {
        right: 15px;
        bottom: 15px; }
}
