/* Start Reset */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

textarea {
	resize: vertical;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

/* End Reset */

*{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body{
	background-color: #000;
}

.wrapper{
	max-width: 1607px;
	margin: 0 auto;
	padding: 0 15px;
}

.header__menu-a{
	font-style: italic;
	font-weight: 600;
	font-size: 25px;
	color: #fff;
}

.header__menu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}

.header__menu-logo img{
    max-width: 70%;
}

.header__menu-btn{
font-style: italic;
font-weight: 600;
font-size: 21px;
color: #000;
background-color: #FFA103;
padding: 25px 41px;
border-radius: 20px;
}

.promo{
	margin-bottom: 80px;
	margin-top: 63px;
}

.top-item{
	display: flex;
	align-items: center;
	font-style: italic;
	font-weight: 400;
	font-size: 30px;
	text-align: center;
	color: #FFFFFF;
	width: 500px;
	height: 301px;
	border: 1px solid #FFA103;
	border-radius: 20px;
	text-align: center;
	padding: 15px;
}

.promo-top, .promo-bot{
	display: flex;
	justify-content: space-between;
}

.promo-mid{
	font-style: italic;
	font-weight: 800;
	font-size: 45px;
	color: #FFA103;
	text-align: center;
	margin: 50px 0px;
}

.content-p{
	font-style: italic;
	font-weight: 400;
	font-size: 30px;
	line-height: 36px;
	color: #979696;
	margin-bottom: 25px;
}

.content-p:last-child{
	margin-bottom: 60px;
}

.content-p span{
	color: #ffa103;
}

.content-preimg{
	position: relative;
}

.content-preimg:before{
	content: "";
	position: absolute;
	background-image: url(img/tehob/p.png);
	background-repeat: no-repeat;
	width: 15px;
	height: 67px;
	left: -50px;
	display: inline-block;
}

.form-wrapper{
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

.form{
	background-color: #000;
	background-image: url(img/formbg.png);
	background-repeat: no-repeat;
	padding: 70px 0px;
	background-position-y: 15px;
}

form input{
	font-style: italic;
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 0.1em;
	color: #827C7C;
}

.rowone input{
	width: 362px;
	border-bottom: 1px solid #ffa103;
	margin-bottom: 70px;
	outline: none;
}

.rowtwo input{
	width: 494px;
	border-bottom: 1px solid #ffa103;
	margin-bottom: 70px;
	outline: none;
}

.rowthree{
	display: flex;
	justify-content: space-between;
}

.rowthree input{
	width: 758px;
	border-bottom: 1px solid #ffa103;
	padding-bottom: 70px;
	outline: none;
}

.form-btn{
	display: inline-block;
	font-style: italic;
	font-weight: 500;
	font-size: 27px;
	height: 50px;
	color: #FFA103;
	padding: 8px 95px;
	border: 1px solid #ffa103;
	align-self: flex-end;
}

.form-approve{
	display: flex;
	align-items: center;
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.1em;
	color: #FFA103;
	margin-top: 45px;
}

#sign{
  width: 45px;
  height: 35px;
  border: 1px solid #ffa103;
  background-color: transparent;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  margin-right: 45px;
}

#sign:checked {
  background-color: transparent;
}

#sign:focus {
  outline: none;
}

#sign::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 10px;
  border-left: 2px solid #ffa103;
  border-bottom: 2px solid #ffa103;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

#sign:checked::after {
  opacity: 1;
}

@media (max-width: 1400px){
	.header__menu-a{
		font-size: 30px;
	}
	.header__menu-btn{
		font-size: 28px;
	}
	.header__menu-logo img{
		width: 85%;
	}
	form input{
		font-size: 20px;
	}
	.form-btn{
		font-size: 22px;
	}
	#sign {
    width: 35px;
    height: 30px;
  }
}

@media (max-width: 1200px){
	.header__menu-a{
		font-size: 24px;
	}
	.header__menu-btn{
		font-size: 22px;
	}
	.header__menu-logo img{
		width: 80%;
	}
	form input{
		font-size: 17px;
	}
	.form-btn{
		font-size: 18px;
	}
	#sign {
    width: 30px;
    height: 25px;
  }
  .form {
    background-position-x: center;
  }
}

@media (max-width: 1000px){
	.top-item{
		width: 45%;
	}
	.form{
		text-align: center;
	}
	.rowone input, .rowtwo input, .rowthree input{
		width: 90%;
		text-align: center;
	}
	.rowthree{
		display: block;
	}
	.rowthree a{
		margin-top: 35px;
		margin-bottom: 30px;
	}
	.form-btn{
		font-size: 24px;
	}
	.form-approve {
    margin: 0 auto;
    width: 70%;
  }
  #sign {
     width: 50px;
     height: 30px;
  }
}

@media (max-width: 800px){
	.top-item{
		font-size: 24px;
	}
	.promo-mid{
		font-size: 38px;
	}
	.content-p{
		font-size: 24px;
	}
  .form{
  	background-position-y: 0px;
  }
}

@media screen and (max-width: 600px) {
    .content-p{
		font-size: 22px;
	}
	.promo-mid{
		font-size: 33px;
	}
	.top-item{
		font-size: 20px;
	}
  #sign {
    width: 95px;
  }
	.header__menu {
		flex-direction: column;
		gap: 15px;
	}
	.header__menu-logo{
	    text-align: center;
	}
	.header__menu-btn {
		width: 100%;
		text-align: center;
		font-size: 20px;
		padding: 12px 20px;
	}
	
	.header__menu-a {
		order: 3;
		font-size: 20px;
	}
	
	.promo {
		min-height: 400px;
	}
	
	.promo-title {
		font-size: 26px;
		line-height: 32px;
		padding-top: 80px;
	}
	
	.promo-text {
		font-size: 20px;
		line-height: 26px;
		margin-top: 40px;
	}
	
	.radio-title {
		font-size: 22px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	
	.content-item {
		font-size: 18px;
		line-height: 24px;
		min-height: 200px;
		padding: 50px 15px 15px 15px;
		background-position: 15px 15px;
		background-size: 30px 30px;
	}
	.content-item:last-child{
		margin-bottom: 30px;
	}
	.content-p,
	.content-li,
	.content-li span {
		font-size: 18px;
		line-height: 24px;
	}
	
	.examp-item__img {
		width: 100%;
		max-width: 400px;
	}
	
	.examp-item__text {
		font-size: 20px;
		line-height: 26px;
	}
	
	.form-btn {
		width: 100%;
		text-align: center;
		padding: 12px 20px;
		height: auto;
	}
	
	.form-approve {
		font-size: 11px;
		line-height: 14px;
		gap: 10px;
	}
	
	#sign {
		width: 35px;
		height: 30px;
	}
}

@media (max-width: 500px){
	.header__menu-btn{
		font-size: 18px;
	}
	.top-item {
        margin-bottom: 35px;
        width: 100%;
	}
	.top-item:last-child{
	    margin-bottom:0;
	}
	.promo-top, .promo-bot{
	    flex-direction: column;
	}
	.header__menu{
	    flex-direction: column;
	}
	.header__menu-logo{
	    text-align: center;
	    margin-bottom: 15px;
	}
}

@media (max-width: 400px){
    .header__menu{
	    flex-direction: column;
	}
	.header__menu-logo{
	    text-align: center;
	    margin-bottom: 15px;
	}
	.top-item{
		width: 100%;
		margin-bottom: 25px;
	}
	.header__menu-logo{
    text-align: center;
	}
	.header__menu{
		flex-direction: column;
		justify-content: center;
	}
	.header__menu-btn {
    font-size: 24px;
  }
  .promo-top, .promo-bot{
  	flex-direction: column;
  }
  .promo{
  	margin-bottom: 30px;
  }
  .content-p{
  	text-align: center;
  }
}

@media screen and (max-width: 375px) {
	.header__menu-btn {
		font-size: 18px;
		padding: 10px 15px;
	}
	
	.header__menu-a {
		font-size: 18px;
	}
	
	.promo-title {
		font-size: 22px;
		line-height: 28px;
		padding-top: 60px;
	}
	
	.promo-text {
		font-size: 18px;
		line-height: 24px;
	}
	
	.radio-title {
		font-size: 20px;
	}
	
	.content-item {
		font-size: 16px;
		line-height: 22px;
		min-height: 180px;
	}
	
	.content-p,
	.content-li,
	.content-li span {
		font-size: 16px;
		line-height: 22px;
	}
	
	.examp-item__text {
		font-size: 18px;
		line-height: 24px;
	}
	
	.form {
		padding: 30px 0;
		margin-top: 40px;
	}
	
	form input {
		font-size: 18px;
	}
	
	.form-btn {
		font-size: 22px;
	}
	
	#sign {
		width: 30px;
		height: 25px;
	}
}






/* ========== КНОПКА "НАВЕРХ" - ОРАНЖЕВАЯ СТРЕЛКА ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FF8C00, #FFA726);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Показываем кнопку при прокрутке */
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Эффект при наведении */
.scroll-top-btn:hover {
    background: linear-gradient(135deg, #FF7700, #FFA040);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

/* Эффект при нажатии */
.scroll-top-btn:active {
    transform: scale(0.95);
    transition: 0.05s linear;
}

/* Стили для стрелки */
.scroll-top-arrow {
    width: 26px;
    height: 26px;
    transition: transform 0.2s ease;
}

/* Стрелка слегка поднимается при наведении на кнопку */
.scroll-top-btn:hover .scroll-top-arrow {
    transform: translateY(-3px);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-top-arrow {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-top-arrow {
        width: 20px;
        height: 20px;
    }
}