/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');


@font-face{
    font-family: 'Bungee-Regular';
    src:url(../fonts/Bungee-Regular.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.modal-open {
    padding-right: 0!important;
}

.enable{
    display: block!important;
    transition: 0.3s;
}
.disable{
    display: none!important;
    transition: 0.3s;
}
.owl-stage{
    margin: 0 auto!important;
}

a{
    text-decoration: none!important;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.home-content{
    padding: 0% 30% 0% 0%;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    /*background: #111;*/
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #A90B30;
    padding: 0 5px;
    
    transform: translateX(-50%);
}

/* navbar styling */
.navbar-0{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.call-to em{
    position: absolute;
    right: 2em;
    font-style: normal;
}
.call-to em>button{
    width: 100%;
    position: relative;
}
.navbar-0.sticky{
    padding: 15px 0;
    background: #A90B30;
}
.navbar-0 .max-width{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo{
    width: 20%;
}
.navbar-0 .logo img{
    width: 85%;
}
.navbar-0 .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar-0 .logo a span{
    color: #A90B30;
    transition: all 0.3s ease;
}
.navbar-0.sticky .logo a span{
    color: #fff;
}
.menu{
    margin: 0;
}
.navbar-0 .menu li{
    list-style: none;
    display: inline-block;
    margin: 0 1em;
    padding: 0 0.98em;
    position: relative;
}
.navbar-0 .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar-0 .menu li a:hover{
    color: #eeb600;
}
.navbar-0.sticky .menu li a:hover{
    color: #fff;
}
.navbar-0 .menu li>button{
    cursor: pointer;
    border: 1px solid #111;
    color: #fff;
    border-radius: 15px;
    background-color: #111;
    width: 100%;
    padding: 4% 0%;
    outline: none;
    text-decoration: none;
    -webkit-box-shadow: 8px 8px 18px 0px rgb(42 67 113 / 30%);
}
.navbar-0 .menu li>button>a{

}
#icons-m{

}
.content-img{
    position: absolute;
    top: -0.1em;
    left: 0.5em;
}
.content-img img{
    width: 25px;
}

/*** DROPDOWN-ONE ***/

.dropdown-w-one{
    position: relative;
}

.dropdown-w-one div{
    position: absolute;
    width: 300px;
    top: 40px;
    padding: 0;
    margin: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
    transform: translateY(15px);
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.dropdown-w-one div:after{
    position: absolute;
    left: 17%;
    margin-left: -8px;
    top: -8px;
    height: 16px;
    width: 16px;
    background-color: #FFF;
    box-shadow: -2px -2px 2px 0 rgba(0,0,0,0.2);
    content: "\00a0";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 150ms ease color,150ms ease background-color;
    z-index: 0;
}

.dropdown-w-one:hover div{
    opacity: 1;
    visibility: visible;
    padding: 0% 0% 0% 0%;
    transition: all 0.3s ease 0s;
    transform: translateY(0px);
}

.dropdown-w-one ul{
    display: grid;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #ffffffe3;
    border-radius: 5px;
    border: none;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0.1em;
}

.dropdown-w-one li{
    font-family: 'Roboto Condensed', sans-serif;
    width: 100%;
    padding: 15% 10%!important;
    margin: 0!important;
    color: #111;
    text-align: left;
    border-radius: 0px;
    text-align: center;
    border: 1px solid #eee;
}

.active-dropdown li:hover{
    background: #eee;
    z-index: 1;
}


.active-dropdown{
    text-align: center;
}
.active-dropdown img{
    width: 90%;
}
.active-dropdown p{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #333;
    width: fit-content;
    background-color: #0000;
    text-align: center;
    margin: auto;
    margin-bottom: 15px;
    padding: 0% 10%;
    border-radius: 5px;
    border: 1.5px solid #cfa54bab;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 45px;
    border-radius: 100%;
    background: #A90B30;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}

.title-table {
    line-height: normal!important;
    height: auto!important;
    position: absolute!important;
    top: 0;
    left: 0;
    width: 130px!important;
    font-size: 14px!important;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    text-transform: uppercase;
    color: #fff;
    background: #338e33!important;
    padding: 7px 15px;
    letter-spacing: 0.5px;
    -webkit-border-top-left-radius: 6px!important;
    -webkit-border-top-right-radius: 0px!important;
    -webkit-border-bottom-right-radius: 17px!important;
    -webkit-border-bottom-left-radius: 0px!important;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 17px;
    -moz-border-radius-bottomright: 17px;
    -moz-border-radius-bottomleft: 0px;
    /*
    box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -webkit-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    */
    -moz-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
}

.title-table img{
    width: 25%;
}
/* home section styling */
.home{
    display: flex;
    background: url("../images/banner.jpg") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover!important;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
    background-position: center;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 65px;
    margin-left: -3px;
    line-height: 1.2;
    font-family: 'Bungee-Regular';
}
.home .home-content .text-3{
    font-size: 25px;
    margin: 5px 0;
}
.home .home-content .text-3 i{
    color: #eeb600;
    padding: 0 0.1em;
    margin: 1em 0;
}
.home .home-content .text-3 span{
    color: #A90B30;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background: #A90B30;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid #A90B30;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #A90B30;
    background: none;
}

/* about section styling */
.about{
    padding: 100px 0 0;
}
.about .title::after{
    content: "The B Burguer";
}
.about .about-content .left{
    width: 45%;
}
.about .about-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #A90B30;
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right a{
    display: inline-block;
    background: #A90B30;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #A90B30;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #A90B30;
    background: none;
}

/* services section styling */
.fondo-0{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0.5;
    background: rgba(0,0,0,0.7);
    border-radius: 6px;
}
.fondo-1{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0.3;
    background: #fff;
}

.services, .teams{
    position: relative;
    color: #111;
    background-image: url('../images/fries.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.services .title::before,
.teams .title::before{
    
}
.services .title::after,
.teams .title::after{
    content: "The secret is the meat";
}

.services .serv-content .card .text{
    color: #fff;
}
.services .serv-content .card{
    position: relative;
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 35px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.services .serv-content .card p{
    display: none;
    transition: all 0.3s ease;
    color: #fff;
    left: 0;
    padding: 0 10%;
    text-align: justify;
}
.services .serv-content .card:hover{
    background: #A90B30;
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
    position: absolute;
    bottom: 1em;
    left: 1em;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);
    left: 0;
    top: 4em;
}
.services .serv-content .card:hover p{
    transition: all 0.3s ease;
    display: block;
}
.services .serv-content .card i{
    font-size: 1em;
    color: #fff;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

#back-img{
    background-image: url('../images/promo.jpg');
    background-size: cover;
    height: 355px!important;
}

#sticky {
    padding: 15px 0;
    background: #A90B30;
}
/* skills section styling */

.active-menu{
    color: #A90B30!important;
    border: 2px solid #A90B30!important;
    transition: all 0.3s ease!important;
}
#skills{
    padding: 100px 0 0;
}

.skills .title::after{
    content: "The B Burguer";
}
.skills .skills-content ul {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.skills .skills-content ul>li {
    list-style: none;
    color: #9b9b9b;
    border: 2px solid #e0e1e9;
    border-radius: 50px;
    padding: 1% 4%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.skills .skills-content ul>li:hover {
    color: #A90B30;
    border: 2px solid #A90B30;
    transition: all 0.3s ease;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block!important;
    height: 0;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    border: none;
    padding: 0!important;
    font: inherit;
    color: #0000!important;
}
.items-0{
  display: flex;
  /*max-width: 720px;*/
  width: 100%;
  justify-content: space-between;
}
.items-0 h4{
    padding: 15px 25px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
    border-radius: 50px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}
.items-0 h4.active-0{
    color: #f2f3f8!important;
    background: #a90b30;
    border: 2px solid #a90b30;
}
.items-0.active-0:hover h4{
    color: #9b9b9b!important;
}
.items-0 h4:hover{
    color: #a90b30;
    border: 2px solid #a90b30;
    transition: all 0.3s ease;
}

.gallery-0{
  display: flex;
  flex-wrap: wrap;
  margin-top: 00px;
  z-index: 0;
  top: -7em;
  position: relative;
  transition: all 0.3s ease;
}
.gallery-0 .image{
  width: calc(100% / 1)!important;
  padding: 7px;
}
.gallery-0 .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery-0 .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery-0 .image:hover img{
  transform: scale(1.1);
}
.gallery-0 .image.hide-0{
  display: none;
}
.gallery-0 .image.show-0{
  animation: animate 0.1s ease;
}
@keyframes animate {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}

.container-carousel {
    position: relative;
    width: 100%;
}

.container-carousel{
    position: relative;
    width: 100%!important;
    z-index: 6;
}
.container-carousel .content-products{
    position: relative;
    text-align: center;
    padding: 15%;
    margin: 0;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.container-carousel .content-products img{
}
.container-carousel .content-products h4{
    margin: 1em 0;
}
.container-carousel .content-products h4>b{
    position: relative;
    top: 0.5em;
    font-weight: 500;
    font-size: 1em;
    color: #A90B30;

}
.container-carousel .content-products p{
    display: none;
    margin: 5px 0;
    color: #555;
    width: 100%;
}
.container-carousel .content-products button{
    display: none;
    width: 50%;
    padding: 2%;
    border-radius: 50px;
    border: 1px solid #A90B30;
    color: #eee;
    background: #A90B30;
    font-size: 1.4em;
}

.container-carousel .content-products:hover p{
    display: block;
}
.container-carousel .content-products:hover button{
    display: block;
}

.container-carousel .carousel-control.right {
    background-image: none;
}

.container-carousel .carousel-control.left {
    background-image: none;
}

.glyphicon .glyphicon-chevron-left{

}

.glyphicon .glyphicon-chevron-right{

}

.skills {
    background: #f2f3f8;
}

.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    text-align: justify;
}
.skills .skills-content .left a{
    display: inline-block;
    background: #A90B30;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #A90B30;
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: #A90B30;
    background: none;
}
.skills .skills-content .right .bars{
    margin-bottom: 15px;
}
.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.skills .skills-content .right > span{
    /*
    font-weight: 500;
    font-size: 18px;
    */
}
.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}
.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #A90B30;
}
.skills-content .right .html::before{
    width: 90%;
}
.skills-content .right .css::before{
    width: 60%;
}
.skills-content .right .js::before{
    width: 80%;
}
.skills-content .right .php::before{
    width: 50%;
}
.skills-content .right .mysql::before{
    width: 70%;
}

/** Banners medios **/

.banner-center{
    background-image: url('../images/banner-medio.jpg');
    background-position: center;
    background-size: cover;
    text-align: left;
    position: relative;
    padding: 150px 0;
}
.banner-center h2{
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.3em;
    margin: 0% 0;
    color: #fff;
    position: relative;
    text-align: center;
    line-height: 1.4;
    padding: 0% 10% 2%;
}

.banner-center button{
    position: absolute;
    margin: 0em auto;
    display: flex;
    width: fit-content;
    right: 0;
    left: 0;
    padding: 0.5% 3%;
    border: 1px solid #a90b30;
    border-radius: 10px;
    background: #a90b30;
    color: #fff;
    font-size: 1.5em;
}
.fondo-paralax{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background-image: url('../images/par.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/***** GALLERY ******/
.gallery-rest{
    width: 100%;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gallery-rest div{
    width: 100%;
    margin: 0%;
    padding: 0%;
    position: relative;
}

.gallery-rest div>img{
    width: 100%;
}

.gallery-rest div>span{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    background-color: #0000005e;
    transition: 0.3s;
    color: #ffffff94;
}

.gallery-rest div>span>p{
    font-family: 'Raleway', sans-serif;
    margin: auto;
    padding: 0% 10%;
    font-size: 30px;
    text-align: center;
    letter-spacing:0.5px;
    color: #fff;
}

.gallery-rest div>span:hover {
    background-color: #0000;
    transition: 0.3s;
    color: #fff;
}


/* teams section styling */
.teams .title::after{
    content: "who with me";
}
.teams .carousel .card{
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover{
    background: #A90B30;
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover .box{
    transform: scale(1.05);
}
.teams .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.teams .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #A90B30;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #A90B30!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #A90B30!important;
}

/* contact section styling */
.contact{
    position: relative;
    color: #111;
    background-image: url('../images/fries.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    padding: 120px 0;
}
.contact .title::after{
    content: "The secret is the meat";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
    cursor: pointer;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #A90B30;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
  justify-content: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #A90B30;
  border: 2px solid #A90B30;
  transition: all 0.3s ease;
  margin-top: 1em;
}
.right form .button-area button:hover{
  color: #A90B30;
  background: none;
}
.contactos{
    background-image: url(../images/banner-medio.jpg);
    height: 55vh;
    min-height: auto;
    position: relative;
    z-index: 0;
}
#sha {
    background: #fff;
    padding: 5%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}


label{
    font-weight: normal!important;
    font-size: 16px;
    color: #111;
}

/* sucursales */
/* NEW PRODUCTS TODAY ***/

.new-products{
    text-align: center;
    position: relative;
}
.new-products ul{
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    grid-gap: 25px;
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
}
.new-products ul>li{
    list-style: none;
    width: 25%;
    padding: 0;
    background: #eee;
    border-radius: 5px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.new-products ul>li>img{
    width: 100%;
}
.new-products ul>li>button{
    text-decoration: none;
    outline: none;
    padding: 4% 4%;
    border: 1px solid #111;
    background: #eee;
    color: #111;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    background: #111e;
    color: #fff;
    width: 100%;
    font-size: 1em;
    letter-spacing: 0.5px;
    font-weight: bold;
    top: -1em;
    text-align: left;
}
.new-products ul>li>button>i{
    position: absolute;
    right: 1.5em;
}
.new-products ul>li:hover{
    transform: scale(1.03);     
    transition: 0.3s;
}
.new-products ul>li>div{
    text-align: left;
    padding: 0% 2% 5%;
    padding-left: 1em;
}
.new-products ul>li>div>i{
    color: #eeb600;
}
.new-products ul>li>div>p{
    font-size: 15px;
    margin: 0.5em 0;
}
.new-products ul>li>div>p>i{
    color: #a90b30;
}
.footer-end{
    width: 100%;
}
.footer-end ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.footer-end ul>li{
    list-style: none;
}
.footer-end ul>li{

}
.footer-end ul>li>span{

}
.footer-end ul>li>span>img{
    width: 5%;
    border-radius: 100%;
    margin-right: 1em;
}
.footer-end ul>li>i{
    font-weight: normal;
    margin: 0 1em;
    color: #eeeeeebd;
    transition: 0.3s;
    font-size: 1.5em;
    cursor: pointer;
}
.footer-end ul>li>i:hover{
    transition: 0.3s;
    color: #fff;
}
/*** MODAL OPEN ***/

/*** MODAL ***/

    .container-modal{
        font-family: var(--font-primary);
        width: 100%;
        margin: 0%;
        padding: 4%;
        position: relative;
        color: #ddd;
        background: #111;
    }

    .container-modal h2{
        font-family: var(--font-primary);
        width: 100%;
        margin: 0% 0% 3% 0%;
        padding: 0% 0% 2% 0%;
        font-size: 25px;
        font-weight: bold;
        color: #ddd;
        letter-spacing: 0.5px;
        border-bottom: 1px solid #ffc107;
    }

    .container-modal h3{
        font-family: var(--font-primary);
        width: 100%;
        margin: 3% 0% 3% 0%;
        padding: 2% 0% 2% 0%;
        font-size: 18px;
        color: #212121;
        letter-spacing: 0.5px;
        border-top: 1px solid #ffc107;
    }

    .container-modal label{
        width: 100%;
        margin: 2px 0px 5px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 18px;
        color: #eee;
    }

    .container-modal input{
        width: 100%;
        margin: 0px 0px 5px 0px;
        padding: 5px 10px;
        font-size: 18px;
        border: 1px solid #0000004f;
        outline: none;
        color: #111;
    }

    .container-modal img {
        width: 50%;
        margin: 0% 25%;
    }

    .container-modal i{
        
    }

    .container-modal ul{
        width: 100%;
        margin: 0%;
        padding: 0%;
        list-style: none;
        display: flex;
    }

    .container-modal ul>li{
        width: 49%;
    }

    .container-modal div{
        width: 100%;
        margin: 2% 0% 3% 0%;
        padding: 0% 0% 0% 0%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .container-modal div>button{
        width: 48%;
        margin: 0%;
        padding: 1%;
        border: none;
        outline: none;
        font-size: 18px;
        letter-spacing: 0.5px;
        border-radius: 5px;
    }

    .btn-login-acept{
        background: #fbe16e;
        color: #111;
        font-weight: bold;
    }

    .btn-login-cancel{
        background: #ff3f3f;
        color: #ffffff;
    }

    .btn-login-register{
        background: #343a40;
        color: #fff;
    }

    .container-modal span{
        padding: 2% 0% 0% 0%;
        cursor: pointer;
    }

    .container-modal span:hover{
        color: #ffc107;
    }

    .container-modal iframe{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .close-modal{
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        z-index: 5;
        cursor: pointer;
    }

/* footer section styling */
footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span{
    color: #eeeeee8c;
}
footer span a{
    color: #A90B30;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}
#desk{
    display: block;
}
#mob{
    display: none;
}


/* responsive media query start */


@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .pulsingButton {
        width: 145px!important;
    }
    .content-img {
        display: none;
    }
    .navbar-0 .menu li {
            margin: 0 1em;
        padding: 0 0em;
    }
}


@media (max-width: 1024px) {
    .navbar-0 .menu li {
        margin: 0 1.5em;
        padding: 0;
    }
    .content-img img {
        width: 25px;
    }
    .content-img {
        left: -10px;
    }
    .contact .contact-content .row {
        align-items: center;
        width: 100%;
        padding-left: 25px;
    }
    .container-carousel .content-products {
        height: 35vh;
    }
    #back-img {
        height: 17vh;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    #seudo{
        position: relative;
    }
    #seudo:after{
        position: absolute;
        content: ' ';
        width: 20px;
        background: #f2f3f8;
        z-index: 7;
        right: -1%;
        height: 60px;
        top: 0;

    }
    #seudo:before{
        position: absolute;
        content: ' ';
        width: 20px;
        background: #f2f3f8;
        z-index: 7;
        left: -1%;
        height: 60px;
        top: 0;

    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i {
        position: absolute;
        right: 1em;
        top: 0.7em;
    }

    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar-0 .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #000e;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar-0 .menu.active{
        left: 0;
    }
    .navbar-0 .menu li{
        display: block;
    }
    .navbar-0 .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .navbar-0 .menu li>button {
        border: 1px solid #0000;
        background-color: #0000;
        -webkit-box-shadow: none;
    }
    .pulsingButton {
        background-color: none!important;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    .new-products ul {
        grid-template-columns: 1fr 1fr;
    }
    #iconss{
        display: none;
    }
    .home .home-content .text-2 {
        font-size: 40px;
    }
    .home .home-content .text-3 {
        font-size: 25px;
    }
    .dropdown-w-one div {
        display: none;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 550px!important;
        margin: 30px auto;
    }

}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .services .serv-content .card{
        width: 100%;
    }
    .navbar-0 .logo img {
        width: 100%;
    }
    .navbar-0 {
        padding: 15px 0;
    }
    .footer-end ul {
        grid-template-columns: 1fr;
    }
    .new-products ul{
        flex-direction: row;
    }

    .new-products ul>li{
        width: 75%!important;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 40px;
    }
    .home .home-content .text-3{
        font-size: 22px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 19px;
    }
    section .title {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    #menu{
       padding: 100px 0 0;
    }
    #resp{
        margin-top: 1.5em!important;
    }
    .container-carousel .content-products {
        padding: 5%;
    }
    .container-carousel .content-products {
        height: 70vh;
    }
    section .title::after {
        display: none;
    }
    .contactos{
        height: 40vh;
    }
    .content-img{
        display: none;
    }
    .new-products ul {
        flex-direction: column;
    }
    .new-products li{
        width: 75%!important;
        margin: 0 auto;
    }
    .items-0 h4 {
        padding: 15px 0px;
        font-size: 11px;
    }
    .container-carousel .content-products {
        height: 75vh;
    }
    #back-img {
        height: 35vh;
    }
    #desk{
        display: none;
    }
    #mob{
        display: block;
    }
    .container-carousel .content-products p {
        display: block;
    }
    .gallery-0 {
        top: -8em;
    }
}

@media (max-width: 360px){
    .home-content {
        padding: 0;
    }
    .home .home-content .text-3 {
        font-size: 20px;
    }

    .home .home-content .text-2 {
        font-size: 40px;
    }
}