@font-face {
    font-family: 'FilsonProLight';
    src: url('/fonts/filson-pro/FilsonProLight.otf') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'FilsonProRegular';
    src: url('/fonts/filson-pro/FilsonProRegular.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'FilsonProBold';
    src: url('/fonts/filson-pro/FilsonProBold.otf') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'ArcherItalic';
    src: url('/fonts/ArcherLightItalPro.otf') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'ArcherMedium';
    src: url('/fonts/ArcherMediumPro.otf') format('woff2');
    font-weight: 375;
    font-style: normal;
}

/* Custom CSS ___________________________________________________________________________________ */

/* Burger */
.menu-btn span {
    height: 2px;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}
.menu-btn span:nth-of-type(1) {
    margin-left: 5px;
    width: 20px;
}
.menu-btn span:nth-of-type(2) {
	top: calc(50% - 8px);
    margin-left: 10px;
    width: 10px;
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 8px);
    width: 30px;
}
.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
    width: 30px;
  margin-left: 0;
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  margin-left: 0;
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}
.menu.active {
	transform: translateX(0);
}

/* Accordion */
.accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

/* Moving Stroke */
.moving-stroke{
    background: linear-gradient(to right, #78BF26, #076B3B);
    overflow-x: hidden !important;
}
.moving-stroke-2{
    overflow-x: hidden !important;
}
.track {
    white-space: nowrap;
    overflow-y: hidden !important;
}
.track-2 {
    white-space: nowrap;
}
.animate-marquee{
    animation: marquee 75s linear infinite
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.bg-pos{
    background-position: left 35% center
}
.swiper-btn{
    width: 70px !important;
    height: 70px !important;
}
@media (max-width: 768px){
    .swiper-btn{
        width: 34px !important;
        height: 34px !important;
    }
}
.btn-active{
    background: #076B3B;
    background-image: url('../img/y.svg');
    background-repeat: no-repeat;
    background-position: left 35% center;
    color: white;
}
.btn-inactive{
    background: white;
    background-image: url('../img/y-green.svg');
    background-repeat: no-repeat;
    background-position: left 35% center;
    color: #076B3B;
}



/* GOOGLE MAPS */
.mapouter{position:relative;text-align:right;width:100%;height:700px;}
.gmap_canvas {overflow:hidden;background:none!important;width:100%;height:700px;}
.gmap_iframe {height:700px!important;}
@media (max-width: 768px){
    .mapouter{height:350px;}
    .gmap_canvas{height:350px;}
    .gmap_iframe{height:350px;}
}

/* SWIPER */


/* Default TAILWIND */
@tailwind base;
@tailwind components;
@tailwind utilities;