@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 18px;
	font-family: 'Mulish' sans-serif;
	background-color: #948979;
}
/* header */

header {
	padding: 55px;
	padding-bottom: 0;
	background-color: #3c5b6f;
	border-bottom: solid 5px #dfd0b8;
}

nav.menu {
	display: flex;
	align-items: center;
}
nav.menu a {
	text-decoration: none;
	color: #e88d67;
}
a.menu_logo {
	display: flex;
	align-items: center;
	margin-right: auto;
	text-indent: 20px;
	font-size: 35px;
	padding-bottom: 10px;
}
.menu_link,
.menu_link-active {
	padding: 10px;
	margin: 10px;
	font-size: 25px;
}
.menu_link-active {
	font-weight: bold;
	transition: all 0.5 else;
}
.menu_link-active:hover,
.menu_link:hover {
	padding-top: +5px;
	transition: all 0.5 else;
}
/* welcome */

.welcome {
	padding: 55px;
	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 20px;
}
.welcome_text {
	max-width: 450px;
	margin-right: 300px;
}
.welcome_header {
	font-size: 40px;
	margin-bottom: 20px;
}
.welcome_button {
	margin-top: 20px;
	display: inline-block;
	padding: 20px 60px;
	background-color: #e88d67;
	color: #fff;
	border-radius: 55px;
	text-decoration: none;
	cursor: pointer;
	transition: 0.55s;
}
.welcome_button:hover {
	background-color: #006989;
	box-shadow: 10px 40px 50px rgba(0, 105, 137, 0.4);
}

.welcome_img {
	max-width: 500px;
	border: solid 5px #e88d67;
	box-shadow: 10px 40px 50px rgba(232, 141, 103, 0.4);
}
/* New */
.new {
	display: block;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.slides {
	width: 800px;
	height: 500px;

	border-radius: 20px;
	overflow: hidden;
}

.slide {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide:first-child {
	background: url(../img/slide1.png);
	background-size: cover;
}

.slide:nth-child(2) {
	background: url(../img/slide2.png);
	background-size: cover;
}

.slide:nth-child(3) {
	background: url(../img/slide3.png);
	background-size: cover;
}

.slide:nth-child(4) {
	background: url(../img/slide4.png);
	background-size: cover;
}

.slide:last-child {
	background: url(../img/slide5.png);
	background-size: cover;
}

.controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.slide__prev img,
.slide__next img {
	width: 30px;
	height: 30px;
	margin: 15px;
}

.slider__buttons-link {
	display: inline-block;
	height: 20px;
	width: 20px;
	background-color: #e88d67;
	margin: 20px 10px;
	border-radius: 50%;
	transition: 0.5s;
}

.slider__buttons {
	display: flex;
	justify-content: center;
}

.video {
	padding: 55px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	margin-bottom: 120px;
}
.new_text {
	margin-left: 600px;
}

.buttons-d {
	display: flex;
	align-items: center;
}
/* our_services */

.our_services {
	padding: 55px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #3c5b6f;
	background-position: 0% 45%;

	margin-bottom: 120px;
}

.our_services p {
	color: #273e4d;
	font-weight: 300;
	font-size: 16px;
}

.our_services_top {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 900px;
}

.our_services_top h1 {
	padding: 20px;
	margin: 20px;
	border-bottom: 2px solid #333;
}
.our_services_top p {
	font-size: 20px;
	color: #dfd0b8;
	padding-bottom: 10px;
}
.our_services_content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-bottom: 2px solid #dfd0b8;
	border-top: 2px solid #dfd0b8;
}

.service_card {
	width: 350px;
	padding: 40px;
	margin: 35px;
	box-shadow: 10px 20px 30px rgba(229, 233, 246, 0.4);
	border-radius: 20px;
	background-color: #dfd0b8;
}

.service_card h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

#service_card_center {
	padding-left: 95px;
}

.service_card img {
	margin-bottom: 24px;
	padding-left: 80px;
}

.more-btn {
	padding: 20px 50px;
	border-radius: 55px;
	color: #f3f7ec;
	text-decoration: none;
	border: 2px solid #e88d67;
	display: inline-block;
	margin-top: 37px;
	transition: 0.35s;
	cursor: pointer;
}

.c1 {
	margin-top: 5px;
}

.more-btn:hover {
	background-color: #e88d67;
	box-shadow: 10px 40px 50px #e88d67;
}

.whats_btn {
	margin-left: 15px;
	width: 46px;
	height: 46px;
	cursor: pointer;
}

.whats_btn:hover {
	padding: 5px;
}

.insta_btn {
	width: 50px;
	height: 50px;
}

.insta_btn:hover {
	padding: 5px;
}

.more-btn img {
	margin-left: 10px;
}

/* info & download */

.info,
.download {
	padding: 55px;
	display: flex;
	justify-content: space-around;
	align-items: center;

	margin-bottom: 120px;
}

.info_image,
.download_image {
	max-width: 500px;
	border: solid 5px #e88d67;
	box-shadow: 10px 40px 50px rgba(232, 141, 103, 0.4);
}
.info_text,
.download_text {
	max-width: 450px;
}

.info_text h1,
.download_text h1 {
	padding: 20px;
	padding-left: 0;
	margin-bottom: 20px;
	border-bottom: 2px solid #333;
}

/* latest_articles */

.latest_articles {
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;

	margin-bottom: 120px;
}

.la_top {
	text-align: center;
	max-width: fit-content;
	border-bottom: 2px solid #333;
	padding: 20px;
	margin-bottom: 40px;
}

.la_content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.articles_card {
	max-width: 350px;
	border-radius: 20px;
	margin: 33px;
	background-color: #dfd0b8;
	box-shadow: 10px 40px 50px rgba(223, 208, 184, 0.4);
}

.articles_card_text p {
	font-size: 50px;
	margin-bottom: 20px;
}

.articles_card_glav {
	max-width: 350px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.articles_card_text {
	padding: 33px;
}

.articles_card_text h3 {
	margin-bottom: 20px;
}

.articles_link {
	margin-top: 20px;
	display: inline-block;
	color: #458ff6;
	text-decoration: none;
}

.articles_link img {
	margin-left: 10px;
}

/* footer */
footer {
	background: linear-gradient(180deg, #006989, #273e4d 80%);
	color: #e88d67;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.footer_left {
	display: flex;
	flex-direction: column;
	max-width: 400px;
}

.footer_logo {
	display: flex;
	align-items: center;
	text-indent: 10px;
}

.footer_logo img {
	width: 45px;
	height: 45px;
}

.footer_left p {
	margin: 30px 0;
}

.footer_right {
	display: flex;
}

.footer_list {
	padding: 10px;
	margin: 10px;
}

.footer_list {
	font-weight: bold;
	padding: 20px 0;
}

.footer_list ul {
	list-style: none;
}

.footer_list ul li a {
	color: #dfd0b8;
	display: flex;
	padding: 15px 20px;
	padding-left: 0;
	text-decoration: none;
}

.footer_list ul li a:hover {
	text-decoration: underline;
}
