
/**************************************
*
*         GLOBAL   
*
***************************************/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	list-style: none;
}
:root {
	--color-green: #1eb16a;
	--color-dark-green: #13271d;
	--color-dark: #1b4934;
	--color-gray: #f7f9fb;
	--color-white: #ffffff;
	--color-light-gray: #808586;
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


::-moz-selection {
	background-color: #1b4934;
	color: var(--color-white);
}

::selection {
	background-color: #1b4934;
	color: var(--color-white);
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-light-gray);
}

html {
    scroll-behavior: smooth;
}

h2,
h3 {
    scroll-margin-top: 100px;
}

a {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

img {
	display: block;
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	color: #1b4934;
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.header-content h1 {
	font-size: 75px;

}

.header-content h1 { font-family: 'Oswald', sans-serif; font-weight: 700; color: #ffcc00; line-height: 1.2; margin: 0 0 20px; text-transform: uppercase; font-size: 60px; text-align: center;}
.header-content .selection { 
color: #1eb16a;
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}


h2 {
	font-size: 50px;
}

h3 {
	font-size: 20px;
}

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
}

.ptb {
	padding-top: 80px;
	padding-bottom: 80px;
}

.align-center {
	text-align: center;
}

.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

  /* Button */

  .buttons {
    margin: 0 auto;
    text-align: center;
}

.wrapper-aboutus .buttons  {
	margin-top: 40px;
}

#services .buttons  {
	margin-top: 40px;
}

.btn {
  padding: 15px;
  font-size: 11px;
  color: var(--color-white);
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 1.9px;
  cursor: pointer;
  border: none;
  background: linear-gradient(
    90deg,
    #1b4934 0%,
    #1f5e3f 14.57%,
    #23734a 28.62%,
    #279055 43.41%,
    #1eb16a 56.55%,
    #279055 70.72%,
    #1f5e3f 84.89%,
    #1b4934 98.88%
  );
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  filter: brightness(1.3);
  color: #ffe372;
}


.suptitle {
	display: inline-block;
	color: #1b4934;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: #1b4934;
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wrapper-title {
	margin-bottom: 50px;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}

.fixedmenu {
	background-color: var(--color-white);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

#closemenu,
#openmenu {
	display: none;
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
}

.res-booking .error {
	color: #ff0000;
}

.res-booking .send {
	color: var(--color-blue);
}


/**************************************
*
*         HEADER   
*
***************************************/

.header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }
.header-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.wrapper-bottom-header,
.wrapper-top-header {
	background-color: #00000000;
}

.wrapper-top-header{background: #00000075;}

  .header-top { justify-content: space-between; align-items: center; padding: 15px 0; }
  .header-top a { color: #fff; }
  .header-top a:hover { color: #ffcc00; }
  .header-contact p { margin-right: 20px; color: #fff; }
  .header-contact i { margin-right: 5px; }
  .social-link li { float: left; margin-left: 20px; }
  .social-link li a { color: #c8c8c8; }


.social-link .facebook a:hover {
    color: #42599e;
}

.whatsapp a:hover {
  color: #25d366;
}

.viber a:hover {
  color: #7360f2;
}

.telegram a:hover {
  color: #0088cc;
}

.tiktok a:hover {
  color: #fe2c55;
}

.instagram a:hover {
    color: #a17357;
}

.youtube a:hover {
    color: #cd201f;
}







  .bottom-header { justify-content: space-between; align-items: center; padding: 15px 0; }
  #logo { max-width: 100%;margin-left: 5px; }
  #logo img { max-height: 50px; width: auto; }
  .menu li { float: left; margin-left: 20px; }
  .menu li a { color: #fff; text-transform: uppercase; font-size: 14px; }
  .menu li a:hover { color: #ffcc00; }
  .menu li .active { color: #ffcc00; }


/**************************************
*
*         HEADER CONTENT   
*
***************************************/





/**************************************
*
*        Hero Section with Video  
*
***************************************/

  .wrapper-header-video { position: relative; min-height: 750px; overflow: hidden; }
  .header-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
  .header-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
  .wrapper-header-content { position: relative; z-index: 3; align-items: center; min-height: 555px;margin-bottom: 50px; }
  .header-content { width: 100%; }

  @media all and (max-width: 1000px) {
    .wrapper-header-video { min-height: 500px; }
    .wrapper-header-content { min-height: 500px; }
  }
  @media all and (max-width: 600px) {
    h1 { font-size: 30px; }
    .wrapper-header-video { min-height: 400px; }
    .wrapper-header-content { min-height: 400px; }
  }
}





.wrapper-header-img {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
	min-height: 570px;
}

.wrapper-header-img::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    content: "";
}

.wrapper-header-content {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    
}
#post .wrapper-header-content {
    align-items: flex-end;
}
.header-content {
	width: 100%;
}

.header-video-bg,
.header-video-overlay {
    pointer-events: none;
}

.wrapper-header-video {
    pointer-events: none;
}


/**************************************
*
*         ABOUT US   
*
***************************************/


#aboutus {
	position: relative;
	padding-top: 250px;
}

.wrapper-feature {
	max-width: 1400px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: var(--color-gray);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	z-index: 2;
	border-radius: 8px;
}

.single-feature {
	width: 25%;
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.single-feature h3{
	color: #1b4934;
	background: linear-gradient(
  90deg,
  #1b4934 0%,
  #1f5e3f 14.57%,
  #23734a 28.62%,
  #279055 43.41%,
  #1eb16a 56.55%,
  #279055 70.72%,
  #1f5e3f 84.89%,
  #1b4934 98.88%
);
color: transparent;
-webkit-background-clip: text;
background-clip: text;

}

.single-feature p{
    color: #000;
}

.single-feature img {
	max-width: 64px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 30px;
}

.aboutus-content {
	width: 55%;
	padding-left: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.aboutus-content h2{
	color: #1b4934;
	font-size: 45px;
	background: linear-gradient(
  90deg,
  #1b4934 0%,
  #1f5e3f 14.57%,
  #23734a 28.62%,
  #279055 43.41%,
  #1eb16a 56.55%,
  #279055 70.72%,
  #1f5e3f 84.89%,
  #1b4934 98.88%
);
color: transparent;
-webkit-background-clip: text;
background-clip: text;

}

.aboutus-content .selection {
color: #1eb16a;
background: linear-gradient(
  90deg,
  #1b4934 0%,
  #1f5e3f 14.57%,
  #23734a 28.62%,
  #279055 43.41%,
  #1eb16a 56.55%,
  #279055 70.72%,
  #1f5e3f 84.89%,
  #1b4934 98.88%
);
color: transparent !important;
-webkit-background-clip: text;
background-clip: text;
font-size: 45px;
}

.aboutus-img img {
	width: 100%;
	border-radius: 8px;
}

.aboutus-img {
	width: 45%;
	margin-top: 45px;
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-aboutus-progress {
	margin-top: 50px;
}

.single-progress {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 30px;
}

.progress-img {
	width: 50px;
	color: #1eb16a;
}

.progress-img img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.progress-content {
	width: calc(100% - 50px);
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.progress-content h3 {
	margin-bottom: 5px;
}

.wrapper-singnature {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
}

.wrapper-singnature>img {
	width: 80px;
	height: auto;
	margin-right: 20px;
	border-radius: 50%;
}

.signature-content h3 {
	font-size: 16px;
	text-transform: none;
	margin-bottom: 5px;
}

.signature-content>img {
	max-width: 100px;
	height: auto;
}


/**************************************
*
*         SERVICES
*
***************************************/

#services .selection {
    color: #1eb16a;
    background: linear-gradient(90deg, #1b4934 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #1b4934 98.88%);
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
}
.wrapper-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
}

.wrapper-service article {
    width: calc(33.333333% - 20px);
    height: 250px;
    margin: 10px 10px 30px;
    box-sizing: border-box;
    padding: 40px 20px 20px;
    box-shadow: 0px 15px 40px 6px rgb(0 0 0 / 13%);
    transition: all 0.5s;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.wrapper-service article:hover {
    webkit-box-shadow: 0 6px 19px 0 rgba(0, 0, 0, .2), 0 12px 71px 0 #a6b1bc;
        box-shadow: 0 6px 19px 0 rgba(0, 0, 0, .2), 0 12px 71px 0 #a6b1bc;
        -webkit-transform: translateY(-14px);
        -ms-transform: translateY(-14px);
        transform: translateY(-14px);
}

.wrapper-service article h3 {
padding: 15px 5px;
    background: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

.wrapper-service article .buttons {
display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
    padding: 0 0px;
    box-sizing: border-box;
}

.wrapper-service article .popup {
background: #279055;
    width: 47%;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 5px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease-in-out;
    transition: background 0.3s;
    background: linear-gradient(90deg, #1b4934 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #1b4934 98.88%);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 24px;
	letter-spacing: 0px;
}

.wrapper-service article .popup:hover {
	transition: all 0.2s ease-in-out;
    filter: brightness(1.3);
	color: #ffe684;
}

.wrapper-service article .details-link {
background: #ffcc00;
    color: #fff;
    padding: 4px 5px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 11px;
    line-height: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
    width: 47%;
    font-family: Arial;
	background: linear-gradient(
  90deg,
  #b38f00 0%,
  #caa300 14.57%,
  #e0b800 28.62%,
  #f5c800 43.41%,
  #ffcc00 56.55%,
  #f5c800 70.72%,
  #e0b800 84.89%,
  #b38f00 98.88%
);
}

.wrapper-service article .details-link:hover {
    color: #002915;
    transition: all 0.2s ease-in-out;
    filter: brightness(1.3);
}


    /* Жниварки */
    .zhatka-soniashnykova {
        background-image: url(../images/zhnyvarky-dlia-zbyrannia-soniashnyku.webp);
    }
    .zhatka-kukurudza {
        background-image: url(../images/zhatka-kukurudziana-01.webp);
    }
    .zhatka-flex {
        background-image: url(../images/zhatka-zernova-flex-01.webp);
    }

    /* Ріпакові столи */
    .ripakovyi-stil {
        background-image: url(../images/ripakovi-stoly-01.webp);
    }

    /* Візки */
    .vizok {
        background-image: url(../images/vizok.webp);
    }

    /* Сівалки */
    .sivalka {
        background-image: url(../images/sivalka-01.webp);
    }

    /* Посівні комплекси */
    .posivni-kompleksy {
        background-image: url(../images/posivnyi-kompleks-01.webp);
    }

    /* Компактори */
    .kompaktor {
        background-image: url(../images/kompaktor-01.webp);
    }

    /* Культиватори */
    .kultyvator-mizhriadnyi {
        background-image: url(../images/kultyvator-mizhriadnyi-01.webp);
    }
    .kultyvator-sutsilnyi {
        background-image: url(../images/kultyvator-sutsilnoho-obrobitku-01.webp);
    }

    /* Борони */
    .borona-dyskova {
        background-image: url(../images/borona-dyskova-01.webp);
    }
    .borona-rotatsiina {
        background-image: url(../images/borona-rotatsiina-01.webp);
    }
    .borona-zubova {
        background-image: url(../images/borona-zubova-01.webp);
    }

    /* Глибокорозпушувачі */
    .hlybokorozpushuvach {
        background-image: url(../images/hlybokorozpushuvach-01.webp);
    }

    /* Котки */
    .kotok-podribniuvach {
        background-image: url(../images/kotok-podribniuvach-01.webp);
    }
    .kotok-kilchasto-shporovyi {
        background-image: url(../images/kilchasto-shporovyi-kotok-01.webp);
    }
    .kotok-hladenkyi {
        background-image: url(../images/hladenkyi-kotok-01.webp);
    }

    /* Плуги */
    .pluh {
        background-image: url(../images/pluh-01.webp);
    }

    /* Мульчувачі, подрібнювачі */
    .mulchuvach {
        background-image: url(../images/mulchivachi-ta-podribniuvachi-01.webp);
    }

    /* Кормозбиральна техніка */
    .kormozbyralna-tekhnika {
        background-image: url(../images/kormozbyralna-tekhnika-01.webp);
    }

    /* Обприскувачі */
    .obpryskuvach {
        background-image: url(../images/tekhnika-dlia-vnesennia-dobryv-ta-khimzakhystu-01.webp);
    }

    /* Зерноочисні сепаратори */
    .zernoochysnyi-separator {
        background-image: url(../images/zernoochysnyi-separator-01.webp);
    }


     .service-card {
    position: relative;
}


.service-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-card .card-content,
.service-card .buttons {
    position: relative;
    z-index: 2;
}

.service-card .buttons a,
.service-card .buttons button {
    pointer-events: auto;
}


.ripakovyi-stil { background-image: url(../images/ripakovi-stoly-01.webp); }
.vizok { background-image: url(../images/vizok.webp); }
.sivalka { background-image: url(../images/sivalka-01.webp); }
.posivni-kompleksy { background-image: url(../images/posivnyi-kompleks-01.webp); }
.kompaktor { background-image: url(../images/kompaktor-01.webp); }
.kultyvator-mizhriadnyi { background-image: url(../images/kultyvator-mizhriadnyi-01.webp); }
.kultyvator-sutsilnyi { background-image: url(../images/kultyvator-sutsilnoho-obrobitku-01.webp); }
.borona-dyskova { background-image: url(../images/borona-dyskova-01.webp); }
.borona-rotatsiina { background-image: url(../images/borona-rotatsiina-01.webp); }
.borona-zubova { background-image: url(../images/borona-zubova-01.webp); }
.hlybokorozpushuvach { background-image: url(../images/hlybokorozpushuvach-01.webp); }
.kotok-podribniuvach { background-image: url(../images/kotok-podribniuvach-01.webp); }
.kotok-kilchasto-shporovyi { background-image: url(../images/kilchasto-shporovyi-kotok-01.webp); }
.kotok-hladenkyi { background-image: url(../images/hladenkyi-kotok-01.webp); }
.pluh { background-image: url(../images/pluh-01.webp); }
.mulchuvach { background-image: url(../images/mulchivachi-ta-podribniuvachi-01.webp); }
.kormozbyralna-tekhnika { background-image: url(../images/kormozbyralna-tekhnika-01.webp); }
.obpryskuvach { background-image: url(../images/tekhnika-dlia-vnesennia-dobryv-ta-khimzakhystu-01.webp); }
.zernoochysnyi-separator { background-image: url(../images/zernoochysnyi-separator-01.webp); }



/**************************************
*
*         OFFER  
*
***************************************/

#offer {margin-top: 80px;}
.wrapper-offer {
	background-color: var(--color-gray);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);

}

.offer-content {
	width: 60%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


.offer-content h2{
background: linear-gradient(90deg, #1b4934 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #1b4934 98.88%);
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
}

.offer-content p {
	margin-bottom: 20px;
}

.offer-img {
	width: 40%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.offer-img img {
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
}


/**************************************
*
*         TEAM   
*
***************************************/


.wrapper-team {
	max-width: 1400px;
}

.team-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.single-team {
	background-color: var(--color-white);
	width: calc(25% - 15px);
	min-width: 250px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.single-team img {
	width: 100%;
	display: block;
}

.team-content {
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.wrapper-team-icon {
	position: absolute;
	top: -30px;
	left: 30px;
	background-color: var(--color-blue);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.wrapper-team-icon img {
	width: 30px !important;
	height: auto !important;
}

.team-content h3 {
	margin-bottom: 10px;
	text-transform: none;
}

.team-content .social-link {
	margin-top: 20px;
}

.team-content .social-link li {
	margin-left: 0px;
	margin: 0 5px;
}

.team-content .social-link li a {
	color: #1b4934;
}

.team-content .social-link li a:hover {
	color: var(--color-blue);
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-blue);
}


/**************************************
*
*         PRICING  
*
***************************************/


.wrapper-pricing {
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-pricing {
	width: 25%;
	padding: 40px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pricing-title img {
	max-width: 64px;
	height: auto;
	margin: 0 auto;
	display: block;
	margin-bottom: 20px;
}

.pricing-content {
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #1b4934;
	border-top: 1px solid #1b4934;
}

.single-price {
	padding-top: 30px;
}

.single-price p {
	font-size: 40px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	color: #1b4934;
}


/**************************************
*
*         FAQ 
*
***************************************/


#faq {
	background-color: #eaf0e9;
}

.wrapper-faq.container {
	width: 100%;
	max-width: 100%;
	padding: 0px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.faq-content {
	width: 40%;
	background-color: var(--color-white);
	padding: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translateX(30%);
	-ms-transform: translateX(30%);
	transform: translateX(30%);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.faq-content h2{
background: linear-gradient(90deg, #1b4934 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #1b4934 98.88%);
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
}
.faq-img {
	width: 60%;
}

.faq-img img {
	width: 100%;
}

.wrapper-accordion .content-accordion {
	display: none;
}


.wrapper-accordion h3 {
	margin-bottom: 20px;
	text-transform: none;
	cursor: pointer;
}

.wrapper-accordion h3 i {
	margin-right: 10px;
	font-size: 16px;
}

.content-accordion {
	padding-bottom: 10px;
}

.content-accordion p {
	margin-bottom: 10px;
}


/**************************************
*
*         TESTIMONIALS
*
***************************************/


#testimonials {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
	background-attachment: fixed;
}

#testimonials .suptitle,
#testimonials h2 {
	color: var(--color-white);
}

#testimonials .suptitle::before {
	background-color: var(--color-white);
}

.wrapper-testimonials {
	color: var(--color-white);
	max-width: 1000px;

}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.wrapper-author h3 {
	margin-bottom: 10px;
	color: var(--color-white);
}

.wrapper-author {
	margin-top: 30px;
}


.wrapper-author p {
	color: var(--color-white);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
}


/**************************************
*
*         BOOKING
*
***************************************/


.wrapper-booking {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bookong-form {
	width: 60%;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.booking-working-hours {
	width: 40%;
	background-color: var(--color-white);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	padding: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.booking-working-hours h3 {
	font-size: 25px;
}

.wrapper-hours {
	margin-top: 30px;
}

.table-hours {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-gray);
	margin-bottom: 20px;
}

.wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-input input {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px 20px 20px 0px;
	border: none;
	outline: none;
	background-color: var(--color-white);
	width: calc(50% - 20px);
	margin-bottom: 40px;
	color: var(--color-black);
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	border-bottom: 1px solid #1b4934;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-input input::-webkit-input-placeholder {
	color: #1b4934;
}

.wrapper-input input::-moz-placeholder {
	color: #1b4934;
}

.wrapper-input input:-ms-input-placeholder {
	color: v#1b4934;
}

.wrapper-input input::-ms-input-placeholder {
	color: #1b4934;
}

.wrapper-input input::placeholder {
	color: v#1b4934;
}

.wrapper-input input:focus {
	border-bottom: 1px solid var(--color-blue);
}

.bookong-form button {
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}


/**************************************
*
*         CONTACTS
*
***************************************/
  #contacts { background-color: #1b4934; }
  #contacts {
    background-color: #1b4934;
    background: url(../images/silhosptekhnika-v-ukraini-01.webp) no-repeat 0 0;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#contacts::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    content: "";
}


  footer .suptitle { color: #1eb16a; }
  footer .suptitle:before { background-color: #1eb16a; }
  footer h2 { color: #ffcc00; }
  .wrapper-contact { justify-content: flex-start; }
  .wrapper-contact > div { width: 25%; padding: 20px; color: var(--color-white); }
  .wrapper-contact > div p { margin-bottom: 10px; }
  .wrapper-contact > div a { color: var(--color-white); }
footer div a:hover { color: #ffcc00; }
  
  .wrapper-contact > div h3 { color: var(--color-white); font-size: 20px; margin-bottom: 15px; }
  footer .social-link { display: flex; list-style: none; padding: 0; margin: 15px 0 0 0; }
  footer .social-link li { margin-left: 0; margin-right: 17px; }
  footer .social-link li a { color: var(--color-white); font-size: 18px; background: none; }
  .wrapper-map { width: 100%; }
  .wrapper-map iframe { width: 100%; height: 400px; display: block; border: 0; }
  .copyright { 
	background: #1b4934;
	background-color: #142b14;
    padding: 30px 15px;
    font-size: 14px;
    color: var(--color-white);
    /*background: linear-gradient(90deg, #142b14 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #142b14 98.88%);*/
}
  .copyright-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
  .copyright-logo { width: 120px; box-sizing: border-box; }
  .copyright-logo img { max-height: 54px; width: 100%; max-width: 80px; height: auto; display: block; margin-bottom: 8px; }
  .copyright-logo-text { width: 100%; max-width: 120px; font-size: 11px; text-transform: uppercase; text-align: center; color: var(--color-white); margin: 0; line-height: 1.3; word-wrap: break-word; hyphens: auto; }
  .copyright-text { text-align: center; flex: 1; }
  .copyright-link a { color: var(--color-white); text-decoration: none; transition: color 0.3s; }
  .copyright-link a:hover { color: #ffcc00; }

  /* Scroll Top Button */

  #scroll-top { position: fixed; bottom: 30px; right: 30px; z-index: 100; padding: 15px 20px; display: none; 
opacity: 1;
    transition: opacity 0.3s;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 50px;
background-color: rgba(0, 0, 0, 0.3);
    color: rgb(255, 255, 255) !important;
    border-radius: 5px;
    transition: background-color 0.3s, bottom 0.3s;
    outline: none !important;
    cursor: pointer;
 }
  #scroll-top.show { display: inline-block; opacity: 1; }
#scroll-top:hover { background-color: rgb(27, 72, 51); }
  @media all and (max-width: 1000px) {
    .ptb { padding: 50px 0; }
    .wrapper-contact > div { width: 50%; }
    .copyright-content { flex-direction: column; gap: 20px; text-align: center; }
    .copyright-logo { width: 80px; margin: 0 auto; }
    .copyright-text, .copyright-link { width: 100%; }
  }
  @media all and (max-width: 600px) {
    footer h2 { font-size: 36px; }
    .wrapper-contact > div { width: 100%; }
    #scroll-top { bottom: 20px; right: 20px; padding: 12px 16px; }
	
	.wrapper-service article .popup {
    padding: 4px 2px;
    font-size: 10px;
}
.wrapper-service article .details-link {
    padding: 4px 2px;
    font-size: 10px;
}

  }





 .guide-list.icons i {
  font-size: 18px;
  color: #2e7d32; /* агро-зелёный */
  margin-top: 3px;
  min-width: 22px;
}


.margin-b{
margin: 30px 0 50px 0;
}
.article-list {
  position: relative;
  list-style: none;
  margin: 22px 0 60px;
  padding: 22px 120px 22px 35px;
  background: #1b5e3f17;
    border: 1px solid rgba(27, 94, 63, 0.14);
    border-left: 4px solid #1b5e3f;
  border-radius: 14px;
  overflow: hidden;
}

/* Большой SVG лайк справа */
.article-list::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);

  height: calc(90% - 24px);
  aspect-ratio: 1 / 1;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
  background: url(../images/like-up.svg);
}

.article-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  line-height: 1.8;
  color: #000000;
  z-index: 2;
}

.article-list li:last-child {
  margin-bottom: 0;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border-radius: 50%;
    background: #1a5e3f;
    box-shadow: 0 0 0 4px rgb(26 94 63 / 14%);
}

.article-list strong {
  color: #ffffff;
}

/* Мобильные */
@media all and (max-width: 768px) {
  .article-list {
    padding: 18px 18px;
  }

  .article-list li {
    padding-left: 28px;
    margin-bottom: 12px;
  }

  .article-list::after {
    display: none;
  }
}

/* Красный вариант списка статей с лайк верх */
.article-list-red {
  position: relative;
  list-style: none;
  margin: 22px 0 60px;
  padding: 22px 120px 22px 35px;
  background: #fbbec217;
    border: 1px solid rgba(255, 0, 0, 0.14);
  border-left: 4px solid red;
  border-radius: 14px;
  overflow: hidden;
}

/* Большой SVG лайк вниз */
.article-list-red::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);

  height: calc(100% - 24px);
  aspect-ratio: 1 / 1;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.3;
  pointer-events: none;
  background: url(../images/like-down.svg);
}
.article-list-red li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  line-height: 1.8;
  color: #000000;
  z-index: 2;
}

.article-list-red li:last-child {
  margin-bottom: 0;
}

.article-list-red li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.14);
}

.article-list-red strong {
  color: #ffffff;
}

/* Мобильные */
@media all and (max-width: 768px) {
  .article-list-red {
    padding: 18px 18px;
  }

  .article-list-red li {
    padding-left: 28px;
    margin-bottom: 12px;
  }

  .article-list-red::after {
    display: none;
  }
}



.header-content .breadcrumbs {
  font-family: "Raleway", Arial, sans-serif;
  font-size: 15px;
  margin: 0 0 25px 0;
  padding: 0;
}
.header-content .breadcrumbs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.header-content .breadcrumbs li {
  display: flex;
  align-items: center;
  color: #ffcc00;
}
.header-content .breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: #1ab169;
  margin: 0 8px;
  font-weight: bold;
}
.header-content .breadcrumbs a {
  color: #1ab169;
  text-decoration: none;
  transition: color 0.2s;
}
.header-content .breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.con-date {
    text-align: center;
}
.date {
    display: inline-block;
	color: #D9DCDE;
    background: #0000002e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    /*border: 1px solid #D9DCDE;*/
    border-radius: 5px;
    padding: 0 10px 7px 10px;
    font-size: 0.75rem !important;
    margin: 0;
	fill: #ffcc00;
}
.date svg {
    width: 1.1rem;
    height: auto;
    position: relative;
    top: 5px;
    margin-right: 0.4rem;
}
.content {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.content .post {
    margin-top: 70px;
	margin-bottom: 20px;
}
.post .article-post h2 {
	font-size: 35px;
	color: #1b4934;
	background: linear-gradient(90deg, #1b4934 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #1b4934 98.88%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	margin-bottom: 28px;
}

.post .article-post .post-header{
	font-size: 38px;
	color: #1b4934;
	background: linear-gradient(90deg, #1b4934 0%, #1f5e3f 14.57%, #23734a 28.62%, #279055 43.41%, #1eb16a 56.55%, #279055 70.72%, #1f5e3f 84.89%, #1b4934 98.88%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.post .article-post h3 {
	font-size: 26px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #1b4934;
    padding-top: 10px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.post .article-post p {
margin: 0 0 30px;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 30px;
    color: #000;
    font-family: Raleway, sans-serif;
    font-weight: 300;
}
.post .article-post p strong {
    color: #000000;
    font-weight: 600;
}
.post .article-post a {
	color: #1ab169;
	text-decoration: none;
	transition: color 0.2s;
}
.post .article-post a:hover {
	color: #ffcc00;
	text-decoration: underline;
}






.post .blockquote{
position: relative;
        padding: 2.5em 1.875em;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        border-radius: 12px;
        border: 1px solid #ffcc00;
        border-left: 6px solid #ffcc00;
        background: #f8fbff;
        box-shadow: 0 6px 14px rgba(0, 61, 113, 0.08);
        line-height: 1.5;
        margin: 40px 0 50px;
        font-style: italic;
        text-align: center;
        font: 400 22px / 1.7 "Palatino Linotype", "Book Antiqua", Palatino, serif;
        color: #003d71;
}

.post .blockquote footer {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #1ab169;
    position: relative;
    text-align: center;
    padding-top: 10px;
    width: 80%;
    margin: 15px auto 0 auto;
}

  .blockquote::before,
  .blockquote::after {
    font-family: Georgia, serif;
    font-size: 60px;
    color: #1ab169;
    position: absolute;
    line-height: 1;
  }

  .blockquote::before {
    content: "“";
    top: 10px;
    left: 20px;
  }

  .blockquote::after {
    content: "”";
    top: 10px;
    right: 20px;
  }

  .blockquote footer::before {
    left: -50px;
  }

  .blockquote footer::after {
    right: -50px;
  }


  .blockquote footer::before,
  .blockquote footer::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: #1ab169;
  }

  .blockquote footer::before {
    left: 0;
    transform: translateX(-120%);
  }

  .blockquote footer::after {
    right: 0;
    transform: translateX(120%);
  }

  @media (min-width: 1200px) {
    .post .blockquote footer {
        font-size: 18px;
        font-weight: 100;
        width: 30%;
        margin-top: 1px;
    }
}

.post .article-post {
    margin: 50px 0;
    padding-bottom: 30px;
}

.post .article-post .blog-alert {
    position: relative;
    padding: 25px;
    margin: 30px 0 60px;
    border-radius: 12px;
    border: 1px solid #ffcc00;
    border-left: 6px solid #ffcc00;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    min-height: 120px;
    box-sizing: border-box;
    color: #1b4934;
    background: #f8fbff;
}
.post .article-post .blog-alert b {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 18px;
    color: #002915;
    font-weight: bold;
}


figure {
    position: relative;
    margin: 40px 0;
}

.post figcaption {
background: rgb(0 0 0 / 28%);
    bottom: 0;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    padding: 1rem;
    -webkit-transition: max-height 0.3s ease-out;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.post figcaption span {
    font-size: 14px;
}



.article-note{
    padding:16px 20px;
    margin:24px 0;
    border-left:4px solid #f2b705;
    background:#faf7ef;
    border-radius:8px;
    font-size:16px;
    line-height:1.6;
}

.article-note a{
color: #1ab169;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 30px;
    font-family: Raleway, sans-serif;
    font-weight: 300;
        padding-left: 10px;
}

.article-note a:hover{
    text-decoration:underline;
}




.toc-box {
width: 100%;
    max-width: 270px;
    margin: 20px auto 30px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    overflow: hidden;
    background: #0000002e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Кнопка заголовка */
.toc-toggle {
    width: 100%;
    color: white;
    background: #ffffff00;
    border: none;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: center;
}

.toc-toggle:hover {
    filter: brightness(1.3);
    color: #f2b705;
    background: #1e573b42;
}

.toc-icon {
    transition: transform 0.3s ease;
    color: #ffcc00;
}

/* контент */
.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 16px;
}

/* открытое состояние */
.toc-box.open .toc-content {
    max-height: 500px;
    padding: 10px 10px 16px;
}

.toc-box.open .toc-icon {
    transform: rotate(180deg);
}

.toc-title {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toc-title::before {
    content: "📑";
    font-size: 16px;
}

/* список */
.toc-list {
    margin: 0;
    padding-left: 10px;
    list-style: none;
}

.toc-list li {
    margin: 8px 0;
    position: relative;
    padding-left: 14px;
    text-align: left;
}

.toc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f2b705;
    font-weight: bold;
}

.toc-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.toc-list a:hover {
    color: #f2b705;
}



.loss-calc-box {
    background: linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%);
    border: 1px solid #f3e3b2;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.loss-calc-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.loss-intro {
    margin-bottom: 18px;
    color: #555;
}

.loss-table {
    width: 100%;
    border-collapse: collapse;
}

.loss-table tr {
    border-bottom: 1px solid #ececec;
}

.loss-table td {
    padding: 14px 10px;
    font-size: 16px;
}

.loss-table td:last-child {
    text-align: right;
}

.loss-result td {
    font-size: 20px;
    font-weight: 700;
    color: #c78a00;
    border-top: 2px solid #f2b705;
}

.loss-highlight{
position: relative;
    padding: 25px;
    margin: 30px 0 60px;
    border-radius: 12px;
    border: 1px solid red;
    border-left: 6px solid red;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    min-height: 120px;
    box-sizing: border-box;
    color: #1b4934;
    background: #f8fbff;
}
.loss-highlight b {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 18px;
    color: #002915;
    font-weight: bold;
}

.img-article {
    max-width:100%; 
    height:auto;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
    border-style: solid;
    border-width: 1px;
    border-radius: 7px;
    border-color: rgb(26, 177, 105);
    transition: 700ms;
}


.post p b{
    margin: 0 0 30px;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 30px;
    color: #000;
    font-family: Raleway, sans-serif;
    font-weight: 900;
}



.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-header {
    margin-bottom: 20px;
}

.related-header h3 {
    font-size: 26px;
    margin: 0 0 6px 0;
}

.related-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* карточка */
.related-card {
    display: block;
    padding: 18px;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    text-decoration: none;
    background: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: #f2b705;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.related-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.related-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* адаптив */
@media (max-width: 900px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}




/* Accordion styles */
/* акордеон */
.half {
  padding: 0 1em;
  margin-bottom: 0;
}
.half h2{
  font-size: 38px;
}
.tab {
  position: relative;
  margin-bottom: 1px;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab label {
position: relative;
  display: flex;
  align-items: center;
  padding: 0 60px 0 24px;
  background: linear-gradient(135deg, #1ab169 0%, #0d9e55 100%);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
  min-height: 64px;
  cursor: pointer;
  border-radius: 10px;
  color: #ffffff;
  box-shadow:
    0 4px 15px rgba(26, 177, 105, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.tab label:hover {
  background: linear-gradient(135deg, #22d47e 0%, #15b863 100%);
  box-shadow:
    0 8px 25px rgba(26, 177, 105, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tab label:hover::after {
  color: #ffffff;
  transform: translateY(-50%) rotate(45deg);
}


.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #007d41;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
  width: 97%;
  margin: auto;
  border-radius: 5px;
}


.post .article-post .tab-content p {
  margin: 1em;
  line-height: 30px;
  letter-spacing: 2px;
  font-size: 17px;
  color: #fff;
  font-weight: 300;
}

.post .article-post .tab-content p strong {
  color: yellow;
}  
/* :checked */
.tab input:checked ~ .tab-content {
  max-height: 100vh;
}

/* Icon */
.tab label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  transition: all 0.35s;
  color: #fff;
}
.tab input[type="checkbox"] + label::after {
  content: "+";
  animation: pulse 1.5s infinite;
}
.tab input[type="radio"] + label::after {
  content: "\25BC";
}
.tab input[type="checkbox"]:checked + label::after {
  transform: rotate(315deg);
}
.tab input[type="radio"]:checked + label::after {
  transform: rotateX(180deg);
}


@media (max-width: 768px) {
  .half {
    padding: 10px;
  }
  .tab label {
    font-size: 22px;
    line-height: 1.5;
    padding: 10px 17px 10px 10px;
  }
  .tab-content p {
    font-size: 22px;
  }
  .tab label::after {
    width: 1em;
    height: 1em;
  }
}
/* конец акардиона */