/*
========================
Header area start
========================
*/
h3 {
  text-indent: 'each-line' !important
}
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
	background: #fff;
	color: #191919;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

.header-area {
    background-image: url(images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 15px 0;
}

/* .top-header {
  position: fixed
} */

.navbar-brand img {
    max-width: 120px;
}

.navbar-nav li {
    padding: 8px 0px;
    padding-left: 5px;
}

.navbar-nav li a {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 4px;
    transition: 0.2s all ease;
}

#active{
    background: #FF730E;
}

.navbar-nav li a:hover {
    opacity: .8;
}


/* hamburger-area */
.hamburger {
  /*! padding: 15px 15px; */
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none!important;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #FFF;

}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;

}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;

}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #FFF;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    outline: none;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
    outline: none;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    outline: none;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s
    cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s
    cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    outline: none;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s
    cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s
    cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s
    cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header-cnt {
    padding: 300px 0 120px;
}

.header-cnt h4 {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
}

.header-cnt h4 span {
    font-size: 40px;
}

.header-cnt p {
    font-weight: bold;
    font-size: 20px;
    color: #FFF;
}

.header-cnt .green {
    color: #1ADDA0;
    margin: 15px 0 10px;
}

/*=== buscar-area start ===*/
.buscar-area {
    padding: 10px 0;
}

.buscar-item {
    background: #FFFFFF;
    padding: 15px 25px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    border: 3px solid #FF730E;
    border-radius: 5px;
    margin-top: -70px;
}

.buscar-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #535654;
    text-align: center;
}

.buscar-item label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #535654;
}

.buscar-item input {
    width: 100%;
    display: block;
    padding: 10px 15px;
    background: #FFFFFF;
    border: 2px solid #FF730E;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    outline: none;
}

.buscar-item [type="submit"] {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    background: #FF730E;
    border: none;
    border-radius: 4px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.buscar-item [type="submit"]:hover {
    opacity: .8;
}

.buscar-item form {
    padding-top: 18px;
}

/*=== como-area start ===*/
.como-area {
    padding: 60px 0 80px;
}

.upper-cnt h4 {
    font-weight: 700;
    font-size: 32px;
    color: #535654;
    text-align: center;
}

.upper-cnt {
    padding-bottom: 40px;
}

.como-item h2 {
    font-weight: 900;
    font-size: 120px;
    color: #D8FFF3;
    margin-bottom: 0;
}

.como-item h4 {
    font-weight: 700;
    font-size: 20px;
}

.como-item p {
    font-size: 18px;
    font-weight: 400;
    color: #535654;
}

.como-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.como-icon i {
    font-size: 75px;
    color: #D8FFF3;
}

/*=== sumer-area start ===*/
.sumer-area {
    background-color: #FF730E;
    background-image: url(images/bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 0;
}

.sumer-cnt h4 {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
}

.sumer-cnt a {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #FF730E;
    background: #FFF;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    margin-top: 30px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.sumer-cnt a:hover {
    opacity: .9;
}

/*=== accordian-area start ===*/
.accordian-area {
    padding: 70px 0 170px;
}

.ziehharmonika h3 {
    font-weight: 700;
    font-size: 20px;
    color: #727674;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 2px;
    padding-right: 40px;
    transition: 0.25s all;
    position: relative;
    border-bottom: 1px solid #C4C4C4;;

}

.ziehharmonika {
  text-align: 'justify'
}
.ziehharmonika h3:last-of-type {
    border-bottom: none;
}


.ziehharmonika h3.active {
    margin-bottom: 15px;
}
.ziehharmonika h3::before {
    content: attr(data-prefix);
    font-size: 18px;
    margin-right: 9px;
}
.ziehharmonika h3.alignLeft {
    padding-left: 35px;
}
.ziehharmonika > div {
    display: none;
    background: #fff;
    text-align: left;
    padding: 15px 15px;
    margin-bottom: 9px;
    border-bottom: 1px solid #C4C4C4;
}

.ziehharmonika > div:last-of-type {
    border-bottom: none;
}

.ziehharmonika > div p {
    font-size: 16px;
    color: #535654;
}

.ziehharmonika .arrowDown {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: #272e35 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
    transition: 0.25s all;
    opacity: 0;
}

.ziehharmonika .collapseIcon {
    position: absolute;
    right: 20px;
    top: 45%;
    font-size: 25px;
    font-weight: 300;
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
}
.ziehharmonika .collapseIcon.alignLeft {
    right: initial;
    left: 20px;
}

/*=== contact-area start ===*/
.contact-area {
    background-color: #E9EAEA;
    background-image: url(images/bg-3.png);
    background-repeat: no-repeat;
    background-size: 240px;
    background-position: left;
    padding: 130px 0;
    margin-bottom: 118px;
    position: relative;
}

.contact-left h4 {
    font-size: 31px;
    font-weight: 800;
    color: #535654;
}

.contact-left h4 span {
    font-weight: 400;
}

.contact-left p {
    font-weight: 600;
    font-size: 14px;
    color: #727674;
}

.contact-left ul li a {
    font-weight: 600;
    font-size: 16px;
    color: #535654;
}

.contact-left ul li a i {
    font-size: 24px;
    line-height: 20px;
    text-align: center;
    color: #535654;
    margin-right: 15px;
}

.contact-left ul li {
    padding: 10px 0;
}

.contact-right {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 40px 25px 30px;
    position: absolute;
    top: -95%;
}

.contact-right h4 {
    font-weight: 700;
    font-size: 32px;
    color: #535654;
}

.contact-right p {
    font-size: 16px;
    color: #535654;
}

.contact-right form {
    padding-top: 40px;
}

.contact-right label {
    font-weight: 600;
    font-size: 14px;
    color: #535654;
    display: block;
    margin-bottom: 0;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    display: block;
    font-size: 15px;
    padding: 10px 15px;
    color: #535654;
    background: #FFFFFF;
    border: 1px solid #FF730E;
    border-radius: 4px;
    margin-bottom: 14px;
    outline: none;
}

.contact-right [type="submit"] {
    width: 200px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    background: #FF730E;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    margin-top: 10px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.contact-right [type="submit"]:hover {
    opacity: .9;
}

.contact-right .lst-numb {
    text-align: right;
}

/*=== footer-area start ===*/
.footer-area {
    background: #535654;
    padding: 25px 0;
}

.footer-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left img {
    max-width: 95px;
}

.footer-left p {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.footer-right p {
    font-weight: 600;
    font-size: 14px;
    color: #FF730E;
    margin-bottom: 0;
}

/*=== page-2 start ===*/
.header-area-2 {
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.header-area-2 .navbar-nav li a {
    color: #535654;
}

.header-area-2 .navbar-nav #active {
    color: #FFF;
}

.header-area-2 .navbar-nav li a:hover {
    color: #535654;
}

.header-area-2 .hamburger-inner,
.header-area-2 .hamburger-inner::before,
.header-area-2 .hamburger-inner::after {
    background-color: #2a2a2a;
}

.header-area-2 .hamburger.is-active .hamburger-inner,
.header-area-2 .hamburger.is-active .hamburger-inner::before,
.header-area-2 .hamburger.is-active .hamburger-inner::after {
    background-color: #2a2a2a;
}

/*=== page2-bnr-area start ===*/
.page2-bnr-area {
    padding: 40px 0 50px;
}

.page2-bnr-upper h2 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #535654;
}

.page2-bnr-upper p {
    font-size: 16px;
    text-align: center;
    color: #535654;
}

.page2-bnr-upper {
    padding-bottom: 25px;
}

.page2-bnr-part {
    background: #FF730E;
    border-radius: 10px;
    padding: 8px;
}


.page2-bnr-part form {
    padding: 15px 15px 25px;
}

.page2-bnr-item label {
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
}

.page2-bnr-item input,
.page2-bnr-item select {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #535654;
    padding: 7px 12px;
    background: #FFFFFF;
    border: none;
    border-radius: 4px;
    outline: none;
}

.page2-bnr-item select {
    color: #535654;
    font-weight: 600;
    padding: 7px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/arrow.png);
    background-repeat: no-repeat;
    background-position: 96% 50%;
    background-size: 16px;
}

::placeholder {
  color: #9A9C9B!important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9A9C9B!important;
   opacity: 1;
}

::-ms-input-placeholder {
    color: #9A9C9B!important;
   opacity: 1;
}

.lclft-bg {
    background: #FFF;
}

.location-left p {
    font-size: 14px;
    color: #9A9C9B;
    padding: 20px 10px;
}

.location-left p i {
    margin: 0 8px
}

.location-left p .fa-exchange-alt {
    transform: rotate(90deg);
}

.inr-left {
    border-right: 1px solid #C7C9C8;
    padding-right: 15px;
}

.inr-right {
    padding-left: 15px;
}

.lft-bg {
    background: #FFEFE4;
}

.bdr {
    border-left: 5px solid #E9EAEA;
}

.inr-left h4,
.inr-right h4 {
    font-weight: 700;
    font-size: 16px;
    color: #535654;
    margin-bottom: 0;
}

.inr-left p,
.inr-right p {
    font-size: 16px;
    color: #535654;
    padding: 0;
    margin-bottom: 0;
}

.inr-left h4 {
    text-align: center;
}

.location-inner {
    padding: 10px 15px;
    margin-bottom: 10px;
}

/*=== page-3 start ===*/
.main-left-bg {
    background-image: url(images/banner-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-left {
    padding: 60px;
    padding-right: 24%;
}

.main-left-cnt h2 {
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
}

.main-left-cnt ul {
    padding: 15px 0 30px;
}

.main-left-cnt ul li {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    padding: 5px 0;
}

.main-left-cnt ul li i {
    color: #5CEABE;
    font-size: 17px;
    margin-right: 12px;
}

.main-left-cnt p {
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    color: #E9EAEA;
    margin-bottom: 30px;
}

.precio {
    padding: 30px 40px 20px;
}

.precio h4 {
    font-weight: 7000;
    font-size: 20px;
    color: #727674;
}

.precio h2 {
    font-weight: 700;
    font-size: 32px;
    color: #535654;
}

.precio p {
    font-size: 14px;
    color: #727674;
}

.mn-right-form {
    padding-bottom: 30px;
    margin: 0 40px;
    border-bottom: 1px solid #E9EAEA;
}

.mn-right-form p {
    font-weight: 600;
    font-size: 14px;
    color: #727674;
    margin-bottom: 5px;
}

.mn-right-form form {
    position: relative;
}

.mn-right-form input {
    font-size: 16px;
    color: #9A9C9B;
    width: 80%;
    display: block;
    background: #FFFFFF;
    padding: 8px 8px;
    border: 1px solid #FF730E;
    border-radius: 4px;
    outline: none;
}

.mn-right-form [type="submit"] {
    width: 125px;
    background: #FF730E;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    right: 15%;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.mn-right-form [type="submit"]:hover {
    opacity: .9;
}

.discount-item {
    margin: 30px 40px;
    border-bottom: 1px solid #E9EAEA;
}

.discount-item p {
    font-weight: 600;
    font-size: 16px;
    color: #727674;
}

.total-cnt {
    padding: 0 40px 130px;
}

.total-cnt h4 {
    font-weight: 700;
    font-size: 20px;
    color: #535654;
}

.total-cnt a {
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    background: #FF730E;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

.total-cnt a:hover {
    opacity: .8;
}

.main-right-acordian {
    background: #F6F6F6;
    padding: 30px 40px 10px;
}


.ziehharmonika > div ul li {
    font-weight: 400;
    font-size: 16px;
    color: #535654;
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.ziehharmonika > div ul li span {
    font-weight: 600;
}

.ziehharmonika > div ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    background: #535654;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
}

.main-right-acordian .ziehharmonika h3 {
    font-weight: 700;
    font-size: 20px;
    color: #535654;
}

.main-right-acordian .ziehharmonika > div {
    background: transparent;
    padding: 0 15px;
}

.main-right-acordian .ziehharmonika .collapseIcon {
    left: 120px;
    top: 50%;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hm-drop-btn {
    color: #FFFF;
}

.hm-drop-btn:hover {
    color: #ddd;
}

.dropdown-part .dropdown button {
    outline: none!important;
    box-shadow: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 0;
    left: -120px;
}

.ecm-inner {
    min-height: calc(100vh - 167px);
    padding: 40px 0;
    background-image: url(images/bgtre.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ecm-inner h2 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    color: #535654;
    margin-bottom: 20px;
}

.ecm-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #535654;
}

.ecm-inner a {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    text-decoration-line: underline;
    color: #FF730E;
    margin-top: 15px;
    display: inline-block;
}

.ecm3-cnt .ecm-inner h2 {
    font-size: 56px;
}

.ecm3-cnt .ecm-inner p {
    font-weight: 700;
}

@media screen and (max-width: 991px) {

    .ecm-inner {
            min-height: calc(100vh - 210px);
    }
    .ecm3-cnt .ecm-inner h2 {
        font-size: 42px;
    }

}


/*=== Header area start ===*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #535654;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.main-area {
    background-image: url(images/04.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    padding: 30px 0;
}

.main-area-inner {
    max-width: 880px;
    margin: auto;
}

.header-area {
    padding: 0 5%;
}

.header-area img {
    max-width: 100%;
}

/*=== como area start ===*/

.como-area {
    padding: 70px 0;
}

.como-item h2 {
    font-weight: 700;
    font-size: 32px;
    color: #535654;
    margin-bottom: 50px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 50px;
    width: 210px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
    font-size: 40px;
}

.star-rating :checked ~ label {
    color: #F2994A;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #F2994A;
}

.como-item p {
    font-weight: 400;
    font-size: 16px;
    color: #535654;
    margin-bottom: 30px;
}

.como-item p span {
    color: #ff730e;
}

.como-item form label {
    font-size: 14px;
    color: #535654;
    display: block;
}

.como-item form textarea {
    width: 80%;
    height: 144px;
    padding: 15px;
    background-color: #FFFFFF;
    border: 1px solid #FF730E;
    box-sizing: border-box;
    border-radius: 4px;
    resize: none;
    display: block;
    margin-bottom: 16px;
}

.como-item form input {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 10px 25px;
    background-color: #FF730E;
    border-radius: 4px;
    display: block;
    border: none;
    margin-bottom: 40px;
}

.como-item-inner2 {
    display: none;
}

/*=== page 2 start ===*/

.como-item2 h3 {
    font-weight: 700;
    font-size: 32px;
    color: #535654;
    margin-bottom: 30px;
}

.como-item2 h4 {
    font-weight: 400;
    font-size: 16px;
    color: #535654;
    margin-bottom: 30px;
    max-width: 650px;
}

.como-item2 h4 span {
    font-weight: 700;
}

.como-item2-inner a {
    font-weight: 700;
    font-size: 20px;
    color: #FF730E;
    padding: 20px 90px;
    display: inline-block;
    background-color: #FFEFE4;
    margin-bottom: 60px;
}

.como-item2-inner2 a {
    font-weight: 600;
    font-size: 14px;
    color: #FF730E;
    letter-spacing: -0.01em;
    padding: 17px 45px;
    display: inline-block;
    background-color: transparent;
    border: 1px solid #FF730E;
    box-sizing: border-box;
    border-radius: 4px;
}

.como-item2-inner2 a:hover {
    background: #FF730E;
    color: #fff;
}

/*=== page 3 start ===*/

.main-wrapper {
    background-color: #e5e5e5;
}

.main-area2 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}

.header-area2 {
    background-image: url(images/01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 16px;
}

.logo-area {
    margin-bottom: 100px;
}

.logo-area a img {
    max-width: 100%
}

.header-area2 h2 {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    margin-left: 19px;
}

/*=== evento area start ===*/

.evento-area {
    background-color: #f8f8f8;
    padding: 70px 24px 45px;
}

.evento-area h2 {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #535654;
    margin-bottom: 40px;
}

.evento-item {
    margin-bottom: 24px;
}

.evento-item h3 {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #535654;
}

.evento-item h6 {
    font-weight: 700;
    font-size: 20px;
    color: #535654;
    display: flex;
    align-items: center;
}

.evento-item h6 img {
    max-width: 100%;
    margin-right: 12px;
}

/*=== jugar area start ===*/

.jugar-area {
    padding: 70px 24px;
}

.jugar-area h2 {
    font-weight: 700;
    font-size: 24px;
    color: #535654;
    margin-bottom: 30px;
}

.jugar-area p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #535654;
    margin-bottom: 30px;
}

.jugar-area ul {
    display: flex;
    justify-content: space-between;
}

.jugar-area ul li {
    width: 48%;
}

.jugar-area ul li a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #FF730E;
    width: 100%;
    text-align: center;
    padding: 17px 0;
    display: block;
    border: 1px solid #FF730E;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #fff;
}

.jugar-area ul li a:hover {
    background-color: #FF730E;
    color: #fff;
}

/*=== los area start ===*/

.los-area {
    padding: 16px 24px 28px;
    background-color: #FF730E;
}

.los-area p {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0;
}

/*=== game area start ===*/

.game-area {
    background-color: #E9EAEA;
}

.game-area-inner {
    background-image: url(images/03.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    padding: 40px 26px 16px;
}

.game-area-inner h2 {
    font-weight: 800;
    font-size: 31px;
    letter-spacing: -0.01em;
    color: #535654;
    margin-bottom: 16px;
}

.game-area-inner h2 span {
    font-weight: 400;
}

.game-area-inner p {
    font-weight: 600;
    font-size: 14px;
    color: #727674;
    margin-bottom: 30px;
}

.game-area-inner ul li a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #535654;
    display: block;
    margin-bottom: 24px;
}

.game-area-inner ul li a img {
    margin-right: 14px;
    max-width: 100%;
}


/*
====================================
For responsive
====================================
*/

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .main-area {
        background-image: none;
    }
}

@media screen and (max-width: 767px) {
    .main-area {
        background-image: none;
    }
    .header-area {
        padding: 0 15px;
    }
    .como-area {
        padding: 40px 0;
    }
    .como-item h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .como-item img {
        margin: 0 auto 50px;
    }
    .como-item p {
        font-weight: 500;
        margin-bottom: 25px;
    }
    .como-item form textarea {
        width: 328px;
    }
    .como-item-inner {
        display: none;
    }
    .como-item-inner2 {
        display: block;
    }
    .footer-area {
        padding: 15px;
        flex-direction: column;
    }
    .footer-area img {
        display: none;
    }
    .footer-area h6 {
        display: none;
    }
    .footer-area p {
        display: block;
    }
    .footer-area span {
        display: block;
        text-align: center;
        font-size: 10px;
    }
    .como-item2 h3 {
        font-size: 24px;
    }
    .como-item2 h4 {
        font-weight: 500;
        font-size: 14px;
    }
    .como-item2 h4 span {
        font-weight: 400;
    }
    .como-item2-inner a {
        font-size: 16px;
        padding: 22px 24px;
        margin-bottom: 25px;
    }
    .como-item2-inner2 a {
        font-weight: 600;
        font-size: 14px;
        padding: 17px 75px;
    }
}

@media screen and (max-width: 360px) {
    .header-area2 h2 {
        margin-left: 0;
    }
    .evento-area {
        padding: 30px 16px 14px;
    }
    .evento-area h2 {
        margin-bottom: 30px;
    }
    .evento-item {
        margin-bottom: 16px;
    }
    .evento-item h3 {
        font-size: 14px;
    }
    .evento-item h6 {
        font-size: 16px;
    }
    .evento-item h6 i {
        font-size: 14px;
        margin-right: 8px;
    }
    .jugar-area {
        padding: 70px 16px;
    }
    .jugar-area h2 {
        margin-bottom: 24px;
    }
    .jugar-area p {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .jugar-area ul {
        flex-direction: column;
        align-items: center;
    }
    .jugar-area ul li {
        width: 243px;
    }
    .jugar-area ul li:first-of-type a {
        margin-bottom: 16px;
    }
    .los-area {
        padding: 16px 42px;
    }
    .los-area p {
        font-size: 14px;
    }
    .los-area p br {
        display: none;
    }
    .game-area-inner {
        background-size: cover;
        background-position: center;
        padding: 30px 13px 16px;
        background-image-color: red;
    }
    .game-area-inner h2 {
        text-align: center;
    }
    .game-area-inner p {
        text-align: center;
    }
    .game-area-inner ul {
        padding-left: 24px;
    }
    .game-area-inner ul li a {
        margin-bottom: 16px;
    }
    .footer-area2 {
        padding: 28px 24px;
    }
    .como-item form textarea {
        width: 100% !important;
    }
}


/*=== update page ===*/
.header-areaup {
    background: #FFF;
}

.header-areaup .navbar-nav li a {
    color: #727674;
}

.header-areaup .navbar-nav li #active {
    background: #FF730E;
    color: #FFFFFF;
}

.header-upleft h2 {
    font-weight: bold;
    font-size: 64px;
    color: #101211;
}

.header-upleft h2 span {
    color: #1ADDA0;   
}

.header-upleft {
    max-width: 500px;
}

.header-cntupd {
    padding: 100px 0!important;
}

.header-upright img {
    width: 100%;
}

.buscar-update {
    margin: 0!important;
    background: #FFFFFF;
    border: none;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.header-areaup .hamburger-inner, 
.header-areaup .hamburger-inner::before, 
.header-areaup .hamburger-inner::after {
    background: #191919;
}


.header-areaup .hamburger.is-active .hamburger-inner, 
.header-areaup .hamburger.is-active .hamburger-inner::before, 
.header-areaup .hamburger.is-active .hamburger-inner::after {
    background: #191919;
}

.comoupd {
    padding-top: 120px;
}

.como-upditem {
    display: flex;
    padding: 20px 30px;
}

.comup-lft h2 {
    font-weight: 600;
    font-size: 120px;
    line-height: 100px;
    color: #8AF4D3;
    margin: 0;
}

.como-cntupd {
    margin-left: 18px;
}

/*=== product page start ===*/
.product-header {
    padding-top: 10px;
    padding-bottom: 10px;
}
 
.prdbanner-main {
    background-image: url(images/prd-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.prdbanner-main h6 {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #E9EAEA;
}

.prdbanner-main h2 {
    font-weight: bold;
    font-size: 64px;
    color: #FFFFFF;
}

.prdbanner-main ul li {
    display: inline-block;
    padding-right: 14px;
}

.prdbanner-main ul li img {
    max-width: 100%;
}

.prdbanner-main ul li a {
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
}

.prdbanner-main ul li a span {
    font-weight: normal;
    font-size: 14px;
    text-decoration-line: underline;
    color: #FF730E;
}

.prdbanner-main .location {
    font-weight: bold;
    font-size: 16px;
    text-decoration-line: underline;
    color: #E9EAEA;
}

.prdbanner-main .location i {
    color: #1ADDA0;
}

/*=== product-main-area start ===*/
.product-mainprt {
    background: #FFF;
    padding: 75px 0 120px;
    padding-left: 48px;
    padding-right: 32px;
}

.mist-part h2 {
    font-weight: 800;
    font-size: 24px;
    color: #727674;
    margin-bottom: 16px;
}

.mist-part p {
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #727674;
}

.claves-part {
    margin-top: 54px;
}

.claves-part h2 {
    font-weight: 800;
    font-size: 24px;
    color: #727674;
    margin-bottom: 16px;
}

.claves-part ul li {
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #727674;
    position: relative;
    padding: 5px 0;
    padding-left: 16px;
}

.claves-part ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    background: #727674;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}

.claves-part span {
    font-weight: normal;
    font-size: 14px;
    display: block;
    padding: 14px 10px;
    text-align: center;
    color: #727674;
    background: #FAFAFA; 
    border: 1px solid #C7C9C8;
    box-sizing: border-box;
    border-radius: 4px;
    margin-top: 20px;
}

.slider-part {
    margin-top: 62px;
}

.slider-item img {
    width: 100%;
}

.carousel-cell {
    width: 50%;
    margin: 7.5px;
}

.slider-part .carousel-cell {
    width: 50%;
}

.slider-part2 {
    margin-top: 100px;
}

.sld-upper h2 {
    font-weight: 800;
    font-size: 24px;
    color: #727674;
    margin-bottom: 30px;
}

.main-carousel-2 .carousel-cell {
    width: 60%;
    background: #F4F4F4;
    padding: 30px 24px;
    border-radius: 4px;
}

.review-upper {
    display: flex;
    align-items: center;
}

.review-upper img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-cnt {
    margin-left: 10px;
}

.review-cnt h4 {
    font-weight: 500;
    font-size: 14px;
    color: #535654;
    margin: 0;
}

.review-cnt p {
    font-weight: 500;
    font-size: 12px;
    color: #9A9C9B;
    margin: 0;
}

.review-cnt p img {
    width: 80px;
    height: initial;
    border-radius: 0;
}

.review-main h2 {
    font-weight: bold;
    font-size: 20px;
    color: #535654;
}

.review-main span {
    font-weight: normal;
    font-size: 12px;
    color: #9A9C9B;
}

.review-main {
    margin: 30px 0;
}

.review-desc p {
    font-weight: normal;
    font-size: 14px;
    color: #727674;
}

.review-btm img {
    max-width: 100px;
}

.review-btm {
    margin-top: 65px;
}

.product-right {
    background: #FFFFFF;
    border: 1px solid #E9EAEA;
    box-sizing: border-box;
    border-radius: 4px;
}

.prdrit-upper h6 {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #9A9C9B;
}

.prdrit-upper h4 {
    font-weight: bold;
    font-size: 20px;
    color: #535654;
}

.prdrit-upper p {
    font-weight: 500;
    font-size: 16px;
    color: #9A9C9B;
}

.prdrit-upper  {
    padding: 40px 30px 48px;
    border-bottom: 1px solid #E9EAEA;
}

.prdrit-dolar {
    padding: 40px 30px;
    border-bottom: 1px solid #E9EAEA;
}

.prdrit-dolar h4 {
    font-weight: bold;
    font-size: 14px;
    color: #727674;
}

.prdrit-dolar h4 span {
    font-weight: 400;
    font-style: italic;
}

.prdrit-dolar h6 {
    font-weight: normal;
    font-size: 24px;
    text-decoration-line: line-through;
    color: #C7C9C8;
}

.prdrit-dolar h2 {
    font-weight: bold;
    font-size: 40px;
    color: #FF730E;
}

.prdrit-dolar p {
    font-weight: normal;
    font-size: 14px;
    color: #727674;
}

.prdrit-btn {
    padding: 40px 30px;
}

.prdrit-btn .prdmn-cmbtn {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    display: block;
    background: #FF730E;
    padding: 8px 10px;
    border-radius: 4px;
}

.prdrit-btn ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.prdrit-btn ul li {
    padding: 0 4px;
    width: 25%;
}

.prdrit-btn ul li img {
    width: 100%;
}

.mbl-comp h4 {
    font-weight: bold;
    font-size: 16px;
    color: #727674;
}

.mbl-comp h2 span {
    font-weight: normal;
    font-size: 20px;
    text-decoration-line: line-through;
    color: #9A9C9B;
}

.mbl-comp h2 strong {
    font-weight: 700;
    font-size: 20px;
    color: #FF730E;
}

.mbl-comp p {
    font-weight: normal;
    font-size: 14px;
    color: #727674;
}

.mbl-comp a {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    display: block;
    background: #FF730E;
    padding: 10px 10px;
    border-radius: 4px;
}

.mbl-comp {
    margin: 50px 0 20px;
}

.rating-mbl a img {
    max-width: 100%;
}

.rating-mbl a {
    font-weight: normal;
    font-size: 14px;
    color: #9A9C9B;
    margin-top: 20px;
    display: inline-block;
}

.rating-mbl a span {
    font-weight: normal;
    font-size: 14px;
    text-decoration-line: underline;
    color: #FF730E;
}

.mist-part,
.claves-part {
    max-width: 485px;
}

.claves-part ul li a {
    color: #FF730E;
    text-decoration: underline;
}

/*=== popup start ===*/
.modal-title {
    text-align: center;
}

.modal-content button {
    text-align: right;
    padding: 10px 20px 0;
    outline: none;
}

.modal-body {
    max-width: 552px;
    padding: 0px 64px 32px;
}

.modal-content {
    background: #FAFAFA;
    border-radius: 5px;
}

.modal-body h4 {
    font-weight: 800;
    font-size: 20px;
    color: #727674;
    margin-bottom: 20px;
}

.modal-body p {
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #727674;
}

.modal-body ul li {
    font-weight: normal;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #727674;
    padding-bottom: 8px;
}

.modal-body a {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    text-decoration-line: underline;
    color: #FF730E;
    width: 80px;
    display: block;
    margin: 30px auto 0;
}

.product-main-area {
    position: relative;
}

.bottom-fixed {
    position: fixed;
    width: 100%;
    max-width: 515px;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF;
    z-index: 999;
    padding: 10px 20px;
    margin: 0!important;
} 

.product-right {
    position: sticky;
    top: 48px;
    display: block;
    width: 100%;
}

.prd-overlay {
    background: rgba(0, 0, 0, 0.2);
    padding: 85px 45px 40px;
}

.product-body {
    background-color: #F6F6F6;
}

.prdrit-btn .prdmn-cmbtn {
    transition: 0.2s all ease;
}

.prdrit-btn .prdmn-cmbtn:hover {
    opacity: 0.8;
}