html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

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

body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: #959595;
	background-color: #fff;
}

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

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.wrapper {
	max-width: 1920px;
	margin: 0 auto;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.section-title {
	font-size: 28px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 auto 7%;
	text-transform: uppercase;
	color: #59c45a;
	text-align: center;
	position: relative;
}

.section-title:after {
	content: "";
	position: absolute;
	height: 1px;
	background-color: #c2c2c2;
	left: 50%;
	top: 125%;
	width: 150px;
	transform: translateX(-75px);
	-webkit-transform: translateX(-75px);
	-moz-transform: translateX(-75px);
	-ms-transform: translateX(-75px);
	-o-transform: translateX(-75px);
}

.section-title:before {
	content: "";
	position: absolute;
	height: 3px;
	background-color: #59c45a;
	left: 50%;
	top: 120.5%;
	z-index: 10;
	border-radius: 50px;
	width: 100px;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
	-moz-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	-o-transform: translateX(-50px);
}

.to-top {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20.5px 44px 20.5px;
	border-color: transparent transparent #59c45a66;
	display: none;
	position: fixed;
	bottom: 2%;
	right: 1%;
	cursor: pointer;
}

/* header */

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

.logo__link {
	font-size: 27.9px;
	padding: 16px 25px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	color: #59c45a;
	display: inline-block;
	border: 2.0px solid #b7b7b7;
	position: relative;
}

.logo__link:after {
	content: "travel";
	position: absolute;
	font-size: 18px;
	line-height: 1.2;
	padding: 0 15px;
	font-weight: 400;
	text-transform: uppercase;
	color: #59c45a;
	background: #fff;
	top: 85%;
	left: 25%;
}

.header-menu__ul {
	display: flex;
}

.header-menu__item {}

.header-menu__link {
	font-size: 18px;
	line-height: 1.2;
	display: inline-block;
	padding: 56px 23px;
	width: 100%;
	height: 100%;
	font-weight: 900;
	text-transform: uppercase;
	color: #474747;
	transition: background .3s;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;

}

.header-menu__link:hover {
	background-color: #59c45a;
	color: #fff;
}

/* header /*/

/* burger */
.btn-menu {
	background: none;
	border-radius: 0;
	cursor: pointer;
	display: none;
	padding: 15px;
	margin: 0 auto;
	outline: none;
	border: 0;
}

.btn-menu__box {
	display: inline-block;
	width: 40px;
	height: 24px;
}

.btn-menu__inner::before,
.btn-menu__inner::after,
.btn-menu__inner {
	background: #000;
	width: 100%;
	height: 4px;
	border-radius: 5px;
}

.btn-menu__inner {
	display: block;
	top: 50%;
	position: relative;
}

.btn-menu__inner::before,
.btn-menu__inner::after {
	content: '';
	position: absolute;
	left: 0;
}

.btn-menu__inner::before {
	top: -10px;
}

.btn-menu__inner::after {
	bottom: -10px;
}

/* burger /*/

/* intro */

.intro {
	min-height: 100vh;
	background: #287788 url('../img/intro_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 100;
}

.intro:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #316b6d70;
	z-index: -1;
}

.intro-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 70%;
	margin: 2% auto 7%;
}

.intro__title {
	font-size: 68px;
	line-height: 108px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	text-align: center;
	-webkit-box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.75);
}

.intro__desc {
	font-size: 22px;
	line-height: 38px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	display: block;
	margin-bottom: 67px;
}

.btn {
	box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.34);
	padding: 12px 45px;
	background-color: #59c45a;
	border-radius: 5.0px;
	display: inline-block;
	font-size: 26px;
	line-height: 33px;
	-webkit-font-smoothing: antialiased;
	align-self: center;
	text-transform: uppercase;
	color: #ffffff;
	transition: transform .3s ease;
	-webkit-transition: transform .3s, background .3s ease;
	-moz-transition: transform .3s, background .3s ease;
	-ms-transition: transform .3s, background .3s ease;
	-o-transition: transform .3s, background .3s ease;
}

.btn:hover {
	transform: scale(.95);
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-ms-transform: scale(.95);
	-o-transform: scale(.95);
	background-color: #1b911c;
}

.btn:active {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

/* intro /*/


/* fav */

.fav {
	margin-bottom: 5%;
	margin-top: 5%;
}

.fav-block {
	display: flex;
	flex-wrap: wrap;
}

.fav-content {
	display: flex;
	width: 50%;
	margin-bottom: 3%;
}

.fav-content__img {
	min-width: 225px;
	object-fit: cover;
}

.fav-content__img-block {
	width: 48%;
	margin: 0 4%;
}

.fav-comnent__text {
	width: 48%;
}

.fav-content__title {
	font-size: 15px;
	line-height: 25px;
	font-weight: 700;
	color: #3c3c3c;
	margin: 0px 0 8%;
}

.fav-content__desc {
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	color: #959595;
}

.service-content__icon {
	width: 100px;
	text-align:center;
	align-self:center;
}

/* fav /*/


/* service */

.service {
	display: flex;
}

.service-slide {
	width: 50%;
}

.service-slide img {
	object-fit: cover;
}

.slick-slide {
	position: relative;
}

.service-content__block {
	width: 100%;
	margin-bottom: 5%;
	display: flex;
	flex-wrap: wrap;
}

.service-content__item {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 0 3%;
	margin: 2% 0;
}

.slick-list {
	height: 100% !important;
}

.slick-dots {
	position: absolute;
	width: 100%;
	bottom: 20px;
	left: 0;
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.slick-track {
	height: 100%;
}


/* remove slick slider numbers */
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:before {
	content: '•';
	font-size: 38px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	text-align: center;
	color: #d0cdcdf2;
}

.slick-active button:before {
	color: #fff !important;
}

/* remove slick slider numbers /*/
/* service /*/

/* tours */

.tours {
	padding: 100px 0 20px;
}

.tours-block {
	display: flex;
	flex-wrap: wrap;
	margin: 6% auto;
}

.tours-item {
	width: 25%;
	margin-bottom: 2%;
	text-align: center;
}

.tours-item__img {
	max-width: 270px;
	object-fit: cover;
	height: auto;
}


/* tours /*/


/* contacts */

.contacts {
	background-color: #efeeee;
	padding: 0 0 100px;
}

.contacts__title {
	text-align: center;
	font-size: 28px;
	line-height: 43px;
	font-weight: 400;
	text-transform: uppercase;
	color: #959595;
	padding: 50px 0;
}

.contacts-block {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #c9c9c9;
}

.contacts__info {
	width: 50%;
	padding: 2% 3%;
	border-right: 1px solid #c9c9c9;
}

.contacts__form {
	width: 50%;
	padding: 2% 3%;
}

.contacts__desc {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	color: #959595;
	padding: 5% 0;
}

.contacts__address-item img {
	margin-right: 2%;
	vertical-align: sub;
}

.contacts__address-item {
	font-size: 14px;
	line-height: 32px;
	font-weight: 700;
	color: #9b9b9b;
}

.contacts-social {
	display: flex;
	margin: 5% 0;
	width: 30%;
	justify-content: space-between;
	align-items: center;
}

.social-item {
	width: 40px;
	height: 40px;
	background-color: #c9c9c9;
	border-radius: 3.0px;
	position: relative;
	transition: background .3s;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
}

.social-item img {
	position: absolute;
	top: 25%;
	left: 25%;
}

.social-item:hover {
	background-color: #1b911c;
	cursor: pointer;
}

.main-form {
	display: flex;
	flex-direction: column;
}


.main-form input[type="text"],
input[type="email"],
textarea {
	margin-bottom: 5%;
	background: transparent;
	outline: none;
	color: #757575;
	padding: 10px 5px;
	border: none;
	resize: none;
	border-bottom: 2px solid #0001;
}

.form-btn {
	margin: 5% auto;
	padding: 15px 50px;
	background-color: #59c45a;
	border-radius: 5.0px;
	font-size: 26px;
	line-height: 33px;
	color: #fff;
	font-weight: 600;
	border: none;
	cursor: pointer;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.34);
	text-transform: uppercase;
	transition: background 0.3s;
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	-ms-transition: background 0.3s;
	-o-transition: background 0.3s;
}

.form-btn:hover {
	background-color: #169718;
}

/* contacts /*/

/* footer */

.copyright {
	padding: 4% 0 2%;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	color: #030303;
	font-family: monospace;
}

.author {
	color: #59c45a;
	font-weight: 600;
}

/* footer /*/




/*<<<<<<<<<<<<<< Media Query >>>>>>>>>>>> */

@media screen and (max-width: 1170px) {
	.fav-content__img-block {
		width: 40%;
	}

	.fav-comnent__text {
		width: 58%;
	}

	.fav-content__desc {
		font-size: 14px;
		line-height: 22px;
		font-weight: 400;
		color: #959595;
	}

	.tours-item {
		width: 33.33333%;
		margin-bottom: 2%;
	}

	.tours-item__img {
		max-width: 300px;
	}
}

@media screen and (max-width: 1096px) {
	.fav-content {
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 3%;
	}

	.fav-content__img {
		width: 320px;
		height: 320px;
	}

	.fav-comnent__text {
		padding: 0 3%;
		display: flex;
		flex-direction: column;
		justify-content: unset;
	}

	.fav-content__img-block {
		width: 35%;
	}

	.service-slide {
		width: 100%;
		height: 500px;
	}

	.service {
		flex-wrap: wrap;
	}

	.contacts-social {
		width: 40%;
	}


}

@media screen and (max-width: 992px) {
	.header {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.logo__link {
		margin: 10% 0;
	}

	.header-menu__link {
		padding: 16px 23px;
	}

	.fav-content__img {
		width: 270px;
		height: 270px;
	}

	.tours-item {
		width: 50%;
	}

	.tours-item__img {
		max-width: 360px;
	}

	.contacts__form {
		padding: 5% 3%;
	}

	.contacts__desc {
		font-size: 14px;
		line-height: 22px;
		font-weight: 400;
		color: #959595;
		margin: 2% auto;
		padding-right: 17%;
	}

	.form-btn {
		padding: 10px 43px;
		font-size: 21px;
	}

	.contacts-social {
		width: 50%;
	}

	.contacts__title {
		padding: 37px 0 4px;
	}

}

@media screen and (max-width: 767px) {

	.header-menu__ul {
		display: none;
	}

	.header-menu__ul.active {
		display: block;
		text-align: center;
		/* display: block;
		    text-align: center;
		    position: absolute;
		    z-index: 1000;
		    background: #fff;
		    width: 90%; */
	}

	.btn-menu {
		display: block;
	}

	.header-menu {
		width: 100%;
	}

	.fav-content__img {
		width: 220px;
		height: 220px;
	}

	.section-title {
		margin: 0;
		margin-top: 5%;
	}

	.service-slide {
		margin-bottom: 5%;
	}

	.service-content__item {
		width: 100%;
		margin-top: 5%;
	}

	.service-content__item {
		text-align: center;
		padding: 0 10%;
	}

	.service-slide {
		width: 80%;
		height: auto;
		margin: 0 auto 5%;
	}

	.tours-item {
		width: 100%;
	}

	.tours-item__img {
		max-width: 560px;
	}

	.contacts__info {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-right: none;
		border-bottom: 1px solid #c9c9c9;
	}

	.contacts__address-item img {
		margin-right: 7px;
		vertical-align: sub;
	}

	.contacts__desc {
		font-size: 16px;
		text-align: center;
		padding-right: 0;
	}

	.contacts__address-item {
		margin-bottom: 6%;
	}

	.contacts-social {
		width: 28%;
	}

	.contacts__form {
		width: 100%;
	}
}

@media screen and (max-width: 676px) {

	.intro-content {
		width: 90%;
	}

	.fav-content {
		flex-wrap: wrap;
	}

	.fav-content__img-block {
		width: 100%;
		margin-top: 6%;
	}

	.fav-comnent__text {
		width: 80%;
		margin: 0 auto;
	}

	.fav-content__img-block {
		width: 100%;
		text-align: center;
	}

	.fav-content__img {
		width: 420px;
		height: 320px;
	}

	.fav-content__title {
		text-align: center;
		font-size: 15px;
	}

	.fav-content__desc {
		text-align: center;
		font-size: 15px;
		line-height: 28px;
	}

	.tours-item__img {
		max-width: 500px;
	}

	.contacts__form {
		padding: 10% 3%;
	}

	.contacts__desc {
		margin: 5% 0;
	}
}

@media screen and (max-width: 576px) {
	.intro__title {
		font-size: 38px;
		line-height: 66px;
	}

	.intro__desc {
		margin-bottom: 30px;
		background: #0d533d4d;
		border-radius: 20px;
	}

	.fav-content__img {
		width: 360px;
		height: 300px;
	}

	.tours-item__img {
		max-width: 400px;
	}

	.contacts-social {
		width: 40%;
	}

}

@media screen and (max-width: 460px) {
	.btn {
		padding: 9px 29px;
		font-size: 21px;
		line-height: 24px;
	}

	.intro-content {
		width: 100%;
	}

	.intro__title {
		font-size: 27px;
		line-height: 44px;
	}

	.intro__desc {
		font-size: 17px;
		padding: 2%;
	}

	.intro-content {
		justify-content: space-around;
	}

	.fav-content__img {
		width: 300px;
		height: 240px;
	}

	.service-content__icon {
		margin-top: 5%;
	}

	.tours-item__img {
		max-width: 320px;
	}

	.contacts-social {
		width: 54%;
	}

	.main-form input[type="text"],
	input[type="email"],
	textarea {
		padding: 18px 5px;
	}
}

@media screen and (max-width: 360px) {
	.fav-comnent__text {
		width: 90%;
		margin: 0 auto;
	}

	.slick-dots {
		bottom: 10px;
	}

	.slick-dots li button:before {
		font-size: 27px;
	}

	.tours-item__img {
		max-width: 280px;
	}

	.contacts-social {
		width: 67%;
	}
}
