*, *::before, *::after {
    box-sizing: border-box;
  }
html {
    scroll-behavior: smooth;
}

body{
    padding:0;
    margin:0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}
a{text-decoration: none;box-sizing: border-box;display: inline-block;margin:0;color:#000000; transition:0.3s}

.card-reating{display:none!important;}

h1{
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 125%;
    margin:0;
}
h2{
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 125%;  
    margin:0; 
}
h3{
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    margin:0;
}
h4{
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    margin:0;
}
h5{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 125%;
    margin:0;
}
h6{
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    margin:0;
}
p{  
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    margin:0;
}
.green-bg{
    background: #24C765;
}
.navi-green-bg{
    background: #081C03;
}
.linear-green-bg-prim{
    background: linear-gradient(225deg, #081C03 0%, #24C765 100%);
}
.linear-green-bg-sec{
    background: linear-gradient(180deg, #24C765 0%, #30E579 23.96%, #2EF27D 48.96%, #30E679 76.56%, #24C765 100%);
}
.red-bg{
    background: #FF562E;
}
.navi-bg{
    background: #288AB5;
}
.orange-bg{
    background: #FF9C2E;
}
.gold-bg{
    background: #E0C564;
}
.white{color:#ffffff}
.green{
    color: #24C765;
}
.navi-green{
    color: #081C03;
}
.linear-green-prim{
    color: linear-gradient(225deg, #081C03 0%, #24C765 100%);
}
.linear-green-sec{
    color: linear-gradient(180deg, #24C765 0%, #30E579 23.96%, #2EF27D 48.96%, #30E679 76.56%, #24C765 100%);
}
.gray{
    color:#000000a0
}
.red{
    color: #FF562E;
}
.navi{
    color: #288AB5;
}
.orange{
    color: #FF9C2E;
}
.gold{
    color: #E0C564;
}

/* Buttons */

.button-primary{
    color:#fff;
    background: #24C765;
    border-radius: 10px;
    padding: 20px 32px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    box-sizing: border-box;
    filter: drop-shadow(0px 10px 20px rgba(23, 83, 76, 0));
    transition: 0.3s;
    text-align: center;
}
.button-primary:hover{
    transform: translateY(-5px);
    filter: drop-shadow(0px 10px 20px rgba(23, 83, 76, 0.35));
    transition:0.3s;
}
.button-secondary{
    color:#fff;
    background: #24C765;
    border-radius: 10px;
    padding: 20px 32px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    box-sizing: border-box;
    filter: drop-shadow(0px 5px 10px rgba(36, 199, 101, 0));
    transition: 0.3s;
    text-align: center;
}
.button-secondary:hover{
    transform: translateY(-5px);
    filter: drop-shadow(0px 5px 10px rgba(36, 199, 101, 0.35));
    transition:0.3s;
}

/* Menu */
.main-menu{
    padding:0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mm-lb, .mm-rb{
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-link{
    box-sizing: border-box;
    height: 90px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.logo-link img{
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}
.footer-logo{
    width: min(220px, 70vw);
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 8px;
}
.mm-link{
    font-style:normal;
    font-weight:400;
    font-size:18px;
    line-height: 120%;
    margin: 0 30px;
    color:#ffffff;
    opacity: 1;
    transition: 0.3s;
    position:relative;
}
.mm-link:hover{
    color:#24C765;
    opacity: 0.75;
    transition: 0.3s;
}
.mm-link-active{
    color:#24C765;
    font-weight: 500;
}
.nav-tel{
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color:#ffffff;
    margin: 0 30px;
    transition: 0.3s;
}
.nav-tel:hover{
    color:#24C765;
    transition: 0.3s;
}
.action-counter{
position: absolute;
    right: -20px;
    top: -12px;
    padding: 2px 7px 0px 7px;
    border-radius: 10px;
}

/* Uni-clases */
.container{
    max-width: 1280px;
    width: 100%;
}
.c-y{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.mb-120{margin-bottom: 120px;}
.mt-120{margin-top: 120px;}
.mt-60{
    margin-top:60px;
}
.mb-60{
    margin-bottom:60px;
}
.mt-30{margin-top: 30px;}
.mb-30{margin-bottom: 30px;}
.mb-10{
    margin-bottom: 10px;}
.section{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Home-hero */
.hero{
    height:55vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero h1{
    margin-bottom: 30px;
    text-align:center;
}
/* Card-grid */
.breads{
    display: flex;
    gap:15px 15px;
}
.breads a{
    color:#081C03;
}
.breads span{
    font-size: 16px;
    line-height: 125%;
    font-weight: 400;
    font-style: normal;
    color:#000000b1
}
.card-grid{
    display:flex;
    flex-flow: column;
    width: 100%;
    gap:30px;
}
.card-row{
    display:flex;
    margin: 0 -15px;
    width: 100%;
}
.card-row a{
    margin: 0px 15px;
    width: calc(100%/2); 
}
.card{
    width:calc(100%);
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid rgba(150, 150, 150, 0.1);
    box-shadow: 0px 0px 24px rgba(157, 157, 157, 0), 0px 0px 20px rgba(157, 157, 157, 0);
    padding: 0px;
    transition: 0.6s;
    /* margin-bottom: 30px; */
}
.card-tag{
    position: absolute;
    top:8px;
    left:8px;
    border-radius: 3px;
    padding: 4px 8px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 125%;
    font-weight: 700;
    z-index: 3;
}
.card-tag-second{
    top:36px;
}
.card-tag-tet{
    top:64px;
}
.card-tag-4{
    top:92px;
}
.card:hover{
    box-shadow: 0px 0px 24px rgba(157, 157, 157, 0.1), 0px 0px 20px rgba(157, 157, 157, 0.1);
    transform:translateY(-5px);
    transition: 0.6s;
    cursor: pointer;
}
.card-main-info{
    border-radius: 7px;
    position: relative;
    height: 360px;
}
.card-main-info img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px 7px 0 0;
    z-index: 1;
}
.c-m-i-linear{
    background: linear-gradient(180deg, rgba(51, 51, 51, 0) 51.56%, #333333 100%);
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-flow: column;
    border-radius: 7px;
    padding:20px;
}
.c-m-i-adress-wrap{
    display: flex;
    flex-flow: column;
}
.c-m-i-adress-title{
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 120%;
    font-style: normal;
    font-weight: 400;
}
.c-m-i-adress{
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 120%;
    font-style: normal;
    font-weight: 400;
}
.card-title{
    margin: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-m-i-linear h4{
    font-weight: 700;
}
.card-reating{
    padding: 4px 8px;
    gap: 4px;
    display: flex;
}
.card-reating p{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.card-title h5{
    font-weight: 700;
}
/* Footer */
.footer{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-a{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    height:30px;
}
.f-a:hover{opacity: 0.75;transition:0.3s}
.f-img{
    object-fit: contain;
    width: 320px;
    height: auto;
    position: absolute;
    z-index: 1;
} 
.f-i-right{top:-60px; right: 0;}
.f-i-left{bottom:-60px; left:0;}
.f-row{
    display: flex;
    width: 100%;
    margin: 30px -15px 0px -15px;
    z-index: 2;
    position: relative;
}
.f-r-item{
    width: 100%;
    margin: 0 15px;
    display: flex;
    flex-flow: column;
    gap: 30px 30px;
}
.f-r-social{
    display: flex;
    gap: 15px 15px;
}
.f-link-block{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.copyright{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copy-wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copy-text{
    width: 100%;
    display: flex;
    gap: 5px 5px;
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    font-style: normal;
}

/* Popup */
.popup{
    width: 100%;
    height: 100vh;
    background-color: #000000bb;
    position: fixed;
    z-index: 999;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.popup-containeer{
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0px 0px 24px rgba(157, 157, 157, 0.2), 0px 0px 20px rgba(157, 157, 157, 0.2);
    position: relative;
}
.popup-close{
    display: inline-block;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    transition: 0.3s;
    transform-origin: center center;
    width: 30px;
    height: 30px;
}
.popup-close:hover{
    transition: 0.3s;
    transform: rotate3d(0, 0,  1, 180deg);
}

/* Forms */
input{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px!important;
    line-height: 125%!important;
    padding: 16px 16px;
    color:#000000dc;
}

.form-input::placeholder{
    color: #9D9D9D!important;
}
.form-input:focus{
    border: 1px solid #24C765!important;
    color: #000000;
}
.form-input:valid{
    color: #000000;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="submit"]{
    font-family: inherit; /* 1 */
    font-size: inherit; /* 1 */
    line-height: inherit; /* 1 */
    margin: 0; /* 2 */
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
  }
form{
    display: flex;
    flex-flow: column;
    gap: 20px 20px;
}
.form-btn{
    width: 100%;
    cursor: pointer;
    margin-top: 5px;
}
.popup-containeer p{
    text-align: center;
    font-size: 14px;
}
.input-wrap{
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    gap: 10px 10px;
}
.input-wrap p{
    text-align: left;
    color:#00000080
}

/* Contact Page */
.contact-wrap{
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.c-c-wrap{
    width: 100%;
    display: flex;
    gap: 30px 30px;
    max-width: 960px;
    align-items: center;
}
.c-c-lb, .c-c-rb{
    width: 50%;
    display: flex;
    flex-flow: column;
}
.c-c-item p{
    font-size:14px;
}
.c-c-item a:hover{
    opacity: 0.5;
}
.c-c-rb{
    display: flex;
    align-items: center;
}
.c-c-rb img{width: 240px;height: auto;}

/* Map */
#map {
    width: 100%; height: 500px; padding: 0; margin: 0;
}

/* Item Page */
.item-hero{
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.i-h-wrap{
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 164px 0;
    width: 100%;
    height: 100%;
}
.i-h-img{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.i-h-info{
    width: 100%;
    max-width: 512px;
    display: flex;
    flex-flow: column;
}
.i-h-i-title{
    display: flex;
    justify-content: space-between;
}
.i-h-i-tags{
    display: flex;
    gap: 8px 8px;
    flex-flow: row wrap;
}
.i-h-i-tag{
    border-radius: 3px;
    padding: 4px 8px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 125%;
    font-weight: 700;
    z-index: 3;
}
.i-h-i-body{
    border-radius: 16px 16px 0 0;
    padding:32px;
    background-color: #ffffff;
    display: flex;
    flex-flow: column;
    gap: 24px 24px;
}
.i-h-i-info{
    display: flex;
    gap:12px 12px;
    flex-flow: column;
}
.i-h-i-itag{
    display: flex;
    gap: 8px 8px;
}
.i-h-i-itag p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    width: calc(100% - 32px);
}
.i-h-i-itag svg{
    width: 24px;
    height: 24px;
}
.i-h-i-divider{
    height: 1px;
    width: 100%;
    background-color: #E5E5E5;
}
.i-h-i-price{
    display: flex;
    flex-flow: column;
    gap: 4px 4px;
    align-items: flex-start;
}
.pick-date{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}
.pick-date:hover{
    opacity: 0.75;
}
.i-h-i-phone{
    padding: 16px 0;
    display: flex;
    justify-content: center;
    border-radius: 0 0 16px 16px;
}
.i-h-i-phone a:hover{
    opacity: 0.75;
}

/* Item Page Gallery*/

.item-gallery{
    display: flex;
    flex-flow:row wrap;
}
.img-gallery{
    width: calc(100%/6);
    height: 240px;
    cursor: nesw-resize;
}
.img-gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.open-img-wrap{
    width: 80%;
    margin: 64px;
}
.open-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-popup{
    width: 100%;
    height: 100vh;
    background-color: #000000bb;
    position: fixed;
    z-index: 999;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.img-popup-close{
    display: inline-block;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    transition: 0.3s;
    transform-origin: center center;
    width: 30px;
    height: 30px;
}
.img-popup-close:hover{
    transition: 0.3s;
    transform: rotate3d(0, 0,  1, 180deg);
}
.slide-icon{
    display: none;
}
/* Item Page Info */
.item-info, .item-form{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.i-i-wrap{
    display: flex;
    flex-flow: row;
    gap: 30px 30px;
}
.i-i-description, .i-i-pluses{
    width: 50%;
}
.i-i-d-text{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 125%;
}
.i-i-p-wrap{
    display: flex;
    flex-flow: row wrap;
    gap:30px 30px;
}
.i-i-plus{
    display: flex;
    gap:15px 15px;
    width: calc(50% - 30px);
    align-items: center;
}
.i-i-plus img{
    width: 32px;
    height: 32px;
}
.i-i-p-text{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
}

/* Iteem People Say*/
.item-people-say{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Item Form */

.item-form-wrap, .item-serv{
    width: 100%;
    display: flex;
    flex-flow: row;
    gap: 30px 30px;
}
.i-form-lb, .i-form-rb{
    width: 50%;
}
.i-form-rb{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:30px 30px;
}
.i-form-rb .input-wrap{
    width: calc(100%);
}
.form-pick-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    text-align: center;
    border: 1px solid #24C765;
    border-radius: 10px;
    width: 100%;
}
.form-pick-info p{
    color: #9D9D9D;
}
.time-input{
    width: 100%;
    display: flex;
    gap: 30px 30px;
}
.item-serv{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.i-s-wrap{
    max-width: 625px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px 30px;
}
.i-s-rows{
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
    width: 100%;
}
.i-s-row{
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EAEAEA;
}

/* Caleendar Style*/
#datepicker{
    width: 100%;
}
.ui-datepicker-calendar{
    width: 100%;
    height: 100%;
}
.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
}
.ui-widget-header .ui-icon {
    opacity: 0;
}
.ui-datepicker-calendar thead{
    display: none;
}
.ui-datepicker-calendar tbody{
    height: 100%;
    display: flex;
    flex-flow: column;
    gap: 15px
}
.ui-datepicker-calendar tbody tr{
    display: flex;
    gap: 15px 15px;
}
.ui-datepicker-calendar tbody td{
    width: calc(100% / 7);
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-handler="selectDay"]{
    color: #081C03!important;
    background: #FFFFFF;
    border: 1px solid #081C03;
    border-radius: 5px;
    transition: 0.3s;
}
[data-handler="selectDay"]:hover{
    border: 1px solid #24C765;
    transition: 0.3s;
}

[data-handler="selectDay"] a{
    color: #081C03!important; 
    width: 100%;
    padding: 18px 0;
    transition: 0.3s;
}
[data-handler="selectDay"]:hover [data-handler="selectDay"] a{
    color: #24C765!important; 
}
.ui-datepicker-week-end{
    color: #FF562E!important;
    background: #FFFFFF;
    border: 1px solid #FF562E;
    border-radius: 5px;
    transition: 0.3s;
}
.ui-datepicker-week-end a{
    color: #FF562E!important;
}
.ui-state-default:hover{
    color: #24C765!important;
}
.ui-state-disabled{
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 125%;
    color: #E5E5E5 !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
    transition: 0.3s;
}
.ui-datepicker-unselectable, .ui-datepicker-week-end, .ui-datepicker-other-month, [data-handler="selectDay"]{
    height: 60px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 125%;
    transition: 0.3s;
}


.ui-datepicker-title{
    order:2;
    height:60px;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 125%;
}
.ui-datepicker-prev{
    height: 60px;
    cursor:pointer;
    order:1;
    background-image: url(/main-img/arrow-datapicker.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 0px solid black !important;
}
.ui-datepicker-next{
    height: 60px;
    cursor:pointer;
    order:3;
    background-image: url(/main-img/arrow-datapicker.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}
.ui-datepicker-current-day{
    background-color: #24C765;
    border: 1px solid #24C765;
    transform: translateY(-2px);
    box-shadow: 0px 10px 10px rgba(36, 199, 101, 0.35);
    transition: 0.3s;
}
.ui-datepicker-current-day a{
    color:#ffffff!important;
    transition: 0.3s;
}
.ui-datepicker-current-day a:hover{
    color:#ffffff!important;
    transition: 0.3s;
}
.i-form-rb p:nth-child(6){
    text-align: center;
}
.section-bani{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px 0px;
}
.mm-links{
    position: relative;
}
.tooltip-links{
    z-index: 999999;
    position: absolute;
    padding: 24px 0px;
    background-color: #24C765;
    display: none;
}
.t-l-wrap{
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    gap: 24px 24px;
}
/*.bani:hover ~ .tooltip-links{display: flex;}*/
/* Hide Elems */

.mobile-menu, .mob-slide-menu{
    display: none;
}

.action-grid{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap:30px 30px;
    align-items: stretch;
}
.action-card{
    width: calc((100% - 30px)/ 2);
    position: relative;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(8, 28, 3, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(8, 28, 3, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.action-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(8, 28, 3, 0.12);
}
.action-img{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 882px;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    z-index: 1;
    display: block;
}
.action-info{
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px 15px;
    background: #ffffff;
    flex: 1 1 auto;
}
.action-info h3{
    color: #081C03;
    font-size: 24px;
    line-height: 125%;
}
.action-info h3::after{
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 12px;
    border-radius: 3px;
    background: #24C765;
}
.action-disc{
    font-size: 16px;
    font-weight: 400;
    line-height: 155%;
    font-style: normal;
    height: auto;
    overflow: visible;
    transition: 0.3s;
    color: rgba(0, 0, 0, 0.74);
    display: block;
}
.cc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.top-cc{
    width:100%;
}
.short-wrap{
    max-width:840px;
    
}
.img-wrap{
    display:flex;
    gap:30px 30px;
    align-items:center;
}
.center{
    font-style:italic;
    text-align:center;
    font-weight:500;
}
.board{
    padding:30px;
    border-radius:15px;
    background: #081C03;
}
.text-center{
    width:100%;
    text-align:center;
}
.ab-pluses{
    display:flex;
    flex-wrap:wrap;
    gap:60px 30px;
    justify-content:center;
}
.ab-plus{
    width:calc((100% - 60px) / 3);
}
.ab-plus h5{height:46px;display:flex;align-items:center; justify-content:center;}
.f-i-anim{
        -webkit-animation: 0.5s linear 0s infinite alternate ger;
        -moz-animation: 0.5s linear 0s infinite alternate ger;
        -o-animation: 0.5s linear 0s infinite alternate ger;
        animation: 0.5s linear 0s infinite alternate ger;
}

.test-grid{
    display:flex;
    flex-wrap:wrap;
    gap:60px;
    justify-content:center;
}
.test-img{
    width:calc((100% - 60px) / 2);
}
.test-img img{
    width:100%;
    height:100%;
    object-fit: cover;
    
}
/* Responsie mobile < 480px */
@media (min-width:144px) and (max-width:480px){
.f-i-right{top:-20px; right: 0;}
/*.f-i-left{top:-20px; left:0;} */
    h1{
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 125%;
        margin:0;
    }
    h2{
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 125%;  
        margin:0; 
    }
    h3{
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 125%;
        margin:0;
    }
    h4{
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 125%;
        margin:0;
    }
    h5{
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 125%;
        margin:0;
    }
    h6{
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 125%;
        margin:0;
    }
    p{  
        font-style: normal;
        font-weight: 400;
        font-size: 14px!important;
        line-height: 125%;
        margin:0;
    }
    /* .n-load {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999999;
    } */
    .i-s-row{
        border-bottom:0px;
    }
    
    .i-s-row h5:nth-child(1){
        width: calc(100% - 50px);
    }
    .i-s-row .green{
        width: 50px;
    }
    .hero {
        height: 65vh;
    }
    .hero h1, .hero h3, .hero h4{
        text-align: center;
    }
    .breads a{
        font-size: 12px;
    }
    .breads span{
        font-size: 12px;
    }
    .mm-rb, .mm-links{
        display: none;
    }
    .tooltip-links{
        display: none;
    }
    .card-row, .f-row, .copy-wrap, .c-c-wrap{
        flex-flow:column;
    }
    .c-c-wrap{
        flex-flow:column-reverse;
    }
    .c-c-lb, .c-c-rb{
        width: 100%;
    }
    .c-c-rb img{
        width: 100%;
        height: auto;
    }
    .copy-text{
        flex-flow:row wrap;
        justify-content: center;
        margin-bottom: 16px;
        text-align:center;
    }
    .container{
        padding: 0 16px;
    }
    .f-img {
        width: 120px;
    }
    .f-row{
        gap:30px 30px;
    }
    .card-row{
        margin: 0;
        gap:30px 30px;
    }
    .card-row a{
        width: 100%;
        margin: 0;
    }
    .card{
        border: 1px solid rgba(150, 150, 150, 0.5);
    }
    .main-menu{
        padding: 0;
        
    }
    .logo-link{
        height: 60px;
    }
    .logo-link img{
        width: auto;
        height: 60px;
    }
    .mm-lb{
        width: 100%;
        justify-content: space-between;
    }
    .burger, .mobile-menu, .call{
        height: 60px;
    }
    .mobile-menu{
        display: block;
    }
    .mb-60{
        margin-bottom: 30px;
    }
    .mt-60{
        margin-top: 30px;
    }
    .mob-slide-menu{
        position: absolute;
        width: 100%;
        height: 100vh;
        display: none;
        flex-flow: column;
        gap: 15px 15px;
        left: 100vw;
        top: 0;
        padding: 30px;
        background-color: #ffffff;
        z-index: 999;
        transition: 0.3s;
        overflow:auto;
    }
    .slide-close{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .m-nav{
        display: flex;
        flex-flow: column;
        gap: 30px 30px;
    }
    .m-nav a{
        font-size: 18px;
        line-height: 200%;
        position:relative;
    }
    .action-counter {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0px 13px 0px 13px;
    border-radius: 20px;
}
    .m-s-div{
        width: 100%;
        height: 1px;
        background-color: #ededed;
    }
    /* Only Item Styles */
    .i-h-img {
        height: 50%;
    }
    .i-h-i-tags {
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: flex-start;
        position: absolute;
        top: 16px;
        left: 0px;
    }
    .item-hero .c-y{
        padding:0;
    }
    .i-h-i-body {
        border-radius: 0;
        padding: 16px;
        background-color: transparent;
        flex-flow: column;
    }
    .i-h-i-info {
        flex-flow: row;
        margin-top: 30px;
    }
    .i-h-i-itag {
        flex-flow: column;
        align-items: center;
        width: 50%;
    }
    .i-h-i-itag span{
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 125%;
        color: #9D9D9D;
    }
    .i-h-i-price {
        display: flex;
        flex-flow: column;
        gap: 4px 4px;
        align-items: center;
    }
    .i-h-i-phone {
        padding: 24px 0;
        border-radius: 0;
    }
    .i-h-wrap {
        padding: 140px 0 0 0;
        background: linear-gradient(180deg, rgba(51, 51, 51, 0) 25%, #333333 49.99%, rgba(51, 51, 51, 0) 50%);
    }
    .i-h-i-itag p {
        text-align: center;
    }
    .i-h-i-title {
        color: white;
    }
    
    .item-gallery {
        display: flex;
        flex-flow: row;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        position: relative;
    }
    .img-gallery{
        width: 240px!important;
        flex: none;
    }
    .open-img-wrap{
        margin: 16px;
        flex:none;
    }
    .slide-icon{
        display: block;
        position: absolute;
        top: calc(50% - 12px);
        z-index: 99;
        right: 16px;
        padding: 8px 8px 4px 8px;
        border-radius: 24px;
        background-color:#ffffff80;
        -webkit-animation: 2s linear 0s infinite alternate slidein;
        -moz-animation: 2s linear 0s infinite alternate slidein;
        -o-animation: 2s linear 0s infinite alternate slidein;
        animation: 2s linear 0s infinite alternate slidein;
    }
    .i-i-wrap{
        flex-flow: column;
    }
    .i-i-description, .i-i-pluses {
        width: 100%;
    }
    .i-i-plus{
        width: 100%;
    }
    .i-i-plus img{
        width: 32px;
        height: 32px;
    }
    .ui-datepicker-unselectable, .ui-datepicker-week-end, .ui-datepicker-other-month, [data-handler="selectDay"] {
        height: 45px;
    }
    .i-form-lb, .i-form-rb {
        width: 100%;
    }
    .item-form-wrap{
        flex-flow: column;
    }
    .ui-datepicker-calendar tbody, .ui-datepicker-calendar tbody tr{
        gap: 5px 5px;
    }
    .i-form-rb p:nth-child(5){
        text-align: center;
    }
    .ui-datepicker-prev, .ui-datepicker-next{
        width: 25%;
    }
    .form-pick-info p {
        font-size: 12px!important;
    }
    .copy-text p{
        font-size: 12px!important;
    }
    .action-disc{
        height: auto;
        overflow: visible;
        transition: 0.3s;
        font-size: 15px;
        line-height: 150%;
    }
    .action-card{
        width: 100%;
        position: relative;
        height: auto;
        border-radius: 10px;
    }
    .action-img{
        height: auto;
        aspect-ratio: 4 / 5;
    }
    .action-info{
        background: #ffffff;
        padding: 22px 20px 24px;
    }
    .action-info h3{
        font-size: 21px;
    }
    .img-wrap img{
        width:25%;
    }
    .cc h2 {
        width:100%;
    }
    .ab-pluses{
        gap:60px 30px;
    }
    .ab-plus{
    width:calc(100%);
        
    }
}

/* Keyframes */

@-webkit-keyframes slidein { from { right:16px; } to { right:32px; }  }
@-moz-keyframes slidein { from { right:16px; } to { right:32px; }  }
@-o-keyframes slidein { from { right:16px; } to { right:32px; }  }
@keyframes slidein { from { right:16px; } to { right:32px; }  }
@-webkit-keyframes ger { from { opacity:0; } to { opacity:1; }  }
@-moz-keyframes ger { from { opacity:0; } to { opacity:1; }  }
@-o-keyframes ger { from { opacity:0; } to { opacity:1; }  }
@keyframes ger { from { opacity:0; } to { opacity:1; }  }


/* hide */
.item-people-say{display:none;}

/* Adaptive header */
@media (max-width: 1024px){
    .main-menu{
        min-height: 72px;
        padding: 0 14px;
        position: relative;
        z-index: 1000;
    }
    .mm-lb{
        width: 100%;
        justify-content: space-between;
    }
    .mm-rb,
    .mm-links{
        display: none !important;
    }
    .logo-link{
        height: 72px;
        margin-right: 0;
        padding: 5px 0;
    }
    .logo-link img{
        width: 100%;
        height: 62px;
        border-radius: 6px;
        object-fit: cover;
    }
    .mobile-menu{
        display: flex !important;
        align-items: center;
        gap: 4px;
        height: 72px;
        margin-left: auto;
    }
    .mobile-menu a{
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-menu svg{
        width: 58px;
        height: 58px;
        display: block;
    }
    .mob-slide-menu{
        position: fixed;
        width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        display: none;
        flex-flow: column nowrap;
        gap: 14px;
        left: 100vw;
        top: 0;
        padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
        background-color: #ffffff;
        z-index: 1001;
        transition: 0.3s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .slide-close{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 0 0 auto;
    }
    .m-nav{
        display: flex;
        flex-flow: column nowrap;
        gap: 16px;
    }
    .m-nav a{
        font-size: 18px;
        line-height: 140%;
        position: relative;
    }
    .mob-slide-menu .button-primary{
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }
    .action-counter{
        right: -24px;
        top: -10px;
    }
}

@media (max-width: 380px){
    .main-menu{
        min-height: 64px;
        padding: 0 10px;
    }
    .logo-link{
        height: 64px;
    }
    .logo-link img{
        width: 100%;
        height: 56px;
    }
    .mobile-menu{
        height: 64px;
        gap: 0;
    }
    .mobile-menu a,
    .mobile-menu svg{
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 1024px) and (orientation: landscape){
    .main-menu{
        min-height: 60px;
    }
    .logo-link{
        height: 60px;
    }
    .logo-link img{
        width: 100%;
        height: 52px;
    }
    .mobile-menu{
        height: 60px;
    }
    .mobile-menu a,
    .mobile-menu svg{
        width: 50px;
        height: 50px;
    }
    .mob-slide-menu{
        gap: 10px;
        padding: max(12px, env(safe-area-inset-top)) 18px max(12px, env(safe-area-inset-bottom));
    }
    .m-nav{
        gap: 10px;
    }
    .m-nav a{
        font-size: 16px;
        line-height: 125%;
    }
    .mob-slide-menu .button-primary{
        padding: 12px 16px;
    }
    .action-grid{
        gap: 22px;
    }
    .action-card{
        width: calc((100% - 22px)/ 2);
    }
    .action-img{
        height: 260px;
        aspect-ratio: auto;
    }
    .action-info{
        padding: 20px;
    }
    .action-info h3{
        font-size: 20px;
    }
    .action-disc{
        font-size: 14px;
        line-height: 145%;
    }
}
