body, html{
	font-family: 'Inter', sans-serif;
	margin: 0; padding: 0;
	background-color: #212121;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow-x: hidden;
	font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}
body.landing{
	background-color: #051524;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}
::-webkit-scrollbar-corner {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    min-height: 20px;
    border: solid transparent;
    border-width: 1px 3px;
    border-radius: 6px;
    background-clip: content-box;
    box-shadow: inset 0 0 0 10px rgba(0,0,0,0.45);
}

.btn,
.btn:focus,
.btn:active{
    outline: none !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}

* {
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a{
	color: #fec76f; 
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
}
a:hover{
	color: #f68800;
}

p, li{
	font-size: 16px;
}

.breadcrumb{
	padding: 0; margin: 0;
}
.breadcrumb > li{
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 400;
}

.container-fluid{
	max-width: 1400px;
}

header{
	padding: 18px 0 18px 0;
}
header.default{
	background-color: #171717;
	-webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
}	
	.logotype img{
		padding: 0 10px;
	}
	.header-line{
		background-color: #051524;
	}
	.header-line .logotype img{
		padding: 0 10px;
	}
	.header-line .btn-action{
		padding-top: 6px;
	}
	.nav-menu ul{
		padding: 0; margin: 0;
		list-style: none;
		text-align: right;
	}
	.nav-menu li, .nav-menu a{
		display: inline-block;
	}
	.nav-menu a{
		padding: 19px 40px 18px 0;
		text-decoration: none !important;
		-webkit-transition: all .1s ease-in;
		transition: all .1s ease-in;
		color: rgba(255,255,255,0.65);
		font-size: 16px; font-weight: 600;
	}
	.nav-menu a:hover, 
	.nav-menu a:focus {
	    opacity: 1;
	    -webkit-transition: opacity .15s ease-in;
	    transition: opacity .15s ease-in;
	    color: rgba(255,255,255,1);
	}
	.nav-menu .current-menu-item a{
		color: rgb(254,199,111,1);
	}
	.nav-menu .sub-menu{
		display: none;
		position: absolute;
	}
	.nav-menu li:hover .sub-menu{
		display: block;
		background-color: #1762a8;
	}
	.nav-menu .sub-menu a,
	.nav-menu .sub-menu li{
		display: block;
		min-width: 200px;
		color: #000;
	}
	.nav-menu .sub-menu a{
		padding: 10px 15px 0 20px;
		font-size: 15px;
	}
	.nav-menu .sub-menu{
		padding-bottom: 15px;
	}

header.landing{
	background-color: #051524;
}
	header .nav-menu{
		margin-top: 18px;
	}
	header .nav-menu a{
		padding: 0 32px 0 0;
	}

header.landing .nav-menu a{
	color: #ffdf4d;
}
header.landing .nav-menu a:hover,
header.landing .nav-menu a:focus{
	color: rgba(133, 125, 55, 0.65);
}

.action-box{
	margin-top: 8px;
}

.headline{
	display: inline-block;
	margin-bottom: 25px;
}
	.headline:after{
		content: '';
		width: 75%;
		height: 2px;
		background-color: #1966b0;
		display: block; margin-top: 7px;
	}

.btn i{
	margin-right: 7px;
}
	.btn-action{
		background-color: #e5a937;
		color: #040d23 !important;
		font-weight: 600;
		padding: 10px 25px;
		font-size: 16px;
	}
	.btn-action.btn-lg{
		padding: 25px 35px;
		font-size: 20px;
	}
	.btn-action:hover{
		background-color: rgba(246,136,0,1);
		color: #fff !important;;
	}

	.btn-dashboard{
		background-color: transparent;
		color: #e5a937 !important;
		border: 2px solid #e5a937;
		font-weight: 600;
		padding: 6px 10px;
		font-size: 20px;
		text-align: center;
	}
	.btn-dashboard i{
		margin: 0;
	}
	.btn-dashboard:hover{
		border: 2px solid rgba(246,136,0,1);
		background-color: rgba(246,136,0,1);
		color: #fff !important;;
	}

	.btn-visual{
		background-color: transparent;
		color: #e5a937;
		font-weight: 600;
		padding: 22px 35px;
		font-size: 20px;
		border: 3px solid #e5a937;
		text-align: center;
	}
	.btn-visual:hover{
		color: #f68800;
		border: 3px solid #f68800;
	}

section.visual{
	text-align: center;
	overflow: hidden;
}
	section.visual .container{
		background-image: url('/assets/images/visual.webp');
		background-position: -75px 0px;
		background-repeat: no-repeat;
		background-size: contain;
	}
	@media(max-width:820px) 
	{
		section.visual{
			padding: 10px 0px !important;
		}
		section.visual .container{
			background-image: none;
		}
	}
	section.visual .visual-area{
		padding: 50px 0px;
	}
	section.visual i{
		font-size: 5em;
		color: #e38000;
	}
	section.visual h1{
		margin: 15px 0 20px 0;
		font-weight: 700;
		color: #ffffff;
		font-size: 56px;
    	line-height: 60px;
	}
	section.visual h1 span{
		font-size: 42px;
    	line-height: 52px;
    	display: block;
    	font-weight: 200;
	}
	section.visual h2{
		color: #ffffff;
		font-size: 18px;
		line-height: 26px;
		opacity: 0.75;
		max-width: 30vw;
		margin: 0 auto;
		font-weight: 100;
	}
	section.visual .action-box{
		margin-top: 30px;
	}

section.visual .container{
	position: relative;
}
/* section.visual .container:before{
	content: ''; display: block;
	width: 669px; height: 755px;
	position: absolute;
	background-image: url('../images/visual.webp');
	background-size: contain;
	background-repeat: no-repeat;
	overflow: visible;
	top: 0; left: 0;
} */

@media(max-width:820px) 
{
}

section.default{
	padding: 60px 0;
	background-color: #051524;
}
	section.default h1{
		font-size: 44px;
		margin: 10px 0 25px 0;
		font-weight: bold;
	}
	section.default p{
		font-size: 20px;
		line-height: 26px;
		font-weight: 300;
	}

	section.default div.title{
		color: #e5a937;
		font-size: 18px;
		font-weight: bold;
	}

.gd-list{

}
	.gd-line{
		margin-bottom: 25px;
	}
	.gd-line i{
		display: inline-block;
		float: left;
		font-size: 40px;
		min-width: 80px;
		text-align: center;
		margin-bottom: 30px;
	}

section.process{
	background-color: #fbeec1;
}

section.page,
section.post,
section.blog,
section.item{
	padding: 60px 0 80px;
	min-height: 600px;
}
	section.page h1,
	section.post h1,
	section.blog h1,
	section.item h1{
		color: #f1f1f1;
		font-size: 38px;
		line-height: 38px;
		margin: 15px 0 25px 0;
		font-weight: bold;
	}
	section.page h1 sup{
		font-size: 13px;
		top: -1.2em;
		margin-left: 5px;
	}
	section.page article{
		padding-left: 0;
	}

.services-grid{
	margin-top: 15px;
}
.service-item{
	width: 33.33%;
}
.service-content{
	margin: 7px;
	background: rgba(255,255,255,0.1);
	box-shadow: 0 1px 3px rgba(0,0,0,.13);
	padding: 40px 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}	
	.service-title{
		margin-bottom: 7px;
	}
	.service-title,
	.service-title a{
		color: #c8c5c5;
		font-size: 20px;
		text-decoration: none !important;
		font-weight: 600;
		line-height: 24px;
	}
	.service-title a:hover{
		color: #276968;
	}
	.service-text{
		font-size: 16px;
		color: #a9a9a9;
	}

/* Контейнер статьи */
.article-text {
	padding: 1vh 5vw 5vh 5vw;
	font-size: 18px;
	line-height: 1.75;
	color: #E5EAF0; /* основной текст для тёмной темы */
}

	/* Абзацы */
	.article-text p {
		margin: 0 0 1.2em;
		color: #E5EAF0;
	}

	/* Вторичный текст (если встречается в контенте) */
	.article-text em,
	.article-text i,
	.article-text small {
		color: #9AA5B5;
	}

	/* Ссылки */
	.article-text a {
		color: #FFCA63;
		text-decoration: underline;
		text-underline-offset: 2px;
	}
	.article-text a:hover {
		color: #ffd98a;
		text-decoration: none;
	}

	/* Заголовки внутри поста */
	.article-text h2,
	.article-text h3,
	.article-text h4,
	.article-text h5 {
		font-weight: 700;
		line-height: 1.4;
		color: #F2F6FC;
		margin: 1.6em 0 0.7em;
	}

	/* Размеры */
	.article-text h2 { font-size: 1.9em; }
	.article-text h3 { font-size: 1.45em; }
	.article-text h4 { font-size: 1.25em; }

	/* Списки */
	.article-text ul,
	.article-text ol {
		margin: 0 0 1.2em 1.5em;
		padding: 0;
		color: #E5EAF0;
	}

	.article-text ul {
		list-style: disc;
	}

	.article-text ol {
		list-style: decimal;
	}

	.article-text li {
		margin: 0.4em 0;
		line-height: 1.6;
	}

	/* Вложенные списки */
	.article-text li ul,
	.article-text li ol {
		margin-top: 0.3em;
	}

	/* Цитаты */
	.article-text blockquote {
		margin: 1.6em 0;
		padding: 1em 1.4em;
		border-left: 3px solid #223952;
		background: #0e253c;
		color: #C6D0DB;
		font-style: italic;
		border-radius: 4px;
	}

	/* Картинки */
	.article-text img {
		padding: 6px;
		background: #0e253c;
		box-shadow: 0 1px 4px rgba(0,0,0,.35);
		max-width: 100%;
		height: auto !important;
		display: block;
		margin: 1.3em auto;
		border-radius: 4px;
	}

	/* WP: выравнивание слева */
	.article-text img.alignleft {
	    float: left;
	    margin: 0.4em 1.2em 1.2em 0;
	    display: inline-block;
	}

	/* WP: выравнивание справа */
	.article-text img.alignright {
	    float: right;
	    margin: 0.4em 0 1.2em 1.2em;
	    display: inline-block;
	}

	/* WP: выравнивание по центру */
	.article-text img.aligncenter {
	    display: block;
	    margin-left: auto;
	    margin-right: auto;
	}

	/* Чтобы float-картинки не ломали верстку */
	.article-text::after {
	    content: "";
	    display: block;
	    clear: both;
	}

	/* Таблицы */
	.article-text table {
		width: 100%;
		border-collapse: collapse;
		margin: 1.7em 0;
		font-size: 0.95em;
		color: #E5EAF0;
	}

	.article-text th,
	.article-text td {
		border: 1px solid #203040;
		padding: 0.7em 1em;
	}

	.article-text th {
		background: #102435;
		font-weight: 600;
	}

	/* Код */
	.article-text code {
		background: #1d2e42;
		padding: 0.2em 0.4em;
		border-radius: 3px;
		color: #FFCA63;
	}

	.article-text pre {
		background: #1d2e42;
		color: #E5EAF0;
		padding: 1em;
		border-radius: 6px;
		overflow: auto;
		margin: 1.6em 0;
	}

.post-navigation .pull-left {
    width: 45%;
    text-align: center;
}
.post-navigation .pull-right {
    width: 45%;
    text-align: center;
}

.blog-grid{
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.blog-item{
    width: 33.33%;
}

	.blog-content{
	    margin: 7px;
	    background: #1d1f23; /* тёмно-серый, приятный */
	    box-shadow: 0 2px 6px rgba(0,0,0,.35);
	    border-radius: 6px;
	    overflow: hidden;
	    padding: 0;
	    display: flex;
	    flex-direction: column;
	    border: 1px solid #2a2d31; /* лёгкий контур, как в премиум темах */
	}

	/* Картинка сверху */
	.blog-thumb img{
	    width: 100%;
	    height: 220px;
	    object-fit: cover;
	    display: block;
	}

	/* Внутренняя часть */
	.blog-inner{
	    padding: 15px 20px 18px;
	}

	/* Заголовок */
	.blog-title{
	    margin: 0;
	}

	/* Заголовок — светлый */
	.blog-title a{
	    color: #f3f3f3;
	    font-size: 18px;
	    font-weight: 600;
	    line-height: 18px;
	    text-decoration: none !important;
	}

	.blog-title a:hover{
	    color: #e7a837; /* твой фирменный акцент */
	}

/* Адаптив */
@media(max-width: 768px){
    .blog-item{ width: 50%; }
}

@media(max-width: 480px){
    .blog-item{ width: 100%; }
}

.page-submenu{

}

footer.default{
	background-color: #171717;
	padding-top: 15px;
}
footer.landing{
	background-color: #051721;
}
	.ft-menu{
		padding: 0 0 40px 0;
	}
		.ft-menu h5{
			color: #868e96;
			text-transform: uppercase;
			font-size: 16px;
			font-weight: bold;
			margin: 25px 0 15px 0;
		}
		.ft-menu ul{
			padding: 0; margin: 0;
			list-style: none;
		}
		.ft-menu ul li{
			display: block;
			margin-top: 8px;
		}
		.ft-menu ul li:before{
			content: '-';
			display: inline-block;
			margin-right: 7px;
		}
		.ft-menu ul a{
			color: #dee2e6;
			font-size: 14px;
			text-decoration: none;
			font-weight: 500;
		}
		.ft-menu ul a:hover{
			color: #ffffff;
		}
		.ft-cline{
			color: #dee2e6;
			font-size: 14px;
			position: relative;
			padding-left: 25px;
			margin-top: 15px;
		}
		.ft-cline sup{
			margin-left: 7px;
		}
		.ft-cline:before{
			content: '';
			font-family: "Font Awesome 5 Free";
			font-weight: 900;
			position: absolute;
			top: 0; left: 0;
		}
		.ft-cline.address:before{
			content: '\f3c5';
		}
		.ft-cline.phones:before{
			content: '\f879';
		}
		.ft-cline.email:before{
			content: '\f0e0';
		}
		.ft-cline a{
			color: #dee2e6; display: inline-block;
			display: block; margin-bottom: 4px;
			text-decoration: none;
		}
		.ft-cline.phones a span{
			min-width: 40px;
			display: inline-block;
			text-align: center;
			color: #ffffff;
		}
		.map-link a{
			border-bottom: 1px dotted;
			display: inline-block; 
			padding-bottom: 3px;
		}

		.ft-links{
			padding-top: 7px;
		}
		.ft-links a{
			background-color: #404040;
			font-size: 22px;
			padding: 10px 15px;
			color: #ffffff; margin-right: 7px;
			text-decoration: none;
		}
		.ft-links a:hover{
			color: #CCC;
		}

	.ft-copy{
		background-color: #000;
		padding: 15px 0;
		color: #868e96;
		font-size: 13px;
	}

	.landing .ft-copy{
		background-color: #03141d;
	}

#checkme,
#callback{
	margin-top: 30px;
	text-align: center;
}
	#checkme input,
	#callback input{
		height: auto;
		padding: 13px 15px;
		margin-bottom: 10px;
		font-size: 14px;
	}
	#checkme h4,
	#callback h4{
		margin-bottom: 15px;
		color: #2d2d43;
		font-weight: bold;
	}
	#checkme button,
	#callback button{
		margin-bottom: 15px;
	}
	#checkme a,
	#callback a{
		color: #000;
		text-decoration: none !important;
		font-weight: bold;
	}

#xs-menu{
	margin-top: 70px;
}
	#xs-menu ul{
		list-style: none;
		padding: 0; margin: 0;
	}
	#xs-menu li, #xs-menu a{
		display: block;
	}
	#xs-menu a{
		padding: 5px 10px;
		color: #777;
		border-bottom: 1px dashed #CCC;
		margin-bottom: 5px;
		font-size: 18px;
		text-decoration: none !important;
	}
	#xs-menu a:hover{
		color: #000;
	}

.grecaptcha-badge{
	right: inherit !important;
	left: -999px !important;
}

#to-whatsapp_wrapper {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
#to-whatsapp_wrapper a {
  display: block;
  background-color: #2cb742;
  padding: 15px 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
}
#to-whatsapp_wrapper i.to-whatsapp-icon {
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 23px;
  background: url('/assets/images/whatsapp-logo.svg') no-repeat center left/auto 23px;
}
#to-whatsapp_wrapper p {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  margin: 0 0 0 10px;
  color: #fff;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #to-whatsapp_wrapper {
    display: none;
  }
}

.breadcrumb-item:after{
	content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 6px;
    width: 10px;
}
.breadcrumb-item.active:after{
	display: none;
}
.breadcrumb {
    font-size: 12px;
    font-weight: 300;
}
.breadcrumb a{
	text-decoration: none !important;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}

.mt-30{
	margin-top: 30px;
}

.owl-nav .owl-prev, 
.owl-nav .owl-next {
	position: absolute;
    top: 50%; margin-top: -20px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    opacity: 0.45;
}
.owl-nav .owl-prev span, 
.owl-nav .owl-next span{
    display: block;
    font-size: 80px;
}
.owl-nav .owl-next{
    right: -35px;
    opacity: 1;
}
.owl-nav .owl-prev{
    left: -35px;
    opacity: 1;
}
.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover{
    color: #555555 !important;
}

.owl-dots{
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}
.owl-dot{
    outline: none;
}
.owl-dot span{
    display: inline-block;
    margin-right: 7px;
    background-color: rgba(246,136,0,0.35);
    width: 20px; height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.owl-dot.active span
{
    background-color: rgba(246,136,0,1);
}

/*.owl-nav {
    position: relative;
    width: 100%; height: 10px;
}
    .owl-prev span,
    .owl-next span{
        color: #000 !important;
        font-size: 9em !important;
        outline: none !important;
        position: absolute;
        z-index: 9999; 
        bottom: 140px;
        opacity: 0.45;
    }
    .owl-prev span{
        left: 10px;
    }
    .owl-next span{
        right: 10px;
    }*/

#achievement{
	background: #061a2a;
}
	#achievement h1{
		color: #ffffff;
	}
	.ach-item{
		margin: 30px;
		text-align: center;
	}
	.ach-item--value{
		margin-top: 35px;
		font-weight: bold;
		font-size: 46px;
		color: #ffffff;
	}
	.ach-item--title{
		margin-top: 15px;
		color: #ffffff;
	}

#dv{
	background-color: #051524;
}
	.dv-image{
	
	}
	.dv-image .hint{
		display: inline-block;
		background-color: rgba(5,21,36,0.5);
		-webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
		box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		position: absolute;
		top: -25px; left: -10px;
		font-size: 33px;
		color: #f8bd25;
		padding: 25px 15px;
		text-align: center;
		font-weight: bold;
	}
	.dv-image .hint span{
		font-weight: normal;
		margin-top: 10px;
		color: #777;
		font-size: 10px;
		line-height: 12px;
		display: block;
	}

	#dv ul.options{
		list-style: none;
		margin: 0; padding: 0;
		display: flex;
	}
	#dv ul.options li{
	    width: 100%;
	    margin-top: 40px;
	    font-size: 13px;
	    line-height: 20px;
	    font-weight: 100;
	}
	#dv ul.options li strong{
		display: block; margin-bottom: 8px;
		font-size: 20px; line-height: 20px;
	}
	#dv ul.options li i{
		text-align: center;
		min-width: 60px; min-height: 100px;
		float: left; margin-right: 15px;
		font-size: 40px;
	}
	#dv .btn{
		margin-top: 50px;
		padding: 15px 30px;
		font-size: 15px;
	}

.options-flex {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 40px; /* вертикаль / горизонталь */
}

	.options-flex li {
	    display: flex;
	    align-items: flex-start;
	    gap: 12px;
	    width: calc(50% - 20px); /* 2 элемента в ряд */
	    font-size: 14px; font-weight: 100;
	    line-height: 1.4;
	}

	.options-flex i {
	    font-size: 24px;
	    margin-top: 3px;
	    color: #155592; /* можешь поменять */
	    min-width: 30px;
	    text-align: left;
	}

	.options-flex strong {
	    display: block;
	    margin-bottom: 2px;
	    font-size: 18px; font-weight: 600;
	}

/* Мобильная версия */
@media (max-width: 767px) {
    .options-flex li {
        width: 100%; /* один за другим */
    }
}


#iv{
	background-color: #061a2a;
}
#sv{

}

	#sv img{
		border-radius: 24px 24px 0px 0px;
	}

.package-item{
	margin: 30px 15px;
	-webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: auto;
}
	.package-title{
		background-color: #CCC;
		padding: 15px 20px;
		font-weight: bold;
		color: #ffffff;
		font-size: 25px;
	}
	.package-title.w-1{
		background-color: #276968;
	}
	.package-title.w-2{
		background-color: #1a4645;
	}
	.package-title.w-3{
		background-color: #0b242b;
	}
	.package-price{
		font-size: 24px;
		font-weight: bold;
		padding: 20px 0 25px 0;
		text-align: center;
	}

@media(min-width:1024px) 
{
	.packages-carousel{

	}
		.packages-carousel:hover .package-item{
			opacity: 0.85;

		}

	.package-item{
		-webkit-transition: all .1s ease-in;
	    transition: all .1s ease-in;
	}
		.package-item:hover{
			opacity: 1 !important;
			transform: scale(1.015);
		}

}

.package-line{
	padding: 10px;
	background-color: #1f3040;
}
.package-line:nth-child(even)
{
	background-color: #273745;
}
	.package-line div{
		text-align: center;
	}
	.package-line div.var{
		font-size: 13px; 
		line-height: 16px;
		font-style: normal;
		color: #fff;
		margin-bottom: 5px;
		opacity: 0.75;
		margin-top: 7px;
	}
	.package-line div.var span{
		display: block; font-size: 11px;
	}
	.package-line div.val{
		font-weight: bold;
		font-size: 16px;
		line-height: 18px;
		min-height: 30px;
	}
	.package-line .fa-info-circle{
		color: #e5a937;
	}
	.package-line div.val span{
		display: block;
		font-size: 10px;
		font-weight: normal;
	}

	.package-line .fa-times,
	.package-line .fa-check{
		font-size: 26px;
		font-weight: bold;
		display: block;
		margin-top: 5px;
	}
	.package-line .fa-times{
		color: #f68800;
	}
	.package-line .fa-check{
		color: #276968;
	}

#about{
}
	#about h1{
		font-weight: normal;
	}
	#about h1 span{
		font-weight: bold;
	}

#why{
}
	#why h1{
		margin-bottom: 50px;
	}

.why-item{
	position: relative;
}
	.why-image {
	    position: absolute;
	    padding: 20px 18px;
	    background-color: #051524;
	    top: 50%;
	    margin-top: -75px;
	    font-size: 26px;
	    border-radius: 50%;
	    background-color: #0b242b;
	    color: #ffffff;
	}
	.why-text{
		padding: 20px 30px 20px 60px;
		margin: 0 20px 0 40px;
	}
	.why-text span{
		font-weight: bold;
		font-size: 21px;
		display: block;
		margin-bottom: 15px;
	}
	.why-text p{
		font-size: 16px !important;
	}

#chat{
	background: #0F1B2B;
	background: linear-gradient(100deg, #162A40 10%, #1C364F 100%);
	position: relative; padding: 0;
}
	#chat .container{
		background-image: url('/assets/images/chat.webp');
		background-repeat: no-repeat;
		background-size: contain;
		background-position: right center;
		padding-top: 60px; 
		padding-bottom: 60px;
	}
	#chat h1{
		margin: 0; padding: 0;
	}
	#chat .btn{
		margin-top: 15px;
	}

#review{
	background-color: #061a2a;
}
	.review-item{
		text-align: center;
		margin: 30px 15px;
		-webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
	    box-shadow: 0 0 2px 0 rgba(0,0,0,.1), 0 2px 6px 0 rgba(0,0,0,.1);
	    background-color: #1f3040;
	    border-radius: 6px;
	}
	.review-item p{
		font-size: 16px !important;
		padding: 20px 30px;
		min-height: 100px;
	}
	.review-item blockquote{
		border: none;
	}
	.review-item a{
		color: #f68800;
		display: block; margin-bottom: 30px;
		text-decoration: none;
		font-weight: bold;
		font-size: 22px;
		font-style: normal;
	}
	.review-item a:hover{
		color: #f68800;
	}
	.review-item i{
		margin-right: 7px;
	}
	/* .review-item{
		
		
	    border-radius: 4px;
	    overflow: auto;
	} */

.popup{
	position: relative;
    background: #1f3040;
    padding: 20px;
    width: auto;
    max-width: 350px;
    margin: 20px auto;
    border-radius: 12px;
}
	.popup .title{
		font-size: 26px;
		font-weight: bold;
		text-align: left;
		margin-bottom: 20px;
	}
	.popup .title i{
		margin-right: 7px;
	}

	.popup .content{
		padding: 10px 20px;
	}

.popup .form-control{
	background-color: #45525e;
    border: 1px solid #1f3040;
    color: #ffffff;
}
.popup a{
	color: #e5a937 !important;
}

input.error{
	border: 1px solid #f68800 !important;
}

.box-breadcrumb{
	margin-bottom: 15px;
}

.window{
}

    .window input{
        margin-bottom: 8px;
        background-color: #1C1F23; color: #ffffff;
        border-radius: 6px;
        border: transparent;
        outline: none;
    }
    .window textarea{
        background-color: #1C1F23;
        color: #ffffff;
        border-radius: 6px;
        resize: vertical; 
        width: 100%; 
        height: auto; min-height: 100px;
        border: none; outline: none;
        padding: 8px 10px; 
    }

    .window .btn{
        background-color: #2F6EA5; color: #ffffff;
        font-weight: bold; font-size: 14px;
        padding: 12px 24px; border: none;
    }
    .window .btn:hover{
        opacity: 0.75;
    }

.window.auth{
    background-color: #171717;
    border-radius: 6px;
    overflow: auto;
    padding: 30px;
    margin-top: 15vh;
    margin-bottom: 15vh;
}
    .window.auth .title{
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }
    .window.auth input{
        margin-bottom: 8px;
        background-color: #515457; color: #ffffff;
        border-radius: 6px;
        border: transparent;
        outline: none;
    }
    .window.auth .btn{
        background-color: #e1ab37; color: #2e2c30;
        font-weight: bold; font-size: 14px;
        padding: 12px 24px;
    }
    .window.auth .btn:hover{
        opacity: 0.75;
    }

    .window.linker{
        padding: 24px 12px;
        text-align: center;
    }
    .window.linker a{
        color: #fff; font-size: 12px;
    }
    .window.linker a i{
        margin-right: 5px;
    }