/* ==================== INCLUDE FONTS ==================== */

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Light.woff2") format("woff2"),
		url("../fonts/Montserrat-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
		url("../fonts/Montserrat-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Medium.woff2") format("woff2"),
		url("../fonts/Montserrat-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Bold.woff2") format("woff2"),
		url("../fonts/Montserrat-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Black.woff2") format("woff2"),
		url("../fonts/Montserrat-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
}

/* ==================== RESET ==================== */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style-type: none;
}

button {
	padding: 0;
	cursor: pointer;
	border: none;
}

/* ==================== BASE ==================== */
html,
body {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat";
	font-weight: 400;
	color: #666666;
	position: relative;
}

img {
	max-width: 100%;
	height: auto;
}

/* .container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
} */
.logo {
	width: 150px;
	height: 150px;
	display: block;
}

.menu-item {
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	transition: color 0.4s ease-in;
}

.menu-item:hover {
	color: #7ac4bd;
}

.dj-megamenu-modern li a.dj-up_a {
	height: auto !important;
	font-weight: 400 !important;
	font-size: 14px !important;
	color: #fff !important;
	padding: 0 !important;
	transition: color 0.4s ease-in;
}

.dj-megamenu-modern li a.dj-up_a:hover {
	color: #7ac4bd !important;
}


.dj-megamenu-modern li a.dj-up_a>span {
	height: auto !important;
}

.page {
	overflow: hidden;
}


.item-page {
	padding-top: 150px;
	padding-bottom: 214px;
}

.section__title {
	font-size: 30px;
	font-weight: 900;
	color: #3c3c3c;
	text-transform: uppercase;
}



.page__title {
	margin-bottom: 40px;
	text-align: center;
}

.description {
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
}

.section__link {
	font-weight: 500;
	font-size: 14px;
	line-height: 26px;
	color: #282828;
	display: inline-block;
	position: relative;
	transition: all .4s ease;
}

.section__link::after {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #282828;
	position: absolute;
	right: -70px;
	bottom: 10px;
	transition: all .4s ease;
}

.section__link:hover {
	color: #7ac4bd;
}

.section__link:hover::after {
	background: #7ac4bd;
}


.btn {
	background-color: #fff;
	border: 1px solid #282828;
	padding: 22px 32px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.86;
	color: #282828;
	text-transform: uppercase;
}

/* ==================== SCROLL UP ==================== */
.scrollup {
	position: fixed;
	background: rgb(67 173 168);
	background: url(/images/decor/decor-right.png), linear-gradient(90deg, rgb(67 173 168) 0%, rgb(78 149 146) 100%);
	right: 1rem;
	bottom: -20%;
	display: inline-flex;
	padding: 0.3rem;
	border-radius: 0.25rem;
	z-index: 5;
	opacity: 0.8;
	transition: 0.4s;
}

.show-scroll {
	bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
	width: 0.6rem;
	background: #413e3e;
}

::-webkit-scrollbar-thumb {
	background: #7ac4bd;
	border-radius: 0.5rem;
}

/* ==================== HEADER ==================== */
.header {
	/* padding-top: 35px; */
	position: fixed;
	top: 35px;
	left: 0;
	width: 100%;
	z-index: 10;
	transition: 0.5s;
}
.header.header-fixed {
	top:0;
}
.header.header-fixed  .header__wrapper{
	background-color: rgba(60, 60, 60, 0.9);
	height:65px;
}

.header.header-fixed  .header__wrapper .header__logo {
	margin-top: -31px;
	width: 63px;
    height: 63px;
}

.header.header-fixed  .header__wrapper .header__nav {
	margin-top: -8px;
}

.header.header-fixed  .header__wrapper .header__phone {
	margin-top: -8px;
}

.header__wrapper {
	background-color: rgba(60, 60, 60, 0.5);
	height: 80px;
}

.header__logo {
	margin-top: -68px;
}

.header__inner {
	padding: 32px 0;
}

.header__menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dj-megamenu-modern li.dj-up {
	margin-right: 20px !important;
}

.dj-megamenu-modern li.dj-up:last-child {
	margin-right: 0 !important;
}

.header__phone-link {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 20px;
	transition: color 0.4s ease-in;
}

.header__phone-icon {
	margin-right: 9px;
	vertical-align: middle;
}

.header__phone-link:hover {
	color: #7ac4bd;
}

.header__down {
	text-align: center;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: block;
	margin: 0 auto;
	width: 25px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 25px;
	cursor: pointer;
}

.header__down::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 11px;
	background: #fff;
	border-radius: 50%;
	top: 5px;
	animation: 1.5s scroll cubic-bezier(0.65, -0.55, 0.25, 1.5) infinite;
}

@keyframes scroll {
	0% {
		opacity: 0;
		transform: translateY(0) scale(0.5);
	}

	10% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: translateY(30px) scale(0.5);
	}
}

.header__slider {
	position: relative;
	/* width: 100%;
  height: 100vh; */
}

.slider__wrapper {
	position: relative;
	height: 100%;
	width: 100%;
}

.slide-item {
	height: 100%;
	width: 100%;
}

.header__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* ==================== MAIN ==================== */
/* ==================== SLIDER ==================== */
div#n2-ss-3 .n2-style-1b63db3aa0abdb8edd4ab4e9709ae8df-dot {
	border-radius: 0 !important;
	margin: 8px !important;
	height: 2px !important;
	width: 34px !important;
	padding: 0 !important;
	opacity: 0.5 !important;
	background-color: #999 !important;
	border: none !important;
	transition: all .4s ease-in-out !important;
}

div#n2-ss-3 .n2-style-1b63db3aa0abdb8edd4ab4e9709ae8df-dot.n2-active,
div#n2-ss-3 .n2-style-1b63db3aa0abdb8edd4ab4e9709ae8df-dot:HOVER,
div#n2-ss-3 .n2-style-1b63db3aa0abdb8edd4ab4e9709ae8df-dot:FOCUS {
	background-color: #000 !important;
	border: none !important;
}

.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
	max-width: 1200px !important;
}

/* ==================== ABOBUT ==================== */

.about {
	background: rgba(122, 196, 189, 0.1);
	padding: 140px 0 100px;
	position: relative;
}

.about__title {
	padding-left: 52px;
	position: relative;
	margin-bottom: 100px;
	position: relative;
	width: 420px;
	line-height: 0.87;
}

.about__title::after {
	content: "T";
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #999;
	font-weight: 900;
	font-size: 200px;
	text-transform: uppercase;
	position: absolute;
	top: -54px;
	left: -81px;
}

.about__description p {
	margin-bottom: 40px;
}

.about__count-num {
	font-size: 104.5px;
	font-weight: 900;
	color: #7ac4bd;
	opacity: 0;
}

.about__count-text {
	font-size: 18px;
	font-weight: 900;
	font-stretch: normal;
	line-height: 1.44;
	color: #3c3c3c;
	text-transform: uppercase;
	width: 236px;
}

/* ==================== TOURS ==================== */
.tours {
	padding-top: 84px;
	padding-bottom: 134px;
}

.tours__title {
	margin-bottom: 74px;
	text-align: center;
}

.tours__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-gap: 20px;
}

.tour__item {
	color: #fcfcfc;
	padding: 24px 21px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 380px;
	display: flex;
	flex-direction: column;
}

.tour__text {
	background-color: rgba(122, 196, 189, 0.8);
	padding: 34px 30px;
	text-align: center;
	max-height: 165px;
	height: 165px;
}

.tour__title {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	text-transform: uppercase;
}

.tour__text {
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
}

.tour__btn {
	padding: 13px 50px;
	width: 200px;
	display: block;
	margin: 24px auto 0;
	top: -20px;
	position: relative;
	transition: all 0.3s ease-in;
}

.tour__btn:hover {
	background-color: #282828;
	color: #fff;
}

.tour__item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
	padding-left: 96px;
	padding-right: 96px;
}

.tour__item:nth-child(3) {
	grid-row: span 2;
}

.tour__item:nth-child(4) {
	grid-column: span 2;
}

.tour__item:nth-child(1) .tour__text {
	padding: 28px 56px 46px;
}

.tour__item:nth-child(4) .tour__text {
	height: 106px;
}

.tour__item:nth-child(5) .tour__text .tour__btn {
	top: 4px;
}

/* ==================== VISA ==================== */
.visa {
	background-color: #eaeaec;
}

.visa__inner {
	display: flex;
}

.visa__title {
	position: relative;
	padding-top: 219px;
	padding-left: 164px;
	margin-bottom: 134px;
}

.visa__title::after {
	content: "В";
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #999;
	font-weight: 900;
	font-size: 200px;
	text-transform: uppercase;
	position: absolute;
	bottom: -99px;
	left: 21px;
}

.visa__img {
	width: 950px;
	height: 100%;
}

.visa__description {
	padding-left: 40px;
	max-width: 563px;
}

.visa__link {
	margin-top: 50px;
}

/* ==================== GALLERY ==================== */
.gallery {
	padding-top: 92px;
	padding-bottom: 60px;
}

.gallery__title {
	text-align: center;
	margin-bottom: 83px;
}

.gallery__link {
	transition: all .4s ease;
}

.gallery__link:hover {
	color: #7ac4bd;
}

div#n2-ss-5 .n2-ss-slide {
	opacity: 0.5 !important;
}

div#n2-ss-5 .n2-ss-slide.n2-ss-slide-active {
	opacity: 1 !important;
}

div#n2-ss-5 .nextend-bullet-bar .n2-bullet.n2-active {
	opacity: 1 !important;
	background-color: #282728 !important;
}

div#n2-ss-5 .n2-style-1b63db3aa0abdb8edd4ab4e9709ae8df-dot {
	border-radius: 0 !important;
	border: none !important;
	padding: 0 !important;
	width: 32px !important;
	height: 2px !important;
	background-color: #999 !important;
	opacity: 0.5 !important;
}


/* ==================== RATES ==================== */
.rates {
	padding-top: 60px;
	padding-bottom: 123px;
}

.rates__title {
	text-align: center;
	margin-bottom: 70px;
}

.rate__items {
	margin-bottom: 70px;
}

.rate__item {
	background-color: #f1f9f8;
	height: 100%;
	width: 100%;
	position: relative;
}

.rate__img-wrapper {
	width: 100%;
	min-height: 280px;
	overflow: hidden;
}

.rate__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rate__text {
	padding: 24px 13px 38px 21px;
}

.rate__name {
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 30px;
}

.rate__price {
	display: flex;
	margin-bottom: 10px;
}

.rate__person {
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.rate__sum {
	margin-left: 16px;
	font-weight: 700;
	font-size: 18px;
	color: #000000;
}

.rate__sum-add {
	font-weight: 400;
}

.rate__btn {
	padding: 13px 0;
	width: 200px;
	position: absolute;
	bottom: -27px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.4s ease-in;
}

/*.rate__video .avPlayerWrapper .avPlayerContainer .avPlayerBlock,
.rate__video .avPlayerWrapper,
.rate__video .avPlayerWrapper .avPlayerContainer
 {
	height: 100% !important;
}
.rate__video {
height: 420px;
}
*/

.rate__button {
	padding: 13px 0;
	transition: all 0.4s ease-in;
	display: block;
}

.rate__btn:hover,.rate__button:hover, .rates.blog p.readmore .btn:hover {
	background-color: #282828;
	color: #fff;
}

.rate__btn_more {
	position: initial;
	display: block;
	left: initial;
	transform: translateX(0);
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	border: solid 1px #282828;
	background-color: #7ac4bd;
}

.rates.blog {
	padding-top:200px;
	padding-bottom:200px;
}
.rates.blog .page-header h1{
	font-size: 40px;
    font-weight: 900;
    color: #3c3c3c;
    text-transform: uppercase;
	text-align: center;
    margin-bottom: 70px;
}

.rates.blog .rate__item .item-image {
	width:100%;
}

.rates.blog .rate__item .item-image img {
	width:100%;
	height: 100%;
	object-fit: cover;
}

.rates.blog p.readmore .btn {
	padding: 15px 32px;
	transition: all 0.4s ease-in;
	display: block;
}

.rates.blog .rate__item .page-header h2 {
	font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 30px;
	text-align: center;
    padding-top: 10px;
    text-transform: uppercase;
}

/* ==================== FEEDBACK ==================== */
.feedback {
	padding-top: 94px;
	padding-bottom: 84px;
	background-image: url("/images/bg/form-bg-3.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 1085px;
}

/* ==================== FOOTER ==================== */
.footer {
	background-color: rgba(60, 60, 60, 0.9);
	color: #fff;
	/*height: 150px;*/
}

.footer__name {
	padding-top: 25px;
	font-size: 10px;
	text-align: left;
	color: #fff;
	text-transform: uppercase;
}

.footer__name p {
	margin-bottom: 15px;
}

.footer__credits {
	padding-bottom: 30px;
	font-size: 10px;
	color: #fff;
}

.footer__menu-item {
	margin-bottom: 5px;
}

.footer__menu-item:last-child {
	margin-bottom: 0;
}

.footer__menu {
	padding-top: 18px;
	padding-bottom: 20px;
}

.footer__contacts {
	padding-top: 20px;
	color: #fff;
}

.footer__socials {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 20px;
}

.footer__phone {
	color: #fff;
	margin-bottom: 20px;
}

.footer__phone-icon,
.footer__email-icon {
	margin-right: 9px;
}

.footer a {
	transition: all .4s ease-in;
}

.footer a:hover {
	color: #7ac4bd;
}
/* ==================== 404 ERROR ==================== */
.error-page {
    text-align: center;
}
.home-btn {
    padding: 15px 40px;
    text-align: center;
    border: 1px solid #000;
    background: #3b3a3a;
    color: #fff !important;
    margin-top: 30px;
    display: inline-block;
    transition: all .3s ease-in-out;
    margin-bottom: 30px;
}
.home-btn:hover {
     background: #000;
}

/* ==================== RESPONSIVE ==================== */

@media(max-width:1490px) {
	.visa__title {
		padding-top: 85px;
		margin-bottom: 100px;
	}

	.visa__img {
		width: 656px;
	}
}

@media(max-width:1400px) {
	.dj-megamenu-modern li.dj-up {
		margin-right: 15px !important;
	}
}

@media(max-width:1200px) {
	.header__phone {
		display: flex;
		justify-content: flex-end;
		margin-top: 8px;
	}

	.dj-megamenu-select-dark .dj-mobile-open-btn,
	.dj-megamenu-offcanvas-dark .dj-mobile-open-btn,
	.dj-megamenu-accordion-dark .dj-mobile-open-btn {
		font-size: 30px !important;
		background: transparent !important;
	}

	.dj-megamenu-select-dark .dj-mobile-open-btn:focus,
	.dj-megamenu-select-dark:hover .dj-mobile-open-btn,
	.dj-megamenu-offcanvas-dark .dj-mobile-open-btn:hover,
	.dj-megamenu-offcanvas-dark .dj-mobile-open-btn:focus,
	.dj-megamenu-accordion-dark .dj-mobile-open-btn:hover,
	.dj-megamenu-accordion-dark .dj-mobile-open-btn:focus {
		color: #498f88 !important;
	}

	ul.dj-mobile-dark li.dj-mobileitem:hover>a,
	ul.dj-mobile-dark li.dj-mobileitem.active>a {
		background: #498f88 !important;
	}

	.header__phone,
	.header__nav {
		margin-top: 0;
	}
	.header.header-fixed .header__wrapper .header__nav {
    margin-top: -16px;
}

	.about__count-num {
		font-size: 78.5px;
	}

	.tours__title {
		margin-bottom: 50px;
	}

	.tour__title {
		font-size: 22px;
	}

	.tour__subtitle {
		font-size: 18px;
		line-height: 1.2;
	}

	.visa__img {
		margin-left: -178px;
	}

	.gallery {
		padding-bottom: 20px;
	}

	.rates {
		padding-top: 30px;
		padding-bottom: 70px;
	}
}

@media(max-width:991px) {
	.header .logo {
		width: 105px;
		height: 105px;
		margin-top: -53px;
	}

	.header__nav {
		display: flex;
		justify-content: flex-end;
		margin-top: -16px;
	}

	.header__down {
		bottom: 23px;
		width: 24px;
		height: 35px;
	}

	.header__wrapper {
		height: 60px;
	}

	.header__phone {
		margin-top: -7px;
	}

	.tours__items {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour__item {
		min-height: 280px;
	}

	.tour__item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}

	.tour__item:nth-child(3) {
		grid-row: span 1;
	}

	.tour__item:nth-child(7) {
		grid-column: span 2;
	}

	.tour__item .tour__text,
	.tour__item:nth-child(1) .tour__text {
		padding: 14px 31px 21px;
	}

	.tour__text {
		position: relative;
	}

	.tour__item:nth-child(5) .tour__text .tour__btn {
		top: initial;
	}

	.tour__btn {
		top: initial;
		position: absolute;
		transition: all 0.3s ease-in;
		left: 50%;
		bottom: -28px;
		transform: translateX(-50%);
	}
.rates.blog {
    padding-top: 160px;
    padding-bottom: 100px;
}
.rates.blog .rate__item .page-header h2 {
    font-size: 16px;
}

	.footer .logo {
		width: 105px;
		height: 105px;
		margin-top: 20px;
	}
}

@media(max-width:932px) {
	.visa__img {
		margin-left: -247px;
	}
}

@media(max-width:860px) {
	.visa__img {
		margin-left: 0;
		width: 100%;
		order: 2;
	}

	.visa__inner {
		flex-direction: column;
		gap: 20px;
	}

	.visa__description {
		padding: 0 15px;
		max-width: 100%;
	}
}


@media(max-width:780px) {
	.about {
		padding: 80px 0 90px;
	}

	.about__title {
		margin-bottom: 50px;
	}

	.about__title::after {
		font-size: 135px;
		top: -42px;
		left: -20px;
	}

	.tour__title {
		font-size: 16px;
		line-height: 1.2;
	}

	.tour__subtitle {
		font-size: 14px;
	}

	.tour__text {
		max-height: 125px;
		height: 125px;
	}

	.rate__img-wrapper {
		min-height: 260px;
	}

	.rate__text {
		padding: 0px 13px 26px 18px;
	}

	.footer {
		overflow: visible;
		height: initial;
		background-color: rgba(60, 60, 60, 1);
		position: static;
	}

	.footer .order-logo {
		order: 1;
	}

	.footer .order-copy {
		order: 4;
	}

	.footer .order-menu {
		order: 2;
	}

	.footer .order-contacts {
		order: 3;
	}

	.footer__name,
	.footer__credits {
		text-align: center;

	}
	.item-page {
    padding-top: 150px;
    padding-bottom: 61px;
}
}

@media(max-width:576px) {
	.footer__socials {
		justify-content: center;
	}

	.footer__phone,
	.footer__email {
		text-align: center;
	}
}

@media(max-width:560px) {
	.about__title {
		padding-left: 0;
		width: 100%;
	}

	.about__title::after {
		display: none;
	}

	.about__description p {
		margin-bottom: 20px;
	}

	.tours {
		padding-top: 30px;
		padding-bottom: 60px;
	}

	.tours__items {
		display: block;
	}

	.tour__item {
		margin-bottom: 20px;
		background-position: top;
	}

	.tour__item:nth-child(1) {
		padding: 0;
	}

	.tours__title {
		margin-bottom: 30px;
		font-size: 22px;
	}

	.feedback {
		padding-top: 31px;
		padding-bottom: 10px;
	}
}


@media(max-width:460px) {
	.header {
		top:0;
	}
	.header__wrapper {
		overflow: hidden;
		 background-color: rgb(60 60 60);
	}
	.header__slider {
    position: relative;
    margin-top: 60px;
}
.item-page {
    padding-top: 30px;
    padding-bottom: 80px;
}

	.header .logo {
		width: 63px;
		height: 63px;
		margin-top: -32px;
	}

	.header__phone-icon {
		margin-right: 4px;
	}

	.header__phone-link {
		font-weight: 400;
		font-size: 14px;
		color: #fff;
	}

	.header__down {
		display: none;
	}

	.about {
		padding: 45px 0 60px;
	}

	.about__count-num {
		font-size: 58.5px;
	}

	.about__count-text {
		font-size: 14px;
	}

	.about__counts .row .col-6 {
		width: 100%;
		text-align: center;
	}

	.about__count-text {
		width: 100%;
	}
	.gallery {
    padding-top: 36px;
	}
	.gallery__title {
    margin-bottom: 34px;
}

	.rates__title {
		margin-bottom: 40px;
	}

	.rate__items {
		justify-content: center;
		margin-bottom: 25px;
	}

	.rate__img-wrapper {
		min-height: 216px;
	}

	.col-rate {
		width: 80%;
	}
	.rates.blog {
    padding-top: 50px;
    padding-bottom: 80px;
}
.rates.blog .page-header h1 {
    font-size: 30px;
}

	.footer .logo {
		width: 63px;
		height: 63px;
	}

	.footer__menu-item {
		margin-bottom: 15px;
	}

	.footer__menu {
		padding-top: 18px;
		padding-bottom: 4px;
	}
}

@media(max-width:380px) {
	.about__title {
		margin-bottom: 30px;
		font-size: 23px;
	}

	.col-rate {
		width: 100%;
	}
}

@media(min-width:991px) {
	.page__title {
		font-size:40px;
		}
}