/*
Theme Name: Trivor
Text Domain: tvr
*/

*, *::before, *::after {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

:root {
	--blue: #384673;
	--red: #b0183d;
	--dred: #84122e;
	--lightblue: #4fe6ff;
	--yellow: #f6ac4d;
}

html {
	scrollbar-gutter: stable;
	scrollbar-width: thin;
  	scrollbar-color: var(--red) #010d1b;
	overflow-x: hidden;
}

body {

  font-family: "Plus Jakarta Sans", sans-serif;
	letter-spacing: .2px;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body:before {
	content: '';
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
background: #fff;
  z-index: 10000;
  
}

html.no-scroll {
	overflow: hidden !important;
		scrollbar-color: #0000 #000;
}


div, section, p, span, strong, ul, li, a, b, i, h1, h2, h3, h4, h5, h6, ul, li, td, th, img {
	margin: 0;
	padding: 0;
	position: relative;
}

#page {
		background: url(img/bck.png) repeat center center / 2708px;
}

#page:after {
	content: '';
	position: absolute;
	z-index: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width:60px;
	//background: #010d1b;
	background: linear-gradient(360deg, var(--dred) 10%, rgb(1, 13, 27) 70%)

}

a {
		transition: color .2s ease, background .3s ease;
}

p {
	padding: 0 0 10px
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 80px 0;
}

.bg-light {
	background: #00000005
}

.bg-dark {
	background: #1a2a3a;
	color: #fff;
}

.section-title {

	margin-bottom: 30px;
}

.section-title h2 {
font-size: 32px;
  color: var(--blue);
  font-weight: 600;
}


_.section-title h2:after {
content: '';
  background: var(--red);
  width: 1px;
  height: 42px;
  position: absolute;
  bottom: 2px;
  left: 4px;
  transform: rotate(-30deg);
  z-index: 2;
  opacity: 0.4;
}


_.section-title h2:before {
content: '';
  background: #fff;
  width: 6px;
  height: 25px;
  position: absolute;
  bottom: 2px;
  left: 2px;
  transform: rotate(-30deg);
  z-index: 1;
}


.section-title span {
	text-transform: uppercase;
	color: var(--red);
	font-weight: bold;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

/* Buttons */

.btn-primary {
	background: #b0183dbb;
	color: #fff;
	padding: 15px 30px;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
	border: 2px solid var(--red);
	top: 0;	
	box-shadow: -1px 0px 20px var(--red), 0 10px 30px #000;
}

.btn-primary:hover {
	background: #b0183d;
	top: -2px;
}

.btn-secondary {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	padding: 15px 30px;

	text-decoration: none;
	display: inline-block;
	margin-left: 10px;
		top: 0;
		box-shadow: 0 10px 30px #000;
}

.btn-secondary:hover {
	background: #fff;
	color: #004a99;
		top: -2px;
}

.hero .btn-primary,
.hero .btn-secondary {

}


.zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzhero .btn-primary::after {
  content: '';
  background: var(--red);
  width: 1px;
  height: 300px;
  position: absolute;
  bottom: -52px;
  left: -3px;
  transform: rotate(-30deg);
  z-index: -10;
  opacity: .5;
}
/* Header */

.main-header {

	padding: 50px 0;
	position: fixed;
	top: 0;
	right: 0;
  left: 0;
	z-index: 1000;
    transition: padding .3s ease, background .3s ease;
	border-bottom: 1px solid #fff2;
	backdrop-filter: blur(10px);
	box-shadow: 50px 0 50px #0001;
}

.main-header:before {
content: '';
inset: 0;
bottom: unset;
height: 3px;
background: linear-gradient(90deg,rgb(177, 25, 62) 0%, rgb(1, 13, 27) 52%);
position: absolute;
}

.main-header.sticky {
	padding: 20px 0;
	background: #060e1bbb;

}

.main-header.sticky.outer {
background: #fffa
}

.main-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	background: url(img/trivor-logo.png) no-repeat center center / contain;
width: 200px;
height: 40px;
	    transition: width .3s ease, height .3s ease;
		z-index: 5000;
		cursor: pointer
}

.logo:after {
	content: '';
	background: url(img/trivor-logo-i.png) no-repeat center center / contain;
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .5s ease;
}

.sticky .logo {
	
width: 170px;
height: 34px;
  top: -3px;
	
}

.outer .logo:after {
	opacity: 1;
}

.no-scroll .outer .logo:after {
opacity: 0;
}


.logo span {
	font-weight: 300;
	font-size: 0.8rem;
	color: #666;
}

nav ul {
	list-style: none;
	display: flex;
}

.nav-menu a {
	text-decoration: none;
	color: #fff;
margin-left: 32px;
  font-weight: 500;
  font-size: 17px;
  	    transition: color .2s ease, top .2s ease, text-shadow .2s ease;
		top: 0px;
		text-shadow: 0 0 4px #fff0;
}


.nav-menu a:after {
  content: '';
  background: var(--red);
  width: 1px;
  height: 20px;
  position: absolute;
  bottom: 0px;
  left: -15px;
  transform: rotate(-30deg);
  z-index: -10;
  opacity: 0.8;
}

.outer .nav-menu a:after {
opacity: .2
}
	

.nav-menu ul li:last-of-type a::after {
	display: none !important;
}


.nav-menu a:hover {
	top: -1px;
text-shadow: 0 0 4px #ffff;
	}

.outer .nav-menu a {
color: #222
}


.nav-menu li.active a {
    color: var(--red) !important;
    transition: 0.3s;
}

.nav-menu li.active .btn-small {
color: #fff !important;
}


.nav-menu li:after {
content: '';
	background: var(--red);
height: 1px;
left: 32px;
  right: 0px;
  bottom: -24px;
  position: absolute;
  opacity: 0;
    	    transition: opacity .2s ease;
			
}


.nav-menu li.active:after {
opacity: 1;
}

/* Przycisk Powrót na górę (To Top) */
#totop {
    position: fixed;
bottom: -10px;
  right: 5px;
    width: 50px;
    height: 50px;
    color: #fff;

background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 24px;
opacity: 0;
    z-index: 9999;
	transition: opacity .2s ease, bottom .2s ease;
}

#totop:after {
	font-family: "fntz" !important;
	content: '\E807';
}

#totop.shw {
	opacity: .5;
	bottom: 10px;
}

#totop:hover {
	opacity: 1;
	bottom: 15px;
}

/* Żeby sekcje nie "wpadały" pod menu przy przewijaniu */
section {
    scroll-margin-top: 90px;
}


.btn-small {
background: var(--red);
box-shadow: -3px -1px 10px var(--red);
	color: #fff !important;
	padding: 8px 25px;
}

.outer .btn-small {
box-shadow: 0px 0px 0px var(--red);
}

/* Hero */

.hero {

	color: #fff;
height: 640px;
	text-align: left;
		z-index: 1;
}


.hero::before {
  content: '';
  background: linear-gradient(-90deg,#010d1b 0%, #010d1b00 100%);
  width: 300px;
  position: absolute;
right: 0;
  top: 0;
  bottom: 0;
}

.hero .slida {
	inset: 0;
	position: absolute;
			z-index: -2;
background: #010d1b;
overflow: hidden;

}


.hero .slida .slid {
	inset: 0;
	position: absolute;
opacity: 0;


            transform: scale(1.06);
            transition: 
                opacity 3s ease-in-out,
                transform 6s ease-out;
            will-change: opacity, transform;
}


.hero .slida > .s1 {
			background:  url(img/slid.jpg) no-repeat center center / auto 100%;}

			.hero .slida > .s2 {
			background:  url(img/slid2.jpg) no-repeat center center / auto 100%;}





       .hero .slida  .slid.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        /* Poprzedni slajd zostaje widoczny aż do końca animacji następnego */
       .hero .slida  .slid.prev {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .dots {
position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
  max-width: 1280px;
  width: 100%;
  justify-content: end;

        }

        .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
			margin: 0 3px;
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
        }






 .hero .container{
	height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
 }

.hero:after {
content: '';
		background: url(img/bck1.png) repeat center center / 2700px;
		inset: 0;
		position: absolute;
		z-index: -1;
}

.hero-content {
	top: 60px;
}

.px {
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Ważne: scroll, nie fixed! */
    background-position: center 0;
    

    will-change: background-position; 
}

.hero h1 {
font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 800px;
  font-weight: 700;
  letter-spacing: -.5px;
  text-shadow: 3px 3px 0 #0006;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 40px;
	
	max-width: 600px;
}

.mask {
	position: absolute;
	inset: 0;
	right: unset;
	width: 800px;
	mask-image: url(img/pat.png);
  mask-size: auto 100%;
  mask-repeat: no-repeat;
  mask-position: right;
  background: #0f1827;
  opacity: 0.3;
}

.mask:before {
	content: '';
	inset: 0;
	position: absolute;
	width: 700px;
	height: 700px;
background: radial-gradient(circle,rgba(177, 25, 62, 1) 0%, rgba(177, 25, 62, 0) 50%);
border-radius: 50%;
top: 100px;
left: 30px;
}


.hero-content:after{
content: '';
  background: url(img/trngl.png) no-repeat center center / contain;
  left: unset;
  position: absolute;
  width: 500px;
  height: 500px;
    opacity: 0.3;
  z-index: -1;
  
bottom: -155px;
  right: 0;
  
}

.about {
	background: url(img/trngl2.png) no-repeat top right  60px / 235px auto;
}


.about p {
font-size: 18px;
  line-height: 34px;
  text-align: justify;
}



.grid {
	display: flex;
	
}

.card {
background: #fff5;
  padding: 25px 30px;
  flex: 1;
  border: 1px solid #0004;
}

.card:hover {
background: #ffff;

}

.card:first-of-type {
	border-right: none;
}

.card:last-of-type {
border-left: none;
}

.card h3 {
margin: 0 0 15px;
  color: var(--red);
  font-weight: 500;
  line-height: 28px;
  font-size: 20px;
}


  .offer p {
    font-size: 15px;
    line-height: 28px;
  }



.benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 0px 0 30px;
}

.benefits-grid ul {
	list-style: none;
}

.benefits-grid li {
	margin-bottom: 15px;
	padding-left: 30px;
	position: relative;
	font-weight: 700;
}

.benefits-grid li::before {
	font-family: "fntz" !important;
	content: '\E806';
	position: absolute;
	left: 0;
	top: -2px;
	color: var(--red);
	font-size: 1.2rem;
}

/* Cooperation */

.cooperation {
	  background: #520d22 url(img/paypat.jpg) no-repeat center center/ cover;
	text-align: center;
}


.cooperation h2 {
font-size: 36px;
margin: 0 0 30px;
  font-weight: 600;
  color: #fff;
}

.cooperation .highlight {
font-size: 22px;
	margin: 15px 0;
	color: var(--lightblue);
	font-weight: 600;
}

.cooperation p {
	color: #fff;
	font-size: 18px;
  line-height: 30px;
}

.cooperation .highlight ~ .btn-primary {
margin: 30px 0 0;
box-shadow: none;
}

/* Contact & CF7 Placeholder */


.contact h2 {
	font-size: 32px;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 30px;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.contact-form-box {
	background: #fff;

}

.placeholder-cf7 {
	background: #0000000a;
	padding: 40px;
	
}




#cm.right {
  right: 60px;
  bottom: 30px;
}

#cm, #s-bl .act .b-acc, #s-inr, .cc_div .b-tl, .cc_div .c-bl {
  border-radius: 1px;
}

#c-bns button:first-child, #s-bns button:first-child {
  background: var(--red);
  color: var(--cc-btn-primary-text);
}

.cc_div .c-bn {
  background: #eee;
  border-radius: 1px;
    padding: 10px;

}

#s-cnt .p,
.cc_div .c-bn {
  color: #000;
 }


 #cm .c_link:active, #cm .c_link:hover, #s-c-bn:active, #s-c-bn:hover, #s-cnt button + button:active, #s-cnt button + button:hover {
  background: var(--cc-btn-secondary-hover-bg);
  color: var(--cc-btn-secondary-hover-text);
}


.cc_div {
  font-family: inherit;
  }

  #s-bl {
	  	scrollbar-color: #aaa #eee;
  }

  #cm {
    max-width: 500px;
  }


.legal-notice {
	padding-top: 20px;
	border-top: 1px solid #eee;
	color: #777;
}

#policy-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
}


#policy-modal ul,
#policy-modal ol  {
margin: 0 0 0 20px;
}

#policy-modal p,
#policy-modal ul,
#policy-modal ol  {
font-size: 14px;;
}

#policy-modal h2 {
	font-size: 20px;
padding: 10px 0 5px;
}



.modal-content {
background-color: #fff;
  margin: 5vh auto;
  padding: 30px 40px;
  width: 100%;
  max-width: 1160px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #fff;
  overflow-x: hidden;
}

.close-modal {
    position: absolute;
    right: 20px; top: 10px;
    font-size: 30px; cursor: pointer;
}
.main-footer {
padding: 60px 0 30px;
	
background: var(--dred);

	border-top: 1px solid #ddd;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	color: #fff;
}

.footer-grid > div {}

.footer-bottom {
text-align: left;
  font-size: 0.8rem;
  color: #000;
  border-top: 1px solid #000;
  padding-top: 20px;
}
footer .logo {
	background: none;
	z-index: unset;
}


footer .logo span {
	font-size: 12px;
	margin: 0 0 10px;
	background: none;
	color: #fff;
}

footer .logo b {
	text-indent: -5000px;
  display: inline-block;
}

footer .logo b {

  background: url(img/trivor-logo.png) no-repeat left bottom / contain;
width: 120px;
  height: 22px;
  filter: brightness(100);
  top: 0px;
}

footer h4 {
	height: 40px;
	color: var(--lightblue);
}

footer a,
footer p {
	font-size: 14px;
	line-height: 30px;
}

footer a {
	color: #fff;
font-weight: 600;
}


.anm {
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .3s ease, transform .3s ease;
}

.anm.fd {
	transform: translate(0);
	transition: opacity .3s ease;
	opacity: 0;
}

.anm.bl {
	transform: translate(0);
	transition: opacity .3s ease, filter .3s ease;
	opacity: 0;
	filter:blur(4px);
}

.anm.sl {
	opacity: 0;
	transform: translateX(-5px);
	transition: opacity .3s ease, transform .3s ease;
}

.anm.vis {
	opacity: 1;
	transform: translate(0, 0);
	transition: opacity .3s ease, transform .3s ease, filter .3s ease, color .2s ease, background .2s ease, top .2s ease;
	filter:blur(0px);
}

.anm.fl {
	opacity: 0;
		transform: translate(0);
}

.anm.fl.vis {
	opacity: 1;
	opacity 0s ease;
	    animation: flash 0.1s ease-in-out 2;
}

@keyframes flash {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}





.wpcf7-form input[type="text"], 
.wpcf7-form input[type="email"], 
.wpcf7-form input[type="tel"] {
    width: 100%;
    padding: 12px;
margin-bottom: 0px;
    border: 1px solid #ddd;
	box-shadow: 0 0 0 0px var(--red);
outline: none;
transition: box-shadow .2s ease, border .2s ease;
}

.wpcf7-form input:focus {
	    border-bottom: 1px solid var(--red);
		
}

.wpcf7-form input[type="submit"] {
	font-family: inherit;
background: var(--red);
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
	box-shadow: none !important;
}

.wpcf7-list-item {
  
  margin: 0;
}

.form-checkboxes {
	margin: 0 0 20px;
	font-size: 12px;
}

.form-checkboxes .wpcf7-form-control-wrap {
  display: block;
margin: 0;
}

.wpcf7-not-valid-tip {
color: var(--red);
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  font-size: 12px;
  z-index: 3;
  top: 2px;
  left: 13px;
  background: #fff;
}

.form-checkboxes .wpcf7-not-valid-tip {
position: static;
background: #f5f5f5;
padding: 4px 0
}

.wpcf7-form-control-wrap[data-name=acceptance-451] {
	padding: 5px 0 0;
}

.wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  font-size: 12px;
  font-weight: 500;
}


/* Ukrywamy oryginalny checkbox, ale zostawiamy go dostępnego dla przeglądarki */
.wpcf7-list-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Styl dla kontenera tekstu - robimy mu miejsce na nasz custom checkbox */
.wpcf7-list-item-label {
    position: relative;
    padding-left: 35px; /* Miejsce na kwadracik */
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
}

/* Tworzymy nasz własny kwadracik (tło) */
.wpcf7-list-item-label:before {
content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 1px;
  transition: all 0.3s;
}


.wpcf7-list-item:hover input ~ .wpcf7-list-item-label:before {
    background-color: var(--red); 
}


.wpcf7-list-item input:checked ~ .wpcf7-list-item-label:before {
    background-color: var(--red); 

}


.wpcf7-list-item-label:after {
content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 8px;
  height: 12px;
  border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Pokazujemy ptaszka tylko gdy zaznaczone */
.wpcf7-list-item input:checked ~ .wpcf7-list-item-label:after {
    display: block;
}


.trivor-form .wpcf7-spinner {
position: absolute;
right: 14px;
  top: 13px;
  width: 20px;
  height: 20px;
   border-radius: 50%;
   background: conic-gradient(#0000 10%,#ffffff);
   -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 2px),#000 0);
   animation: spinner 1.2s infinite linear;
   transition: visibility .2s ease, opacity .2s ease;
   opacity: 0;
   margin: 0;
}

@keyframes spinner {
   to {
      transform: rotate(1turn);
   }
}

.trivor-form .wpcf7-spinner:before {
  display: none !important
}

form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}

.menu-trigger {
  display: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  width: 25px;
  top: 4px;
      left: 10px;
}


.menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}


.outer .menu-trigger span {
    background: var(--blue)
}

 .menu-trigger.active span {
background: #fff;
}

    /* Animacja X dla hamburgera */
    .menu-trigger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-trigger.active span:nth-child(2) { opacity: 0; }
    .menu-trigger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
right: 10px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}


@media (max-width: 1366px) {
.container {
padding: 0 120px;
}

}

@media (max-width: 1100px) {

 .menu-trigger {
    display: block;
    order: 0;

  }

nav {
    position: fixed;
    top: 3px;
	left: 0;
	right: 0;
	margin: 0 !important;
visibility: hidden;
opacity: 0;
width: 100vw;
    height: 100vh;
    background: #0c1723;
    z-index: 999;
    transition: opacity .5s ease, visibiliity 0s ease .5s;
    padding: 110px 20px;

  }

    nav.open {
		 visibility: visible;
		    transition: opacity .5s ease, visibiliity 0s ease;
opacity: 1;
 }

.nav-menu li::after {
	display: none;
}

.nav-menu a {
  text-decoration: none;
  color: #fff !important;
margin: 0;
    font-weight: 600;
    font-size: 22px;
    transition: color .2s ease;
    display: block;
    line-height: 50px;

    padding: 9px 20px 10px;
	transition: all .3s ease;
}



.nav-menu li {
	transition: opacity .4s ease;
    border-bottom: 1px solid #fff3;
	opacity: 0;
}



.nav-menu.open  li {
	opacity: 1;
}

.nav-menu.open  li:nth-child(1) {
	transition-delay: .30s;
}

 .nav-menu.open  li:nth-child(2) {
	transition-delay: .33s;
}

.nav-menu.open  li:nth-child(3) {
	transition-delay: .36s;
}

 .nav-menu.open  li:nth-child(4) {
	transition-delay: .39s;
}

 .nav-menu.open  li:nth-child(5) {
	transition-delay: .42s;
}


nav,
    nav ul { 
	flex-direction: column;
	margin: 20px 0;
	gap: 0 !important;
	}

    nav ul li { border-bottom: 1px solid #f0f0f0; }
	nav ul li a {
        display: block;
        padding: 15px 0;
    }

.nav-menu a::after {

  bottom: 24px;
  left: 5px;
}


	.hero h1 {
		font-size: 2.2rem;
	}

	/* Uproszczenie dla mobilnych */
	.contact-wrapper, .benefits-grid {
		grid-template-columns: 1fr;
	}
	.hero-btns .btn-secondary {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
		text-align: center;
	}
	.hero-btns .btn-primary {
		width: 100%;
		text-align: center;
	}
#page::after,
body::before {
  
  width: 0px;

}

.container {
   padding: 0 35px 0 30px;
}


.section {
  padding: 40px 0;
}


.about {
	background: url(img/trngl2.png) no-repeat top right  0px / 235px auto;
}

.about p {
font-size: 16px;
    line-height: 30px;
    text-align: left;
}




.grid {
 
  flex-direction: column;
}

.card {
	padding: 15px 20px;
}

.card:first-of-type {
	border: 1px solid #0004;
border-bottom: 0;
}


.card:last-of-type {
	border: 1px solid #0004;
border-top: 0;
}

.offer p {
	font-size: 14px;
	line-height: 22px;
}

.cooperation h2,
.section-title h2 {
  font-size: 30px;
  line-height: 36px;
}


.benefits-grid {
   gap: 0;
}

.cooperation .highlight {
  line-height: 30px;
}
.placeholder-cf7 {
  
  padding: 20px;
}


.hero {
height: 100dvh;
}


.hero p {
	margin-bottom: 20px;
}

#totop {
	display: none !important;
}

.hero h1 {
 
  line-height: 1.1;
}

.hero p {
   line-height: 1.4;
}



#cm.right {
  right: 20px;
  bottom: 20px;
  left: 20px;
}


}



@font-face {
	font-family: "fntz";
	src: url('font/fntz-Regular.woff2') format('woff2'), url('font/fntz-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

[class^="f-"], [class*=" f-"] {
	position: relative;
	font-family: "fntz" !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	color: #000;
	font-size: 34px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-ligatures: normal;
	-webkit-font-feature-settings: "liga";
	-moz-font-feature-settings: "liga=1";
	-moz-font-feature-settings: "liga";
	-ms-font-feature-settings: "liga" 1;
	font-feature-settings: "liga";
	-webkit-font-variant-ligatures: discretionary-ligatures;
	font-variant-ligatures: discretionary-ligatures;
}

.icon_plus::before {
	font-family: "fntz" !important;
	content: '\E004 ';
}

