/* ==================== 
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


:root{
    --font-family-base: 'HelveticaNeueLT', sans-serif;
    --font-family-base-uppercase: 'HelveticaNeueLT UP', sans-serif;

    --color-base: #808080;
    --color-base-light: #b2b2b2;

    --color-primary: #000;
    --color-primary-hover: var(--color-dark);

    --color-secondary: #808080;
    --color-secondary-hover: #929292;

    --color-warning: #fdbb2d;
    --color-warning-hover: #fcc659;

    --color-success: #009933;

    --color-light: #EAEAEA;

    --color-dark: #333;
    --color-dark-hover: #484848;

    --color-blue: #0000ff;
    --color-blue-light: #2A2AFF;

    --app-header-height: 43px;

    --container-size-1: 400px;
    --container-size-2: 620px;
    --container-size-3: 880px;
    --container-size-4: 1080px;
    --container-size-5: 1360px;

    --content-padding-x: var(--content-padding-x-1);
    --content-padding-x-1: 1rem;
    --content-padding-x-2: 1rem;

    --content-padding-y: var(--content-padding-y-1);
    --content-padding-y-1: 2rem;
    --content-padding-y-2: 2.5rem;

    --fs-h1: 2.625rem;
    --fs-h2: 2.25rem;
    --fs-h3: 2rem;
    --fs-h4: 1.75rem;
    --fs-h5: 1.5rem;
    --fs-h6: 1.375rem;

    --fs-text1: 1.375rem;
    --fs-text2: 1.25rem;
    --fs-text3: 1.125rem;
    --fs-text4: 1.125rem;
    --fs-text5: 1rem;
    --fs-text6: 14px;

    --transition-color: color .15s ease-in-out;
    --transition-bg-color: background-color .15s ease-in-out;
    --transition-border-color: border-color .15s ease-in-out;
    --transition-shadow: box-shadow .15s ease-in-out;
}
@media (min-width: 768px) {
    :root{
        --app-header-height: 72px;

        --content-padding-x-1: 1.25rem;
        --content-padding-x-2: 1.5rem;

        --fs-h1: 3rem; /*48px*/
        --fs-h2: 2.625rem; /*42px*/
        --fs-h3: 2.25rem; /*36px*/
        --fs-h4: 2rem; /*32px*/
        --fs-h5: 1.75rem; /*28px*/
        --fs-h6: 1.5rem; /*24px*/

        --fs-text1: 23px; /*23px*/
        --fs-text2: 1.375rem; /*22px*/
        --fs-text3: 1.25rem; /*20px*/
        --fs-text4: 1.125rem; /*18px*/
        --fs-text5: 1rem;
        --fs-text6: 14px;
    }
}
@media (min-width: 1200px) {
    :root{
        --content-padding-x-1: 1.5rem;
        --content-padding-x-2: 2rem;

        --content-padding-y-2: 4rem;
    }
}
@media (min-width: 1400px) {
    :root{
        --content-padding-x-2: 2.5rem;
    }
}
@media (min-width: 1800px) {
    :root{
        --content-padding-x-2: 4rem;
    }
}


/* ==================== 1. resets & defaults ==================== */
html,body,
h1,h2,h3,h4,h5,h6,
ul,ol,p,figure,
form,fieldset,input,textarea{
    margin: 0;
    padding: 0;
}

header,nav,main,article,section,aside,footer,figure{
    display: block;
}

*{box-sizing: border-box; -webkit-tap-highlight-color: transparent;}

/* ----- */

html,body{
    width: 100%;
    height: 100%;
}

nav ul,.nav ul{list-style: none;}
a img,fieldset{border:0;}

.logo img{display: block;}
.img-container img,
.thumb img,
figure img{
    display: block;
    max-width: 100%;
}

button,
input[type=button],
input[type=submit]{
    cursor: pointer;
    outline: none !important;
}

a,a:hover,a:focus{text-decoration: none;}
a.is-active{cursor: default;}

.disabled{opacity: 0.5; pointer-events: none;}
.disabled-click{pointer-events: none;}

/* ----- */

.no-scroll,
.no-scroll body{
    height: 100% !important;
    overflow: hidden;
}

.item-fade{opacity: 0; visibility: hidden; -webkit-transition: opacity 0.3s linear; transition: opacity 0.3s linear; z-index: -1;}
.item-fade.fade-in{opacity: 1; visibility: visible; z-index: 1;}

/* ----- */

.text-nocase{text-transform: none !important;}

.highlight {background-color: #ffff00;}

b{font-weight: 500}
strong{font-weight: 700}

/* ----- */

body{
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;

    color: var(--color-base);
    font-size: 14px;
}



/* ==================== 2. base styles ==================== */


/* ----------- fonts ----------- */
body,input,textarea,button{
    font-family: var(--font-family-base);
}
.text-uppercase{
    font-family: var(--font-family-base-uppercase) !important;
}
/* ----------- /fonts ----------- */


/* ----------- container ----------- */
.container,
.container-xxs,
.container-xs,
.container-sm,
.container-md,
.container-lg,
.container-fluid{
    width: 100%;
    padding-left: var(--content-padding-x);
    padding-right: var(--content-padding-x);
    margin: 0 auto;
}

.container .container-xxs,
.container .container-xs,
.container .container-sm,
.container .container-md,
.container .container-lg{
    padding-left: 0;
    padding-right: 0;
}

.container,
.container-lg,
.t63-section[data-content-size="lg"] .container{
    max-width: calc(var(--container-size-5) + var(--content-padding-x) * 2);
}
/*.container .container-lg{
	max-width: var(--container-size-5);
}*/

.container-xxs,
.t63-section[data-content-size="xxs"] .container{
    max-width: calc(var(--container-size-1) + var(--content-padding-x) * 2);
}
.container .container-xxs{
    max-width: var(--container-size-1);
}

.container-xs,
.t63-section[data-content-size="xs"] .container{
    max-width: calc(var(--container-size-2) + var(--content-padding-x) * 2);
}
.container .container-xs{
    max-width: var(--container-size-2);
}

.container-sm,
.t63-section[data-content-size="sm"] .container{
    max-width: calc(var(--container-size-3) + var(--content-padding-x) * 2);
}
.container .container-sm{
    max-width: var(--container-size-3);
}

.container-md,
.t63-section[data-content-size="md"] .container{
    max-width: calc(var(--container-size-4) + var(--content-padding-x) * 2);
}
.container .container-md{
    max-width: var(--container-size-4);
}

/*.container-lg,
.t63-section[data-content-size="lg"] .container{
	max-width: calc(var(--container-size-5) + var(--content-padding-x) * 2);
}
.container .container-lg{
	max-width: var(--container-size-5);
}*/

.container-fluid,
.t63-section[data-content-size="fluid"] .container{
    max-width: 100%;
}
/* ----------- /container ----------- */


/* ----------- row ----------- */
.grid-items-stretch > div{
    display: flex;
    flex-direction: column;
}
.grid-items-stretch > div > *{
    flex-grow: 1;
}
/* ----------- /row ----------- */


/* ----------- icons ----------- */
/*i.icon{
	display: inline-block;
	width: 16px;
	position: relative;
}
i.icon::before{
	content: "";
	display: block;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 100%;
}

.i-lg{
	width: 20px;
}*/
/* ----------- /icons ----------- */


/* ----------- rotate ----------- */
.r-45::before{
    transform: rotate(45deg);
}
.r-90::before{
    transform: rotate(90deg);
}
.r-180::before{
    transform: rotate(180deg);
}
.r-270::before{
    transform: rotate(270deg);
}
.r-360::before{
    transform: rotate(360deg);
}
/* ----------- /rotate ----------- */


/* ----------- colors ----------- */
.text-white{
    color: #fff !important;
}
.text-black{
    color: #000 !important;
}
.text-base{
    color: var(--color-base)  !important;
}
.text-primary{
    color: var(--color-primary)  !important;
}
.text-secondary{
    color: var(--color-secondary)  !important;
}
.text-warning{
    color: var(--color-warning) !important;
}

.bg-primary{
    background-color: var(--color-primary) !important;
}
.bg-secondary{
    background-color: var(--color-secondary) !important;
}
.bg-warning{
    background-color: var(--color-warning) !important;
}
.bg-light{
    background-color: var(--color-light) !important;
}
.bg-dark{
    background-color: var(--color-dark) !important;
}

.bg-white-25{
    background-color: rgba(255,255,255,0.25) !important;
}
.bg-white-50{
    background-color: rgba(255,255,255,0.5) !important;
}
.bg-white-75{
    background-color: rgba(255,255,255,0.75) !important;
}
/* ----------- /colors ----------- */



/* ==================== 3. layout ==================== */


.app{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
}


/* ---------- header ---------- */
.app-header{
    --border-bottom-width: 3px;
    --content-height: calc(var(--app-header-height) - var(--border-bottom-width));
    --item-border-width: 2px;

    display: flex;
    align-items: stretch;
    background-color: #000;
    border-bottom: var(--border-bottom-width) solid #fff;
    position: relative;
    z-index: 300;
}
.app-header > *{
    display: flex;
    align-items: center;
    height: var(--content-height);
}

.app-header .logo,
.app-header .icon-btn{
    justify-content: center;
    width: var(--content-height);
    border-width: 0;
    border-color: #fff;
    border-style: solid;
}

.app-header .logo{
    border-right-width: var(--item-border-width);
}
.app-header .logo img{
    flex-shrink: 0;
    height: 18px;
}
.app-header .logo-text{
    width: 142px;
    overflow: hidden;
    margin-left: 25px;
}
.app-header .logo-text img{
    flex-shrink: 0;
    width: 275px;
}

.app-header .icon-btn{
    border-left-width: var(--item-border-width);
}
.app-header .icon-btn img{
    height: 18px;
}

.app-header .btn{
    background-color: transparent;
    border: 0;
    padding: 0 12px;

    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
}
.app-header .btn img{
    height: 8px;
    margin-left: 10px;
}

.app-header .btn:hover,
.app-header .icon-btn:hover{
    background-color: var(--color-dark);
}

.app-header .btn-toggle img{
    transition: transform 0.2s ease;
}
.app-header .btn-toggle.is-active img{
    transform: rotate(-180deg);
}

.app-header .btn-phone{
    --px: calc((var(--app-header-height) - 30px) / 2);

    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    gap: var(--px);
    padding: 0 var(--px);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
    transition: width 0.15s ease-in-out;
}

@media (min-width: 768px) {
    .app-header {
        --border-bottom-width: 4px;
        --item-border-width: 3px;
    }

    .app-header .logo img,
    .app-header .icon-btn img{
        height: 30px;
    }

    .app-header .btn{
        padding: 0 16px;
        font-size: 24px;
    }
    .app-header .btn img{
        height: 14px;
        margin-left: 16px;
    }
}
@media (min-width: 992px) {
    .app-header .logo-text{
        width: auto;
    }
}

@media (max-width: 767px) {
    .app-header .logo-text{
        display: none;
    }
}
/* ---------- /header ---------- */


/* ---------- page ---------- */
.app-page{
    flex-grow: 1;
    width: 100%;
    position: relative;
}

.section{
    width: 100%;
    padding-top: var(--content-padding-y-2);
    padding-bottom: var(--content-padding-y-2);
    position: relative;
    overflow: hidden;
}
.section.border-bottom{
    border-bottom: 10px solid var(--color-warning) !important;
}

.section-head{
    padding-top: var(--content-padding-y-1);
    padding-bottom: 24px;
}
.section-head .title,
.section-head .text{
    color: var(--color-base);
}

.section-head.bg-dark,
.section-head.bg-dark{
    padding-top: var(--content-padding-y-2);
    padding-bottom: var(--content-padding-y-1);
}
.bg-dark .section-head .title,
.bg-dark .section-head .text,
.section-head.bg-dark .title,
.section-head.bg-dark .text{
    color: #fff;
}

.section .overlay-wrap{
    width: 100%;
    background-color: rgba(51,51,51,0.83);
    padding: 20px 1rem;
    position: absolute;
    top: 0;
    left: 0;
}
.section .overlay-wrap.fs{
    height: 100%;
}
.section .overlay-wrap.bottom{
    top: auto;
    bottom: 0;
}
.section .overlay-wrap svg{
    height: 24px;
}
.section .overlay-wrap svg *{
    fill: #333;
    transition: fill 0.15s ease-in-out;
}
.section .overlay-wrap a:hover svg *,
.section .overlay-wrap button:hover svg *{
    fill: var(--color-warning);
}

/* padding */
.content-p-1,
.content-px-1{
    padding-left: var(--content-padding-x-1);
    padding-right: var(--content-padding-x-1);
}
.content-p-1,
.content-py-1,
.content-pt-1{
    padding-top: var(--content-padding-y-1);
}
.content-p-1,
.content-py-1,
.content-pb-1{
    padding-bottom: var(--content-padding-y-1);
}

.content-p-2,
.content-px-2{
    padding-left: var(--content-padding-x-2);
    padding-right: var(--content-padding-x-2);
}
.content-p-2,
.content-py-2,
.content-pt-2{
    padding-top: var(--content-padding-y-2);
}
.content-p-2,
.content-py-2,
.content-pb-2{
    padding-bottom: var(--content-padding-y-2);
}

/* margin */
.mt,
.my{
    margin-top: 6px !important;
}
.mb,
.my{
    margin-bottom: 6px !important;
}

@media (min-width: 992px) {
    .section .overlay-wrap{
        padding: 36px 24px;
    }
}
/* ---------- /page ---------- */


/* ---------- footer ---------- */
.app-footer{
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 250;
}
.app-footer > .row{
    --bs-gutter-y: 6px;
    --bs-gutter-x: 6px;

    padding-top: var(--bs-gutter-y);
}

.app-footer .section-banner-frames{
    margin-top: 6px;
}

.app-footer .foo-about-wrap{
    background-color: var(--color-dark);
    padding: 60px 40px;

    text-align: center;
}
.app-footer .foo-about-wrap > *{
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
}

.app-footer .foo-about-wrap,
.app-footer .foo-about-wrap .text,
.app-footer .foo-about-wrap .text-wrap{
    color: #fff;
}

.app-footer .logo{
    display: inline-flex;
    margin-bottom: 36px;
}
.app-footer .logo img{
    height: 42px;
}

/* --- --- */
.foo-content-wrap{
    --font-size: 17px;
    --font-size-sm: 14px;
    --font-size-title: 19px;

    background-color: var(--color-secondary);
    padding: 60px 40px;
    margin-top: 6px;

    color: #fff;
    font-size: var(--font-size);
    line-height: 1.85;
}
.foo-content-wrap a{
    color: inherit;
}
.foo-content-wrap a:hover{
    text-decoration: underline;
}

.foo-content-wrap .row{
    --bs-gutter-y: 40px;
}

.foo-content-wrap ul{
    padding-left: 22px;
    line-height: 1.75;
}

.foo-content-wrap .title{
    color: #000;
    font-size: var(--font-size-title);
    margin-bottom: 0.75rem;
}
.foo-content-wrap .text-sm{
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.foo-content-wrap .foo-section{
    margin-bottom: 1.75rem;
}
.foo-content-wrap .foo-section:last-child{
    margin-bottom: 0;
}

.foo-content-wrap .status-item{
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.5;
}
.foo-content-wrap .status-item::before{
    flex-shrink: 0;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #FFCC00;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-top: 4px;
}
.foo-content-wrap .status-success::before{
    background-color: var(--color-success);
}

@media (min-width: 1200px) {
    .foo-content-wrap{
        --font-size: 19px;
        --font-size-sm: 15px;
        --font-size-title: 21px;
    }

    .foo-content-wrap .col-start{
        max-width: 30%;
    }
    .foo-content-wrap .col-center{
        max-width: 40%;
    }
    .foo-content-wrap .col-end{
        max-width: 30%;
    }
}
@media (min-width: 1400px) {
    .foo-content-wrap{
        --font-size: 21px;
        --font-size-sm: 16px;
        --font-size-title: 22px;

        padding: 74px 60px;
    }
    .foo-content-wrap .status-item{
        font-size: 14px;
    }
}
@media (min-width: 1920px) {
    .foo-content-wrap {
        padding-left: 156px;
        padding-right: 156px;
    }
    .foo-content-wrap .col-start{
        max-width: 470px;
    }
    .foo-content-wrap .col-center{
        max-width: 640px;
    }
    .foo-content-wrap .col-end{
        max-width: 360px;
    }
}
/* ---------- /footer ---------- */



/* ==================== 4. components ==================== */


/* ----------- hamburger ----------- */
.hamburger,
.hamburger span,
.hamburger span::before,
.hamburger span::after{
    width: 18px;
}

.hamburger{
    flex-shrink: 0;
    display: block;
    height: 14px;
    background-color: transparent;
    border: 0;
    padding: 0;
    overflow: visible;
    position: relative;
    z-index: 50;
}
.hamburger:before{
    content: "";
    position: absolute;
    top: -12px;
    bottom: -12px;
    left: -12px;
    right: -12px;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    display: block;
    height: 1px;
    background-color: #000;
    position: absolute;
    transition: transform 0.15s ease;
}
.hamburger span{
    top: 0;
}
.hamburger span::before,
.hamburger span::after {
    content: "";
    display: block;
}
.hamburger span::before {
    width: 100%;
    top: 6px;
    transition-property: transform, opacity;
}
.hamburger span::after {
    top: 12px;
}

.hamburger.is-active span,
.nav-is-open .hamburger span{
    transform: translate3d(-1px, 7px, 0) rotate(45deg);
}
.hamburger.is-active span::before,
.nav-is-open .hamburger span::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}
.hamburger.is-active span::after,
.nav-is-open .hamburger span::after {
    transform: translate3d(0, -12px, 0) rotate(-90deg);
}
.hamburger.is-active span,
.hamburger.is-active span::before,
.hamburger.is-active span::after,
.nav-is-open .hamburger span,
.nav-is-open .hamburger span::before,
.nav-is-open .hamburger span::after{
    width: 21px;
}
/* ----------- /hamburger ----------- */


/* ---------- title,text ---------- */
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6,
.title {
    display: block;
    margin-bottom: 0;

    color: inherit;
    font-weight: bold;
    line-height: 1.3;
}

.title *{
    font-weight: inherit;
    line-height: inherit;
}

.title:not(.slide-title):not(.full-featured) *:not(.h1):not(.h2):not(.h3):not(.h4):not(.h5):not(.h6):not([class*="display-"]) {
    font-size: inherit;
}

.title a{
    color: inherit;
}

h1,.h1{
    font-size: var(--fs-h1);
}
h2,.h2{
    font-size: var(--fs-h2);
}
h3,.h3{
    font-size: var(--fs-h3);
}
h4,.h4{
    font-size: var(--fs-h4);
}
h5,.h5{
    font-size: var(--fs-h5);
}
h6,.h6{
    font-size: var(--fs-h6);
}

.title.text-uppercase,
h1.text-uppercase,
.h1.text-uppercase,
h2.text-uppercase,
.h2.text-uppercase,
h3.text-uppercase,
.h3.text-uppercase,
h4.text-uppercase,
.h4.text-uppercase,
h5.text-uppercase,
.h5.text-uppercase,
h6.text-uppercase,
.h6.text-uppercase{
    line-height: 1.1;
}

.fs-1{
    font-size: var(--fs-text1) !important;
}
.fs-2{
    font-size: var(--fs-text2) !important;
}
.fs-3{
    font-size: var(--fs-text3) !important;
}
.fs-4{
    font-size: var(--fs-text4) !important;
}
.fs-5{
    font-size: var(--fs-text5) !important;
}
.fs-6{
    font-size: var(--fs-text6) !important;
}


.text,
.text-wrap{
    color: inherit;
    font-size: var(--fs-text3);
}

.bg-dark,
.bg-dark .text,
.bg-dark .text-wrap{
    color: var(--color-base-light);
}
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6{
    color: #fff;
}

/*@media (max-width: 1199px){
	html{
		font-size: 14px;
	}
}*/

html{
    font-size: 14px;
}

@media (min-width: 1200px){
    html{
        font-size: 16px;
    }
}

.text-wrap:before,
.text-wrap:after {
    display: table;
    content: " ";
}
.text-wrap:after{
    clear:both;
}

.text-wrap > *{margin-bottom:20px;}
.text-wrap > *:last-child{margin-bottom:0;}
.text-wrap ul,.text-wrap ol{padding-left:40px;}
.text-wrap li + li,.text-wrap li ul,.text-wrap li ol{margin-top:10px;}

.text-wrap ul{
    list-style: none;
    padding-left: 0;
}
.text-wrap ul li{
    padding-left: 20px;
    position: relative;
}
.text-wrap ul li::before{
    content: "";
    width: 6px;
    height: 2px;
    background-color: var(--color-secondary);
    position: absolute;
    top: 0.875rem;
    left: 0;
}

.text-wrap img{
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 5px;
}
.text-wrap img[style*="float: left"]{
    margin-right: 15px;
}
.text-wrap img[style*="float: right"]{
    margin-left: 15px;
}

.text-wrap hr{
    margin: 35px 0;
}
.text-wrap hr + img,
.text-wrap hr + * img{
    margin-top: 8px;
}

.link,
.link:hover,
.text-wrap a:not(.btn),
.text-wrap a:not(.btn):hover{
    color: #0d6efd;
}
.link,
.text-wrap a:not(.btn),
.link.hover-text-decoration:hover{
    text-decoration:underline;
}
.link:hover,
.text-wrap a:not(.btn):hover,
.link.hover-text-decoration{
    text-decoration:none;
}

button.link{
    background: none;
    border: 0;
    padding: 0;
}

.text-wrap audio,
.text-wrap video{
    display: block;
    width: 100%;
    outline: none;
}
.text-wrap video{
    height: auto;
}

.text-wrap iframe{
    display: block;
    max-width: 100%;
}

.text-wrap table {
    width: 100%;
    border: 1px solid #dee2e6;
    color: inherit;
}
.text-wrap table th,
.text-wrap table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: top;
}
.text-wrap table thead th {
    border-bottom: 2px solid #dee2e6;
    vertical-align: bottom;
}
.text-wrap table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.text-wrap .table-plain {
    border: 0;
}
.text-wrap .table-plain th,
.text-wrap .table-plain td {
    border: 0;
    border-top: 1px solid #dee2e6;
}
/* ---------- /title,text ---------- */


/* ---------- buttons ---------- */
.btn{
    --bs-btn-padding-x: 1rem;
    /*--bs-btn-padding-y: 0.375rem;*/
    --bs-btn-border-width: 2px;
    --bs-btn-border-radius: 0;
    --bs-btn-disabled-opacity: 0.3;

    --bs-btn-font-family: var(--font-family-base);
    --bs-btn-font-size: 16px;
    --bs-btn-font-weight: bold;
    --bs-btn-line-height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-lg,
.btn-xl{
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-border-width: 4px;
}

.btn img{
    height: 18px;
}

.btn span + img,
.btn img + span{
    margin-left: 10px;
}

.icon-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0;

    transition: var(--transition-bg-color);
}
.icon-btn img{
    flex-shrink: 0;
}

.icon-btn.btn-fb{
    background-color: var(--color-blue);
}
.icon-btn.btn-fb:hover{
    background-color: var(--color-blue-light);
}

.btn-lg{
    min-height: 52px;
    font-size: 21px;
}
.btn-lg img{
    height: 24px;
}
.btn-lg span + img,
.btn-lg img + span{
    margin-left: 13px;
}

.btn-xl{
    min-height: 72px;
    font-size: 24px;
}
.btn-xl img{
    height: 30px;
}
.btn-lg span + img,
.btn-lg img + span{
    margin-left: 16px;
}

@media (min-width: 1200px) {
    .btn-xl{
        --bs-btn-padding-x: 2rem;
    }
}

/* white */
.btn-white{
    background-color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.5);
}
.btn-white:hover{
    background-color: rgba(255,255,255,0.7);
}
.btn-outline-white{
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #fff;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #fff;
    border-color: white;
    color: white;
}
.btn.btn-outline-white:hover{
    background-color: #fff;
    color: #000;
}

/* primary */
.btn-primary{
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-hover);
    --bs-btn-hover-border-color: var(--color-primary-hover);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-primary-hover);
    --bs-btn-active-border-color: var(--color-primary-hover);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-bg: var(--color-primary);
    --bs-btn-disabled-border-color: var(--color-primary);
}
.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-primary);
    --bs-btn-active-border-color: var(--color-primary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-primary);
}

/* secondary */
.btn-secondary{
    --bs-btn-bg: var(--color-secondary);
    --bs-btn-border-color: var(--color-secondary);
    --bs-btn-hover-bg: var(--color-secondary-hover);
    --bs-btn-hover-border-color: var(--color-secondary-hover);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: var(--color-secondary-hover);
    --bs-btn-active-border-color: var(--color-secondary-hover);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-bg: var(--color-secondary);
    --bs-btn-disabled-border-color: var(--color-secondary);
}
.btn-outline-secondary {
    --bs-btn-color: var(--color-secondary);
    --bs-btn-border-color: var(--color-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-secondary);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-secondary);
    --bs-btn-active-border-color: var(--color-secondary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-secondary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-secondary);
}

/* warning */
.btn-warning{
    --bs-btn-color: #000;
    --bs-btn-bg: var(--color-warning);
    --bs-btn-border-color: var(--color-warning);
    --bs-btn-hover-bg: var(--color-warning-hover);
    --bs-btn-hover-border-color: var(--color-warning-hover);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: var(--color-warning-hover);
    --bs-btn-active-border-color: var(--color-warning-hover);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-bg: var(--color-warning);
    --bs-btn-disabled-border-color: var(--color-warning);
}
.btn-outline-warning {
    --bs-btn-color: var(--color-warning);
    --bs-btn-border-color: var(--color-warning);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-warning);
    --bs-btn-hover-border-color: var(--color-warning);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-warning);
    --bs-btn-active-border-color: var(--color-warning);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-warning);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-warning);
}

/* dark */
.btn-dark{
    --bs-btn-bg: var(--color-dark);
    --bs-btn-border-color: var(--color-dark);
    --bs-btn-hover-bg: var(--color-dark-hover);
    --bs-btn-hover-border-color: var(--color-dark-hover);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-bg: var(--color-dark-hover);
    --bs-btn-active-border-color: var(--color-dark-hover);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-bg: var(--color-dark);
    --bs-btn-disabled-border-color: var(--color-dark);
}
.btn-outline-dark {
    --bs-btn-color: var(--color-dark);
    --bs-btn-border-color: var(--color-dark);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-dark);
    --bs-btn-hover-border-color: var(--color-dark);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-dark);
    --bs-btn-active-border-color: var(--color-dark);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-dark);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-dark);
}


/* facebook */
.btn-fb{
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-blue);
    --bs-btn-border-color: var(--color-blue);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-blue-light);
    --bs-btn-hover-border-color: var(--color-blue-light);
    --bs-btn-focus-shadow-rgb: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-blue-light);
    --bs-btn-active-border-color: var(--color-blue-light);
    --bs-btn-active-shadow: none;
}

/* close */
.btn-close{
    width: auto;
    height: auto;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    padding: 0;
    opacity: 1;
}
.btn-close img{
    display: block;
    height: 20px;
}
.btn-close:hover{
    opacity: 0.8;
}

.btn-toggle img{
    transition: transform 0.2s ease;
}
.btn-toggle.is-active img,
.is-open .btn-toggle img{
    transform: rotate(-180deg);
}

.btn-toggle:not(.btn){
    display: inline-flex;
    align-items: center;

    color: inherit;
}
.btn-toggle:not(.btn) img{
    height: 10px;
    margin: 1px 0 0 8px;
}
button.btn-toggle:not(.btn){
    background-color: transparent;
    border: 0;
    padding: 0;
}

/* is loading */
.btn.is-loading{
    background-image: url("../images/icons/spinner_white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px 28px;
    pointer-events: none;
}
.btn.is-loading > *{
    opacity: 0;
}

/* ---------- /buttons ---------- */


/* ---------- form ---------- */
.form-group{
    margin-bottom: 1rem;
}

.form-select{
    /*--color: #f00;*/
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");*/
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/*select.form-control{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/icons/chevron_solid_gray.svg");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 18px auto;
    padding-right: 30px;
}*/


/* floating label */
/*.floating-label{
	display: block;
	position: relative;
}
.floating-label .form-control{
	padding-top: 20px;
}
.floating-label > span{
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 1rem;

	position: absolute;
	top: 0;
	left: 0;

	transition: all 0.3s ease;

	color: rgba(0,0,0,0.7);
	font-size: 14px;
	font-weight: normal;
}
.floating-label .form-control:focus ~ span,
.floating-label .form-control:not(:placeholder-shown) ~ span,
.floating-label .form-control:-webkit-autofill ~ span {
	height: 50%;
	color: #000;
	font-size: 12px;
}

.floating-label textarea.form-control{
	padding-top: 30px;
}
.floating-label textarea.form-control + span{
	height: 60px;
}
.floating-label textarea.form-control:focus ~ span,
.floating-label textarea.form-control:not(:placeholder-shown) ~ span,
.floating-label textarea.form-control:-webkit-autofill ~ span {
	height: 30px;
}*/

/* checkbox, radio */
/*.form-check{
	display: inline-flex;
	align-items: flex-start;
	min-height: 20px;
	padding: 0;
	margin: 4px 0;

	color: #000;
	font-size: 14px;
	line-height: 19px;
}
.form-check input{
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: -50px center;
	background-size: 10px auto;
	border: 1px solid #0099ff;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}

.form-check input[type="checkbox"]{
	background-image: url(../images/icons/tick_white.svg);
	border-radius: 5px;
}
.form-check input[type="radio"]{
	background-image: url(../images/icons/radio_white.svg);
	border-radius: 50%;
}

.form-check input + span,
.form-check span + input{
	margin-left: 9px;
}
.form-check a{
	color: inherit;
	font-weight: bold;
	text-decoration: underline;
}
.form-check a:hover{
	text-decoration: none;
}

.form-check input:checked{
	background-color: #0099ff;
	background-position: center !important;
}

.form-label + .form-check{
	margin-top: 0;
}*/

/* toggler */
.form-toggler{
    display: inline-flex;
    position: relative;
    overflow: hidden;
    margin: 0;
}
.form-toggler input{
    opacity: 0;
    position: absolute;
    left: -100%;
}
.form-toggler > i{
    flex-shrink: 0;
    display: flex;
    width: 56px;
    height: 32px;
    background-color: #D4D7D9;
    border-radius: 16px;
    position: relative;
    padding: 4px;
}
.form-toggler > i::before{
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}
.form-toggler > i,
.form-toggler > i::before{
    transition: all 0.3s ease;
}
.form-toggler input:checked + i{
    background-color: #0099ff;
}
.form-toggler input:checked + i::before{
    transform: translateX(24px);
}

.form-toggler > i + span{
    margin: auto 0 auto 12px;
    font-size: 14px;
}
.form-group .form-toggler{
    margin: 9px 0;
}


/* error */
.error-text,
.global-error-text {
    padding: 2px 0 0 5px;
    color: #b61d22;
    font-size: 12px;
}

.error-text {
    display: none;
}
.global-error-text {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.has-error .form-control {
    border-color: #b61d22;
}
.has-error .error-text {
    display: block;
}
/* ---------- /form ---------- */


/* ---------- bg-img ---------- */
.bg-img{
    display: block;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.bg-img:not(.ratio)::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.bg-img--cover{
    background-size: cover;
}
.bg-img--contain{
    background-size: contain;
}
.bg-img.fit-container{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/* ---------- /bg-img ---------- */


/* ---------- ratio, fit ---------- */
.ratio{
    display: block;
    overflow: hidden;
}
.ratio img,
.ratio video,
.object-fit-cover{
    object-fit: cover;
}
.object-fit-contain{
    object-fit: contain;
}
/* ---------- /ratio, fit ---------- */



/* ---------- separator ---------- */
.separator{
    border: 2px solid var(--color-secondary);
    margin: 16px 0;
}
/* ---------- /separator ---------- */


/* ---------- card ---------- */
.card{
    background-color: var(--color-light);
    border: 0;
    border-radius: 12px;
}
.bg-light .card{
    background-color: #fff;
}
.card-body{
    padding: 16px;
}
.card-title{
    font-size: var(--fs-h6);
    margin-bottom: 14px;
}
.card-body .text-wrap > *:not(:last-child){
    margin-bottom: 12px
}

.cards-grid:last-child{
    margin-bottom: -30px;
}
.cards-grid > div{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.cards-grid .card{
    flex-grow: 1;
}

@media (min-width: 992px){
    .card-body{
        padding: 28px 36px;
    }
}
/* ---------- /card ---------- */


/* ---------- accordion ---------- */
.accordion-item-head{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.accordion-item-head > *{
    cursor: pointer;
}
.accordion-item-head .i-toggle{
    flex-shrink: 0;
    width: 24px;
    transition: transform 0.2s ease;
}
.is-open > .accordion-item-head .i-toggle{
    transform: rotate(-180deg);
}
/* ---------- /accordion ---------- */


/* ---------- slider, carousel ---------- */
.splide__list-transition{
    transition: transform 0.4s ease;
}
/* ---------- /slider, carousel ---------- */


/* ---------- features carousel ---------- */
.features-carousel{
    --margin-y: 32px;
    --img-width: 280px;

    margin: var(--margin-y) 0;
}
.features-carousel figure{
    width: var(--img-width);
}
.features-carousel figure img{
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .features-carousel{
        --margin-y: 40px;
        --img-width: 320px;
    }
}
@media (min-width: 1400px) {
    .features-carousel{
        --margin-y: 54px;
        --img-width: 396px;
    }
}
/* ---------- /features carousel ---------- */


/* ---------- map ---------- */ 
.map-container{    
    position: relative;    height: 450px; /* Add explicit height for larger screens */ 

} 
.map-container .map{    
    width: 100%;    
    height: 100%;    
    position: absolute;    
    top: 0;    
    left: 0; 
} 
@media (max-width: 991px){
    .map-container{        
        height: 0; /* Reset height */        
        padding-top: 100%; /* Creates square aspect ratio */    

    }
} /* ---------- /map ---------- */


/* ---------- products ---------- */
.products-grid{
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 1rem;
}

.products-grid-item,
.products-grid-item .info-wrap{
    display: flex;
    flex-direction: column;
}

.products-grid-item .img-wrap{
    flex-shrink: 0;
}
.products-grid-item .ratio::before{
    padding-top: 75%;
}
.products-grid-item .img-wrap img{
    transition: transform 0.25s linear;
}

.products-grid-item .info-wrap{
    flex-grow: 1;
    background-color: var(--color-secondary);
    transition: var(--transition-bg-color), var(--transition-border-color);
}
.products-grid-item .info-wrap .title{
    flex-grow: 1;
    display: flex;
    min-height: 80px;

    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}
.products-grid-item .info-wrap .title a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
}

.products-grid-item:hover img{
    transform: scale(1.1);
}
.products-grid-item:hover .info-wrap{
    background-color: var(--color-dark);
}

.bg-light .products-grid-item .info-wrap{
    background-color: #fff;
    border-bottom: 4px solid #fff;
}
.bg-light .products-grid-item .info-wrap .title{
    color: #000;
}
.bg-light .products-grid-item:hover .info-wrap{
    border-bottom-color: var(--color-warning);
}

@media (min-width: 768px) {
    .products-grid-item .info-wrap .title{
        min-height: 100px;
        font-size: 22px;
    }
}
@media (min-width: 1200px) {
    .products-grid{
        --bs-gutter-y: 1.25rem;
        --bs-gutter-x: 1.25rem;
    }
}
@media (min-width: 1400px) {
    .products-grid{
        --bs-gutter-y: 1.5rem;
        --bs-gutter-x: 1.5rem;
    }
}
@media (min-width: 1800px) {
    .products-grid{
        --bs-gutter-y: 2.5rem;
        --bs-gutter-x: 2.5rem;
    }
}
/* ---------- /products ---------- */


/* ---------- frames ---------- */
.section-banner-frames{
    background-color: var(--color-dark);
    padding: 0;
    position: relative;
}
.section-banner-frames .info-wrap{
    max-width: 400px;
    padding: 40px 0 50px;
}
.section-banner-frames .img-wrap > *{
    display: block;
    width: 100%;
}
.section-banner-frames > a{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
@media (min-width: 992px) {
    .section-banner-frames .info-wrap{
        padding: 60px 0;
    }
}
/* ---------- /frames ---------- */


/* ---------- img grid ---------- */
.img-grid{
    --bs-gutter-y: 6px;
    --bs-gutter-x: 6px;

    margin-bottom: 6px;
}
.img-grid [data-ratio="1"] .ratio::before{
    padding-top: 68%;
}
.img-grid [data-ratio="2"] .ratio::before{
    padding-top: calc(136% + 4px);
}
/* ---------- /img grid ---------- */


/* ---------- about ---------- */
.section-about{
    min-height: calc(100vh - var(--app-header-height));
}
.section-about,
.section-about.show ~ .app-page{
    display: none;
}
.section-about.show{
    display: block;
}

.section-about .btn-close{
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
}
@media (min-width: 768px) {
    .section-about .btn-close {
        padding: 15px;
    }
}
/* ---------- /about ---------- */



/* ==================== 5. content by pages ==================== */


/* ---------- section ---------- */
/* ---------- /section ---------- */


/* ---------- section ---------- */
/* ---------- /section ---------- */
