/*@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
*/ 
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Wix+Madefor+Text:wght@400..800&display=swap');
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
 
*::before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 18px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button ::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    cursor: pointer;
}

a:visited,
a:hover {
  text-decoration: none;
}
/*
ul li {
  list-style: none;
}
*/
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  width: 100%;
}


/* CSS Variables (Brand Colors from Brand Book) */
:root {
  /* Brand Colors from Brand Book */
  --white: #ffffff;
  --primary-background: #161c33;
  --secondary-background: #1e1f27;
  --primary-color: #363636;
  --primary-color-light: #66737f;;
  --primary-blue: #161c33;
  --primary-dark-green: #12312c;
  --primary-light-green: #A1DF68;

  --secondary-blue: #182c4b;
  /*--secondary-color: rgba(255, 92, 0);*/
  --secondary-color: #004796;
  --third-color: #4170a5;
  --fourth-color: #141414;
  --text-light: rgba(255, 255, 255, 0.8);
  --secondary-color-light: rgba(255, 92, 0, 0.5);
  --primary-gradient: linear-gradient(90deg, var(--secondary-color) 0%, var(--third-color) 50%, var(--secondary-color) 100%);
      --gradient-hero: linear-gradient(135deg, hsl(120 61% 50%) 0%, hsl(120 61% 35%) 100%);
	  --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(91.26deg 65.03% 64.12% / 18%) 100%);
    --shadow-elegant: 0 10px 40px -10px hsl(120 61% 50% / .15);
    --shadow-glow: 0 0 40px hsl(120 61% 65% / .3);
  /* Typography */
  --font-primary: "Poppins", sans-serif;
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
  /* Font sizes */
  --font-xs: 13px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-md: 18px;
  --font-lg: 20px;
  --font-xl: 24px;
  --font-xxl: 32px;
  --font-xxxl: 40px;
  --font-xxxxl: 64px;
  --weight-bold: 500;
  --weight-regular: 300;
  --weight-semiBold: 600;
  --weight-extraBold: 800;
  --weight-meduim: 500;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --grey: rgba(20, 20, 20, 0.5);
  --grey-15: rgba(20, 20, 20, 0.15);
}
html { font-size: 16px; } /* базовий розмір */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 600;
  
  color: var(--primary-color);
}
h1 { font-size: 3rem;  }   /* 3 × 16px = 48px */
h2 { font-size: 2rem;  }   /* 2 × 16px = 32px */
h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
	}   
p { font-size: 1rem; margin-bottom: 1rem;}    /* 1 × 16px = 16px */

.main{
  min-height: 600px;
}

.comfortaa-f {
  font-family: "Comfortaa", sans-serif;
}


.center{text-align: center; }
.text-primary {
    color: var(--primary-light-green);
}
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}


  .flex.fdcol{ 
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
  }
  .flex.fdr{ 
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
  }


  .flex.fjc{
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .flex.fjsb{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .flex.fje{
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }

  .flex.faic{
	-webkit-box-align: center;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
  }

.three_items {
  flex-wrap: wrap;
}
.three_items .item_block{
  width: 30%;
}

.gap10{
    gap: 10px;
}
.gap2r{
    gap: 2rem;
}

.justify_sb{
  justify-content: space-between;
}


body {
  background-color: var(--white);
  color: var(--primary-color-light);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
}

.container{ 
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  z-index: 3;
  position: relative;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  z-index: 3;
  position: relative;
}

.section_title{
    font-size: var(--font-xxxl);
    font-weight: 700;
    line-height: 1.2; 
    padding-bottom: 20px;
}
.section_pretitle{
    font-family: "Comfortaa", sans-serif;
    font-weight: 700;    
    font-size: 1.5rem;
    color: var(--primary-light-green);
}

.fix-bg{
	position: relative;
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.mobil-first-banner{
    display: none;
    position: relative; 
            background-position: center;
}
.mobil-first-banner .banner_container{ 
    width: 100%;
    height: 100%;
    position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
}


.language_switcher ul{
	display: flex;
	gap: 10px;
	margin-left:30px;
}
.language_switcher ul li a:hover,
.language_switcher ul li.current-lang a{
  
}

.button__primary {
  background: var(--gradient-hero);
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: var(--font-sm);
  font-weight: 600; 
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
  position: relative;
}

.button__primary:hover {
  background: var(--primary-gradient);
  
  color: var(--white);
  cursor: pointer;
}



.btn-primary { 
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-primary:hover {
	
}


.title {
  font-size: var(--font-xxxl);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.body__active {
  overflow: hidden !important;
}

.header {
  z-index: 50;
  position: relative;
  width: 100%;
  top: 0;
  background: var(--white);
    padding: 5px 0;
}

.header.sticky {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    z-index: 999;
    
    -webkit-animation: sticky 0.5s;
    animation: sticky 0.5s;
    -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}	

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 200px;
  height: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.header__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;

}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="submit"],
 .primary_btn{
    color: #12312c;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--primary-light-green);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--primary-light-green);
    padding: 15px 20px;
    min-width: 200px;
    display: inline-block;
    margin-top: 1rem;
    border-radius: 30px;
    text-align: center;
    text-transform: uppercase;

	transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
 }
 input[type="submit"]:hover,
 .primary_btn:hover{	  
	background:  #fff;
 }
.white_bg_btn{  
    background-color: #fff;
    color: #12312c;  
  }
.white_bg_btn:hover{  
    color: var(--primary-light-green); 
    
    background-color: #12312c;
  }
 /**********************************************************/

.page-header h1,
.page-header a{
  color: #fff;
}
.page-header{
  min-height: 260px;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  
    display: flex;
    align-items: center;
}

.breadcrumbs{
  color:#bbbbbb;
}

.page-container{
  padding: 60px 0;
}
 /**********************************************************/


 /* ---------------------------
   Base reset for WP gallery
   --------------------------- */
.gallery,
.wp-block-gallery {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

/* Container: make gallery a responsive grid */
.gallery,
.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* auto columns */
  gap: 12px; /* distance between items */
  align-items: start;
}

/* Each item */
.gallery-item,
.wp-block-gallery .blocks-gallery-item {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Image styling */
.gallery-item img,
.wp-block-gallery .blocks-gallery-image img,
.gallery-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; /* keep cover behavior */
  vertical-align: middle;
  will-change: transform;
  transition: transform .25s ease;
}

/* Hover effect */
.gallery-item:hover,
.wp-block-gallery .blocks-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.gallery-item:hover img,
.wp-block-gallery .blocks-gallery-item:hover img {
  transform: scale(1.03);
}

/* Caption */
.gallery-caption,
.wp-block-gallery .blocks-gallery-item figcaption,
.gallery-item .wp-caption-text {
  font-size: .9rem;
  line-height: 1.25;
  color: #444;
  padding: 8px 10px;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* Make captions appear as overlay (optional) */
/* .gallery-item figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  color: #fff;
} */

/* Remove default inline widths WordPress may insert */
.gallery-item,
.gallery-item a,
.wp-block-gallery .blocks-gallery-item {
  width: auto !important;
  max-width: 100% !important;
}

/* Accessibility: focus styles */
.gallery-item a:focus {
  outline: 3px solid rgba(21,156,228,0.35);
  outline-offset: 2px;
}

/* Responsive tweaks: larger gaps on wide screens */
@media (min-width: 1000px) {
  .gallery,
  .wp-block-gallery {
    gap: 18px;
  }
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Optional: turn gallery into a 1-column layout on very small screens */
@media (max-width: 420px) {
  .gallery,
  .wp-block-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Gutenberg caption alignment fix */
.wp-block-gallery .blocks-gallery-item figcaption {
  text-align: left;
}

/* Ensure images are not selectable while dragging */
.gallery img,
.wp-block-gallery img {
  user-select: none;
  -webkit-user-drag: none;
}

/* Lightbox hint (if you use lightbox plugins) */
.gallery-item a[data-lightbox],
.wp-block-gallery .blocks-gallery-item a[data-lightbox] {
  cursor: zoom-in;
}
