body {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 24px;
}
img {
    height: auto;
    max-width: 100%;
    width: 100%;
}
section {
    padding: 100px 0;
}
h2, h3 {
    font-weight: 700;
    color: #373737;
}
h2 {
    position: relative;
}
h2::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    height: 5px;
    width: 100px;
    margin: auto;
    background-color: #9b3232;
    z-index: 0;
}
.text-center h2::before {
    right: 0;
}
.btn {
    position: relative;
    display: inline-block;
    padding: 15px 10px;
    width: 300px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #000;   
    border-bottom: 4px solid #9b3232;  
    border-radius: 9px;    
    transition: all .5s;
    cursor: pointer;
    z-index: 1;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: .2;
    background-image: url(/theme/img/btn.webp);
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s;
    z-index: 0;
}
.btn:hover {
 
    border-bottom: 4px solid #fff;
}
.note-btn {
    font-size: 18px; 
    color: #373737;
}
header {
    position: relative;
    z-index: 0;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(9, 42, 77, 0.49);
    z-index: 1;
}
.header-wrap {
    position: relative;
    text-align: center;
}
.header-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 200px;
    color: #fff;
    z-index: 2;
}
header h1 {
    position: relative;
    font-size: 2rem;
    line-height: 1.5;
    z-index: 1;
}
header h1::before {
	content: "";
	position: absolute;
	top: -20px;
	bottom: -20px;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, .3);
	filter: blur(40px);
	z-index: -1;
}
header h1 span {
    display: block;
    font-size: 3.8rem;
    font-weight: 700;
}
.bg-color {
    background-color: #e6eff1;
}
.bg-img {
    position: relative;
    padding: 50px 0;
    z-index: 0;
}
.bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: .15;
    background-position: center;
    z-index: -1;
}
.bg-img-1::before {
    background-image: url(/theme/img/02.webp);
}
.bg-img-2::before {
    background-image: url(/theme/img/04.webp);
}
.bg-img-3::before {
    background-image: url(/theme/img/02.webp);
}
.bg-img-4::before {
    background-image: url(/theme/img/08.webp);
}
.bg-img-5::before {
    background-image: url(/theme/img/05.webp);
}
.line {
    position: relative;
    height: 42px;
    opacity: .4;
}
.line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 45%;
    margin: auto;
    background-image: url(/theme/img/ll.webp);
    background-position: left center;
    background-repeat: no-repeat;
}
.line::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45%;
    right: 0;
    margin: auto;
    background-image: url(/theme/img/lr.webp);
    background-position: left center;
    background-repeat: no-repeat;
}
.steps-item {
    position: relative;
    padding: 30px;
    text-align: center;
}
.steps-item span {
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 40px;
	font-style: italic;
	font-weight: 700;
	color: #9b3232;
}
.price {
  margin: 30px 0;
}
.price > span {
  display: inline-block;
  padding: 7px 20px;
  border: 3px solid #9b3232;
  border-radius: 9px;
}
.price > span > span {
  color: #9b3232;
  font-weight: 700;
}
.btn-fixed {
	position: fixed;
	right: 5px;
	bottom: 65px;
	z-index: 15;
}
.tg-link {
	position: relative;
	display: inline-block;
	height: 60px;
	width: 60px;
	background: url(/theme/img/telegram.webp) center / cover no-repeat;
	transition: .3s;
	z-index: 1;
}


footer {
    padding: 20px;
}
.text-center {
    text-align: center;
}
.modal-win {
    position: relative;
    padding: 30px 30px 50px;
    width: auto;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 15px;
    background-color: #fff;
    z-index: 0;
}
.modal-win h2::before {
    display: none;
}
.form-group {    
    margin: 15px 0;
} 
.form-control {
    display: block;
    height: auto !important;
    width: 100%;
    padding: 15px 20px;
    border: 0;
    border-radius: 12px;
    background: #F5F5F5;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    }
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}
.loader{color:#fff;position:fixed;box-sizing:border-box;left:-9999px;top:-9999px;width:0;height:0;overflow:hidden;z-index:999999}.loader:after,.loader:before{box-sizing:border-box}.loader.is-active{background-color:rgba(0,0,0,0.6);width:100%;height:100%;left:0;top:0}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}@keyframes blink{from{opacity:.5}to{opacity:1}}.loader[data-text]:before{position:fixed;left:0;top:50%;color:currentColor;font-family:Helvetica,Arial,sans-serif;text-align:center;width:100%;font-size:14px}.loader[data-text='']:before{content:'Loading'}.loader[data-text]:not([data-text='']):before{content:attr(data-text)}.loader[data-text][data-blink]:before{animation:blink 1s linear infinite alternate}.loader-default[data-text]:before{top:calc(50% - 63px)}.loader-default:after{content:'';position:fixed;width:48px;height:48px;border:solid 8px #fff;border-left-color:transparent;border-radius:50%;top:calc(50% - 24px);left:calc(50% - 24px);animation:rotation 1s linear infinite}.loader-default[data-half]:after{border-right-color:transparent}.loader-default[data-inverse]:after{animation-direction:reverse}
.toaster {
	position: fixed;
	transition-property: top, bottom, left, right, transform;
	transition: .3s;
	font-size: 16px;
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	line-height: 1.5;
	word-break: break-all;
	overflow: hidden;
	z-index: 20220819;
	user-select: none;
  
	max-width: 25vw;
	color: #000;
	padding: 1em 1.3em;
	border-radius: 2px;
	box-shadow: 0.2em 0 .5em rgba(0,0,0,.06);
	cursor: pointer
  }
  .text-center {
    text-align: center;
  }
  
  .toaster-right-top,
  .toaster-left-top {
	top: -6em;
  }
  .toaster-right-bottom,
  .toaster-right-top {
	right: 1em;
  }
  .toaster-right-bottom,
  .toaster-left-bottom {
	bottom: -6em;
  }
  .toaster-left-bottom,
  .toaster-left-top {
	left: 1em;
  }
  .toaster-center {
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	opacity: 0;
	transform: scale(0);
	transition: .3s
  }
  
  .toaster-right-top.toasting,
  .toaster-right-top.toast-dismissed,
  .toaster-left-top.toasting,
  .toaster-left-top.toast-dismissed {
	top: 1em
  }
  .toaster-right-bottom.toasting,
  .toaster-right-bottom.toast-dismissed,
  .toaster-left-bottom.toasting,
  .toaster-left-bottom.toast-dismissed {
	bottom: 1em
  }
  
  .toaster-left-top.toast-dismissed,
  .toaster-left-bottom.toast-dismissed,
  .toaster-right-top.toast-dismissed,
  .toaster-right-bottom.toast-dismissed {
	transition: .6s;
	animation: fadeOut .4s;
  }
  .toaster-right-top.toast-dismissed,
  .toaster-right-bottom.toast-dismissed {
	transform: translateX(30vw);
  }
  .toaster-left-top.toast-dismissed,
  .toaster-left-bottom.toast-dismissed {
	transform: translateX(-30vw);
  }
  .toaster-center.toasting {
	opacity: 1;
	transform: scale(1);
  }
  @media(max-width: 768px){
	.toaster-right-top.toast-dismissed,
	.toaster-left-top.toast-dismissed {
		transition: .8s;
		transform: translateX(0);
		transform: translateY(-50vh);
	}
	.toaster-left-bottom.toast-dismissed,
	.toaster-right-bottom.toast-dismissed {
		transition: .8s;
		transform: translateX(0);
		transform: translateY(50vh);
	}
	.toaster {
		left: 0;
		right: 0;
		width: 100vw;
		max-width: 100vw
	}
	.toaster-left-top.toasting,
	.toaster-right-top.toasting {
		top: 0
	}
	.toaster-left-bottom.toasting,
	.toaster-right-bottom.toasting {
		bottom: 0;
	}
  }