/*
Theme Name: LogosLTD Theme
Theme URI: https://logosltd.sk/
Author: P-i-P
Author URI: https://logosltd.sk/
Description: LogosLTD s.r.o
Version: 1.0
*/
section {
  scroll-margin-top: 100px; /* висота хедера */
}

/* ===========================
   Fonts
=========================== */
@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');

/* ===========================
   CSS Variables (Brand Colors)
=========================== */
:root {
  --white: #ffffff;

  --primary-background: #161c33;
  --secondary-background: #1e1f27;

  --primary-color: #363636;
  --primary-color-light: #66737f;

  --primary-blue: #161c33;
  --secondary-blue: #182c4b;

  --primary-dark-green: #12312c;
  --primary-light-green: #A1DF68;

  --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);

  --font-primary: "Poppins", sans-serif;

  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;

  --font-xs: 13px;
  --font-sm: 14px;
  --font-base: 18px;
  --font-md: 19px;
  --font-lg: 20px;
  --font-xl: 24px;
  --font-xxl: 32px;
  --font-xxxl: 40px;
  --font-xxxxl: 64px;

  --weight-regular: 300;
  --weight-meduim: 500;
  --weight-bold: 500;
  --weight-semiBold: 600;
  --weight-extraBold: 800;

  --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);
}

/* ===========================
   Reset / Base
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html { font-size: 16px; }

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;

  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;
}

:focus,
:active { outline: none; }

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s linear;
  cursor: pointer;
}
a:visited,
a:hover { text-decoration: none; }

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  vertical-align: top;
}

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

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

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

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

p { font-size: 18px; margin-bottom: 1rem; }

/* ===========================
   Typography
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 600;
  color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; line-height: 1.75rem; }

/* ===========================
   Layout helpers
=========================== */
.main { min-height: 600px; }

.container,
.wrapper {
  width: 100%;
  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);
}

.section_head { margin-bottom: 30px; }
.section_description { max-width: 860px; margin: 0 auto; }

section { padding: 80px 0; }

/* ===========================
   Utilities
=========================== */
.center { text-align: center; }
.text-primary { color: var(--primary-light-green); }

.flex { display: flex; }
.flex.fdcol { flex-direction: column; }
.flex.fdr { flex-direction: row; }
.flex.fjc { justify-content: center; }
.flex.fjsb { justify-content: space-between; }
.flex.fje { justify-content: flex-end; }
.flex.faic { align-items: center; }

.gap10 { gap: 10px; }
.gap2r { gap: 2rem; }
.justify_sb { justify-content: space-between; }

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

.blackfont { color: black !important; }
.whitefont { color: #ffffff !important; }

.body__active { overflow: hidden !important; }

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

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

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

input[type="submit"],
.primary_btn {
  color: #12312c;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--primary-light-green);
  border: 2px solid 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;
}

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;
}

/* ===========================
   Fixed background section
=========================== */
.fix-bg {
  position: relative;
  background-size: cover !important;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}
.fix-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}

/* ===========================
   Header
=========================== */
.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;
  animation: sticky 0.5s;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}

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

.header__row {
  display: flex;
  justify-content: space-between;
  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%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__list {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__link { transition: all 0.3s; }

/* Language switcher */
.language_switcher ul {
  display: flex;
  gap: 10px;
  margin-left: 30px;
  list-style: none;
}

/* ===========================
   Menu (Desktop + Mobile)
=========================== */
.main_nav { width: 100%; }

.menu_desktop {
  position: relative;
  display: flex;
  padding: 6px 0;
  align-items: center;
  justify-content: space-between;
}

.main_menu { list-style: none;  }

.main-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-around;   
}

.main-menu li a,
.language_switcher ul li a {
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  color: #363636;
  padding: 10px 15px;
  text-align: center;
  position: relative;
  transition: color 0.3s;
}

.language_switcher ul li a::before,
.main-menu li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--primary-light-green);
  border-radius: 20px;
  transform: scale(0);
  transition: transform 0.3s ease-out;
}

.language_switcher ul li a:hover::before,
.language_switcher ul li.current-lang a::before,
.main-menu li a:hover::before,
.main-menu li a:focus::before,
.main-menu li a:active::before {
  transform: scale(1);
}

.main-menu li a:hover,
.main-menu li a:focus { color: var(--primary-dark-green); }

.shop_menu > li {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 0;
  margin-right: 10px;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop_menu > li:hover { border: 2px solid #945cb4; }

/* Mobile burger button */
button.header__mobile-menu {
  font-size: 24px;
  background: transparent;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.header__mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background-color: #363636;
  transition: all 0.3s ease-in-out;
}
.header__mobile-menu.open span { background-color: #a0e067; }
.header__mobile-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__mobile-menu.open span:nth-child(2) { opacity: 0; }
.header__mobile-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header__menu .main-menu.active { right: 0; }

/* ===========================
   Page header / breadcrumbs
=========================== */
.page-header {
  min-height: 260px;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  display: flex;
  align-items: center;
  background-position: center center;
}
.page-header h1,
.page-header a { color: #fff; }

.breadcrumbs { color: #bbbbbb; }

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

.no-image-header { background-image: url(images/head-bg.jpg); }

/* ===========================
   WP Gallery (Classic + Gutenberg)
=========================== */
.gallery,
.wp-block-gallery {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: start;
}

.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;
}

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

.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); }

.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);
}

.gallery-item,
.gallery-item a,
.wp-block-gallery .blocks-gallery-item {
  width: auto !important;
  max-width: 100% !important;
}

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

.gallery img,
.wp-block-gallery img {
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-item a[data-lightbox],
.wp-block-gallery .blocks-gallery-item a[data-lightbox] { cursor: zoom-in; }

@media (min-width: 1000px) {
  .gallery,
  .wp-block-gallery { gap: 18px; }

  .gallery { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

@media (max-width: 420px) {
  .gallery,
  .wp-block-gallery { grid-template-columns: 1fr; gap: 10px; }
}

.wp-block-gallery .blocks-gallery-item figcaption { text-align: left; }

/* ===========================
   Hero / Slider
=========================== */
#home {
  padding: 0;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-slide { overflow: hidden; color: #fff; }

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: #a1df68;
  opacity: 0;
  transition: left .3s, right .3s, opacity .3s;
}
.hero-slider .swiper-button-prev { left: -30px; }
.hero-slider .swiper-button-next { right: -30px; }

.hero-slider:hover .swiper-button-prev { left: 50px; opacity: 1; }
.hero-slider:hover .swiper-button-next { right: 50px; opacity: 1; }

.slider-controls .swiper-pagination-bullet,
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  line-height: 12px;
  font-size: 12px;
  opacity: 0.3;
  background: #a1df68;
  transition: all .2s ease;
  margin: 0 4px;
}
.slider-controls .swiper-pagination-bullet-active,
.hero-slider .swiper-pagination-bullet-active { opacity: 1; }

.swiper-pagination {
  text-align: center;
  position: relative !important;
  margin: 0 10px;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  display: table;
  margin: 0 auto;
  left: 50%;
  top: 90%;
  transform: translateX(-50%);
}

.head_primary {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.head_primary span {
  background: #a0e067;
  border-radius: 40px;
  color: #12312c;
  padding: 4px 18px;
}
.head_description {
  font-size: 20px;
  color: #a0e067;
  font-weight: 500;
  margin: 20px 0;
}
.head_title {
  font-size: 44px;
  color: #fff;
  font-weight: 500;
}

.hero-style { transition: all .4s ease; }
.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns { max-width: 690px; }

.hero-style .slide-title h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition: all .4s ease;
}

.hero-style .slide-text p {
  opacity: 0.8;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 40px;
  transition: all .4s ease;
}

.hero-style .slide-btns > a:first-child { margin-right: 10px; }

/* Scroll down */
.scrolldown {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  color: #fff;
  transition: opacity .3s;
}
.scrolldown a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 0.3s;
}
.scrolldown a:hover { color: var(--primary-light-green); }

.scrolldown a span.scrl {
  position: relative;
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  margin-bottom: 20px;
}
.scrolldown a span.scrl::before {
  position: absolute;
  top: 1px;
  left: 50%;
  content: "";
  width: 2px;
  height: 8px;
  margin-left: -1px;
  background-color: #ffffff;
  border-radius: 100%;
  animation: sdb10 2s infinite;
}
@keyframes sdb10 {
  0% { transform: translate(0, 0); opacity: 0; }
  40% { opacity: 1; }
  80% { transform: translate(0, 20px); opacity: 0; }
  100% { opacity: 0; }
}

/* Afterline */
.afterline span {
  width: 120px;
  height: 6px;
  background: var(--primary-light-green);
  margin-bottom: 30px;
  border-radius: 4px;
  display: inline-block;
}

/* ===========================
   About / Sections
=========================== */
.about_cont { width: 100%; gap: 2rem; }
.hulf_block { width: 50%; }

.about_img {
  position: relative;
  padding-right: 60px;
  padding-bottom: 60px;
  background: url(images/dots.png) right bottom no-repeat;
}
.section_images > img,
.about_img > img { border-radius: 20px; }

.about_img .about_video_btn {
  width: 300px;
  height: 220px;
  position: absolute;
  bottom: 0;
  border-radius: 3px;
  border: 5px solid #fff;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section_images.right {
  position: relative;
  padding-left: 60px;
  padding-bottom: 60px;
  background: url(images/dots.png) 75% 75% no-repeat;
}
.section_images .bottom_img {
  max-width: 70%;
  position: relative;
  float: right;
  z-index: 1;
}
.section_images .top_img {
  max-width: 70%;
  z-index: 2;
  position: relative;
  margin-top: -50%;
}

/* About text */
.about_logos,
.about_logos p {
  font-size: 18px;
  line-height: 1.5;
}
.about_logos { margin-bottom: 30px; }
.about_description { margin: 60px 0; }

.about_logos ul { margin: 10px; }
.about_logos ul li {
  margin-left: 1rem;
  margin-bottom: 10px;
}

/* ===========================
   Mission / Services / Contacts blocks
=========================== */
.our_mission_items { gap: 2rem; }
.mission_item {
  padding: 2rem;
  border: 2px solid #e3e6e8;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 33%;
}
.mission_item:hover {
  border: 2px solid #a1df68;
  box-shadow: 0 0 22px rgb(0 0 0 / 13%);
}

.mission__ico,
.blocks__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  border-radius: 50%;  
    color: #a1df68;
}
.mission__ico img { width: 40px; height: 40px; }
.blocks__ico svg { width: 50px; height: 50px; }

.item__title { margin: 1rem auto; text-transform: uppercase; }

.our_services {
  background: url(images/sbanner.jpg);
  background-size: cover;
}
.our_services .section_title,
.our_services .section_title h2 { color: #fff; }

.our_service_items { gap: 2rem; }
.service_item {
  padding: 2rem 1rem 0 1rem;
  border: 2px solid #e3e6e8;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  background: #fff;
  width: 33%;
}
.service_item .item__description { padding: 0 1rem; }
.service_item .item__description,
.service_item .item__description p { font-size: 16px; }
.service_item:hover {
  border: 2px solid #a1df68;
  box-shadow: 0 0 22px rgb(0 0 0 / 13%);
}
.item__image {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 2rem;
}

.contact_item {
  width: calc(100% / 3);
  padding: 2rem;
  border: 2px solid #e3e6e8;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}
.contact_item p { margin-bottom: 0; }

.address,
.email a,
.phone,
.phone a {
  font-size: 22px;
  line-height: 38px;
  font-weight: 400;
  color: #262626;
}
.email a:hover,
.phone a:hover { color: #115cef; }

.contacts_title {
  font-size: 30px;
  font-style: italic;
}

/* ===========================
   Forms
=========================== */
.contact-form_inner { max-width: 750px; }
.contact-form_inner.form__inner { margin: 80px auto 20px auto; }

.form-row {
  padding: 8px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.form-row.form_full { flex-direction: column; }

.form-row .half { width: calc(50% - 15px); }
.full { width: 100%; padding: 10px 0; }

.form-row span,
.form-row label { display: block; }

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
input[type="date"],
select {
  font-size: 16px;
  line-height: 28px;
  background: #ffffff;
  border: 1px solid #999;
  border-radius: 8px;
  color: #333;
  width: 100%;
  padding: 10px;
  outline: none;
  height: 45px;
}
.form-row textarea { min-height: 80px; }

input[type="submit"] {
  max-width: 340px;
  margin: 0 auto;
}

/* ===========================
   Tech page / Video
=========================== */
.techbology_page .page-container { padding-bottom: 0; }

.video_center {
  margin: 0 auto;
  position: relative;
}
.video_center img {
  max-height: 460px;
  border-radius: 20px;
}

.vbtn-fluid {
  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  background: var(--primary-light-green);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  border: none;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  animation: pulse2 linear 1000ms infinite;
  transition: all 0.4s;
}

@keyframes pulse2 {
  0% { box-shadow: 0 0 0 0 var(--primary-light-green); }
  70% { box-shadow: 0 0 0 40px rgba(94, 223, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 223, 255, 0); }
}

/* Lite YouTube */
lite-youtube {
  aspect-ratio: 16 / 9;
  width: 100% !important;
  max-width: 640px;
  margin: 30px auto;
  margin-bottom: 30px;
}

/* ===========================
   Timeline process (FIX: odd arrows)
=========================== */
.t_process { position: relative; }
.t_process::before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 1px;
  border-right: 2px dotted #eaeaea;
  left: 50%;
  margin-left: -.5px;
  z-index: -1;
}

.t_process_item { gap: 10px; margin-bottom: 60px; }
.t_process_item .tp_item_text { width: 50%; padding: 2rem; }
.t_process_item .tp_item_mark { width: 55px; padding: 0 15px; }
.t_process_item .tp_item_nmber {
  width: 50%;
  text-align: left;
  line-height: 1;
  padding-top: 30px;
  font-size: 2rem;
  color: var(--primary-light-green);
  opacity: 0.6;
}

.tp_item_text {
  border: 1px solid #eaeaea;
  padding: 35px;
  position: relative;
  border-radius: 10px;
  background: #fff;
}

/* default: arrow points RIGHT */
.tp_item_text::before {
  position: absolute;
  top: 36px;
  right: -15px;
  content: " ";
  border-top: 15px solid transparent;
  border-left: 15px solid #eaeaea;
  border-bottom: 15px solid transparent;
}
.tp_item_text::after {
  position: absolute;
  top: 37px;
  right: -14px;
  content: " ";
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-bottom: 14px solid transparent;
}

/* odd: reverse row + arrow points LEFT + number align right */
.t_process_item:nth-child(odd) {
  flex-direction: row-reverse;
}
.t_process_item .tp_item_nmber {
  text-align: right;
}
.t_process_item:nth-child(odd) .tp_item_nmber {
  text-align: left;
}

/* arrow to LEFT for odd (instead of only nth-child(2)) */
.t_process_item:nth-child(odd) .tp_item_text::before {
  right: auto;
  left: -15px;
  border-left-width: 0;
  border-right: 15px solid #eaeaea;
}
.t_process_item:nth-child(odd) .tp_item_text::after {
  right: auto;
  left: -14px;
  border-left-width: 0;
  border-right: 14px solid #fff;
}

.tp_item_mark span {
  width: 25px;
  height: 25px;
  margin-top: 36px;
  border-radius: 50%;
  display: inline-block;
  background: var(--primary-light-green);
}

/* ===========================
   404
=========================== */
.page-error-404 {
  background: url(images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
  position: relative;
  min-height: 700px;
}

/* ===========================
   Footer
=========================== */
.footer {
  padding: 60px 0 0 0;
  position: relative;
  background: #12312c;
  overflow: hidden;
  color: #fff;
}
.footer::after {
  content: "";
  position: absolute;
  background: url(images/logos-splash-middle-green-rgb.svg) center center no-repeat;
  background-size: contain;
  height: 200%;
  width: 100%;
  top: -50%;
  right: -43%;
}

.footer__column { padding: 15px 0; }

.footer_logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}
.footer_logo img { width: 200px; height: auto; }

.footer__social { margin-bottom: 20px; }

.footer_left { width: 40%; }

.footer__text {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #fff;
}

.footer-widget .foot_title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  text-align: left;
  margin-top: 15px;
}

.footer-widget a,
.footer-widget ul li a {
  color: #fff;
  font-weight: 400;
  padding: 0;
  position: relative;
  text-decoration: none;
}
.footer-widget ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transition: width 0.25s cubic-bezier(0.68, 0, 0.265, 1);
}
.footer-widget ul li a:hover::after { width: 100%; }

.footer--wrapper ul.menu li { width: auto; }

.contacts_item {
  display: flex;
  padding: 10px 0;
  align-items: center;
  line-height: 20px;
  text-align: left;
}

.f_contacts .ico {
  width: 22px;
  height: 20px;
  margin-right: 10px;
}

.footer_phone .ico { background: url(images/telephone.svg) no-repeat center center; background-size: contain; }
.footer_location .ico { background: url(images/location.svg) no-repeat center center; background-size: contain; }
.footer_mail .ico { background: url(images/mail.svg) no-repeat center center; background-size: contain; }

.footer__social_link a svg { color: #fff; }
.footer__social_link a:hover,
.footer__social_link a:hover svg { color: #A1DF68; }

.copyright {
  border-top: 1px solid #ccc;
  padding: 15px 0;
  color: #e3e6e8;
  font-size: 14px;
  justify-content: space-between;
}
.copyright a {
  color: #e3e6e8;
  font-size: 14px;
}

/* ===========================
   Blog
=========================== */
.entry-blogs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.entry-blogs::after { content: ''; flex: auto; }

.blogs-item {
  width: calc(50% - 1rem);
  padding: 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}
.blogs-item .blogs-img { overflow: hidden; position: relative; }
.blogs-item .blogs-img img { width: 100%; height: auto; }

.blogs-item .blog-title {
  padding: 15px 0;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 15px;
}
.blogs-item .blog-title a {
  font-style: normal;
  font-weight: bold;
  font-size: 1.3rem;
  color: #363636;
}
.blogs-item .blog-title a:hover { color: #12312c; }

.read_post a { float: right; }
.singl_postimg { margin-bottom: 2rem; }

a.read_all span.arrow_to {
  padding: 5px 0;
  margin-left: 5px;
  -webkit-mask: url(images/arrow_right.svg) no-repeat 100% 100%;
  mask: url(images/arrow_right.svg) no-repeat 100% 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #363636;
  width: 20px;
  height: 10px;
  display: inline-block;
  transition: left 300ms, right 300ms, opacity 300ms;
}
.read_all {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #363636;
}
.read_all:hover { color: #12312c; }
a.read_all:hover span { background-color: #12312c; }

/* ===========================
   Scroll top button
=========================== */
.scrollTop {
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #858a8e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.scrollTop:hover {
  background: #12312c;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.scrollTop::before,
.scrollTop::after {
  position: absolute;
  right: 50%;
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg) translateX(50%);
  transition: top 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.scrollTop::before { top: 12px; }
.scrollTop::after { top: 20px; opacity: 0.6; }

.scrollTop:hover::before { top: 9px; }
.scrollTop:hover::after { top: 12px; opacity: 1; }

.swiper-pagination.hero-pagination{
    display: none;
}
/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
  .hero-slider { height: 540px; }
}

@media (max-width: 767px) {
  section { padding: 30px 0; }

  .hero-slider { height: 540px; }
  .hero-slider .head_primary { font-size: 2rem; }
.swiper-pagination.hero-pagination{
    display: block;
    bottom: 40px;
}
  .hero-next,
  .hero-prev,
  .scrolldown { display: none; }

  .header__menu .main-menu {
    display: block;
    position: fixed;
    right: -100%;
    top: 0;
    min-width: 270px;
    height: 100vh;
    text-align: center;
    background: var(--secondary-background);
    color: white;
    padding: 100px 20px 20px 20px;
    transition: right 0.5s ease;
    z-index: 999;
  }

.main-menu ul {  
    flex-direction: column;
}
  .main_menu li a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }

  .about_description { margin: 0; }
  .section_images.right { padding-left: 0; padding-bottom: 0; }

  /* Timeline on mobile */
  .t_process::before { display: none; }
  .t_process_item { margin-bottom: 10px; }
  .t_process_item.flex { flex-direction: column; }
  .t_process_item .tp_item_mark { display: none; }

  .t_process_item .tp_item_nmber,
  .t_process_item:nth-child(odd) .tp_item_nmber,
  .t_process_item .tp_item_text {
    width: 100%;
    text-align: center;
  }
  .tp_item_text::before,
  .tp_item_text::after { display: none; }

  .entry-blogs,
  .form-row { flex-direction: column; }

  .entry-blogs .blogs-item { width: 100%; }
  .form-row .half { width: 100%; }
}

@media (max-width: 992px) {
  .hulf_block { width: 100%; }
  .about_img .about_video_btn { width: 120px; height: 80px; }
  .about_img { padding-right: 0; padding-bottom: 0; background: none; }
  .section_head { text-align: center; }

  .about_cont.flex,
  .our_mission_items.flex,
  .our_service_items.flex,
  .footer__row.flex,
  .contacts-data.flex { flex-direction: column; }

  .mission_item,
  .service_item,
  .footer__column,
  .three_items .item_block,
  .contacts-data .contact_item { width: 100%; }

  .copyright .policy { display: none; }

  .page-header { min-height: auto; }
  .page-header h1 { font-size: 2rem; }
}

@media (min-width: 768px) {
  .header__mobile-menu { display: none; }
}
