@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* Reset and base styles  */
:root {
	--bgc:#141f20;
	/* --bgc:#161616; */
	--bgc-2:#fffbf7;
	--link:#af8d64;
	--btn:#776042;
}

/* #1e251e */
/* #141f20 */
/* #15201e */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}
body {
	background-color: var(--bgc);
	color: white;
	font-family: "Open Sans", serif;
}
.container {
	margin: 0 auto;
	max-width: 1320px;
	padding: 0 15px;
}
.header {

}
.nav {
	background-color: var(--bgc);
	padding: 25px 0;
	position: fixed;
	z-index: 22;
	width: 100%;
	top: 0px;
}
.nav_all {

	display: flex;
	
	align-items: center;
	width: 100%;
	max-width: 1320px;
	justify-content: space-between;
}
.nav_link {
	color: #fff;
	padding-bottom: 5px;
	transition: all .3s;
}
.logo {
	font-weight: 700;
}
.nav_link:hover {
	color: #caa87b;
}
.nav_link--active {
	border-bottom: 1px solid var(--btn);
}
.nav_btn {
	transition: all .3s;
}
.nav_btns {
	display: flex;
	gap: 10px;
	transition: all .3s;
}
.nav_btn:hover {
	transform: scale(1.1);

}
.nav_btn svg path {
	transition: all .3s;
}
.nav_btn:hover svg path {
	fill: var(--link);
}
.header_all {
	display: flex;
	margin-top: 180px;	
	align-items: center;
	justify-content: space-between;
}
.header_left {
	max-width: 760px;
	line-height: 80px;
}
.header_right {
	max-width: 600px;
}
.header_right img {
	border-radius: 10px;
	/* height: 700px; */
}
.header_left-title {
	font-size: 66px;
}
.header_left-text {
	font-size: 19px;
    margin-top: 25px;
    max-width: 532px;
    line-height: 1.1;
    font-weight: 300;
}
.header_left-btn {
	font-size: 20px;
	background-color: var(--btn);
	color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 64px;
	max-width: 328px;
	width: 100%;
	margin-top: 70px;
	transition: all .3s;
    border-radius: 59px;
}
.header_left-btn:hover {
	color: white;
	opacity: .8;
}

.main_text {
	font-size: 20px;
	background-color: #fff;
	background-color: var(--btn);
	color: #000000;
	border-radius: 10px;
	padding: 30px;
	margin-top: 80px;
}
.section_one {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
	margin-bottom: 100px;
}
.section_one-all {
	display: flex;
	gap: 30px;
}

.section_one-all-left {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	gap: 10px;
	max-width: 220px;
}
.section_one-all-titles {
	transition: all .3s;
}

/* .section_one-all:nth-child(1) {
	border-right: 2px solid var(--btn);
	padding-right: 150px;
}
.section_one-all:nth-child(2) {
	padding-right: 150px;
	border-right: 2px solid var(--btn);
} */
.section_one-all h2{
	color: #ffffff;
    font-size: 48px;
	color: var(--btn);
}
.section_one-all-title-1 {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
    width: 88px;
    height: 88px;
	padding-bottom: 4px;
	background-color: var(--btn);
	color: #fff!important;
}
.section_one-all p{
	color: #ffffff;
    font-size: 20px;
}


.section_two {
	max-width: 800px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 180px;
}
.section_two_all {
}
.section_two-text {
	font-size: 32px;
	text-transform: uppercase;
}
.section_two-text-2 {
	text-align: right;
	font-size: 32px;
	text-transform: uppercase;
}
.section_two-text-3 {
	text-align: center;
	font-size: 26px;
	color: var(--btn);
	font-style: italic
}

.section_three {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 35px;
	margin-bottom: 180px;
	position: relative;
}
.section_three-all {
	position: relative;
	display: flex;
	flex-direction: column;
	
}
.education-dot {
    height: 21px;
    width: 21px;
    background-color: var(--btn);
    position: absolute;
    left: calc(50% - 9px);
    border-radius: 50%;
    top: 10px;
}
.education-dot-2 {
    height: 21px;
    width: 21px;
    background-color: var(--btn);
    position: absolute;
    right: calc(143% - 6px);
    border-radius: 50%;
    top: 10px;
}
.education-dot-4 {
	right: calc(143% - 10px);
}
.section_three::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background-color: var(--btn);
    left: calc(50% - 1px);
}
.section_three-all h3{
	font-size: 42px;
	font-style: italic;
	color: var(--btn);
}
.section_three-all p{
	font-size: 18px;
	max-width: 333px;
	
	
}

.section_three-two {
	margin-left: auto;
}
.section_three-three {
}
.section_three-four {
	margin-left: auto;
}
.section_three-five {
}
.section_three-six {
	margin-left: auto;
	max-width: 360px!important;
}
.section_four {
	padding-top: 120px;
	padding-bottom: 180px;
	background: var(--bgc-2);
}
.section_four-all {
	color: #000000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.section_four-all-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
	margin-top: 50px;
}

.section_four-all h4{
	text-align: center;
    font-size: 38px;
	text-transform: uppercase;
	margin-bottom: 40px;
}
.section_four-all-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	max-width: 300px;
	justify-content: center;
}
.section_four-all-item img {
	max-width: 100px;
}
.section_four-all p{

	text-align: center;
	max-width: 1300px;
	margin: 0 auto;
}
.section_four-all-list  p {
	font-size: 20px;
}
.section_four-all button {
	margin-top: 40px;
}


.section_six {
	padding-top: 120px;
	position: relative;
}

.section_six-all {
	display: flex;
	gap: 80px;
}
.section_six-left {
	width: 60%;
	max-width: 480px;
}
.section_six-left img {
	width: 100%;
	border-radius: 10px;
	cursor: pointer;
	transition: all .3s;
}
.section_six-left img:hover {
	transform: scale(1.03);
}
.section_six-right {
}
.section_six-right-title {
	font-size: 34px;
	font-weight: 400;
	color: var(--btn);
}
.section_six-right-title-2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 80px;
}
.section_six-right-title-3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0px;
	transition: all .3s;
}
.section_six-right-title-3:hover {
	color: var(--btn);
}
.section_six-more {
	color: #fff;
	background-color: var(--btn);
	padding: 20px;
	display: flex;
	max-width: 200px;
	justify-content: center;
	align-items:center;
	border-radius: 50px;
	margin-top: 50px;
	transition: all .3s;
}
.section_six-more:hover {
	opacity: .8;
}
.section_six-list {
	display: flex;
	flex-direction: column;
	margin-top: 40px;
	gap: 20px;
}
.section_six-list-btn {
	color: var(--btn);
	font-size: 22px;
	padding-top: 10px;
}
.section_six-item {
	color: #ffffff;
    font-size: 18px;
    font-weight: 300;
}
.section_six-item-2 {
	color: #ffffff;
    font-size: 18px;
    font-weight: 300;
}
.section_six-right-abs {
	position: absolute;

	opacity: 0.55;
	max-width: 1200px;
	bottom: -250px;
    background-color: #ffffff;
    background-position: center center;
    border-color: transparent;
    border-style: solid; 
	   color: #000000;
	   padding: 30px;
    font-size: 30px;
    font-family: 'Cormorant', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 500;
	text-transform: uppercase;
}
.section_six-list-top {
	display: flex;
	align-items: center;
	gap: 10px;
}
.section_six-right-title-3-none {
	display: none;
}
.section_seven {
	padding-top: 120px;
	padding-bottom: 120px;
}
.title-2 {
	font-size: 36px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 60px;
}
.section_seven-all {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	
}
.section_seven-item {
	width: 100%;
	max-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	justify-content: space-between;
	gap: 30px;
	transition: all .3s;
	cursor: pointer;
}

.section_seven-item:hover {
	transform: scale(1.05);
}
.section_seven-item h5{
	text-align: center;
	color: #fff;
	font-size: 20px;
}
.section_seven-item p{
	text-align: center;
	color: var(--link);
	font-weight: 700;
	font-size: 20px;
	font-style: italic;
}
.section_seven-item a{
	background-color: var(--btn);
	height: 60px;
    font-size: 16px;
    padding-left: 60px;
    padding-right: 60px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000;
	transition: all .3s;
}
.section_seven-item a:hover{
	color: #fff;
	opacity: .8;
}


.section_eleven {
	padding-top: 120px;
	margin-bottom: 240px;
	position: relative;
}


.section_eleven-all {
	
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.section_eleven-all-top {
	display: flex;
	justify-content: space-between;
	
}
.section_eleven-all-bot {
	display: flex;
	justify-content: center;
	gap:50px;
}
.section_eleven-item {
	max-width: 280px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	justify-content: center;
}
.section_eleven-item h2 {
	text-align: center;
	font-size: 26px;
	color: var(--btn);
	text-transform: uppercase;
}

.section_eleven-item h4 {
	text-align: center;
	font-size: 22px;
}
.section_eleven-item span {
	text-align: center;
	color: var(--btn);
	font-size: 22px;
}


.footer {
	padding-top: 120px;
	padding-bottom: 120px;
}
.footer_all {
	display: flex;
	gap: 80px;
	justify-content: center;
}
.footer_left-link{
	color: #fff;
	display: flex;
	font-size: 18px;
	margin-bottom: 20px;
	transition: all .3s;
}
.footer_left-link:hover {
	color: var(--link);
}
.footer_left h3{
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 500;
}
.footer_left p{
	font-size: 18px;
	margin-bottom: 20px;
}

.footer_right {
	width: 60%;
}
.map {
	width: 100%;
	border-radius: 5px;
}
.nav_links {
	display: flex;
	gap: 50px;
}
.burger {
	display: none;
}
.nav_links-mobil {
	display: none;
}



.servises {
	margin-top: 140px;
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.servises_list {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding-top:80px;
	gap: 20px;
	max-width: 800px;
	width: 100%;
}
.servises_item {
	text-align: left;
	
	font-size: 21px;
	max-width: 800px;
	list-style-type: decimal!important;
}
.section_seven-item-svg {
	width: 100px;
	height: 100px;
}
@media (max-width: 1366px) {
	.header_left-title {
		font-size: 52px;
	}
	.header_left-btn {
		margin-top: 50px;
	}
	.section_one-all:nth-child(1) {
		padding-right: 110px;
	}
	.section_one-all:nth-child(2) {
		padding-right: 140px;
	}
	.section_one-all h2 {
		font-size: 42px;
	}
	.main_text {
		font-size: 18px;

	}
	.section_six-right-title {
		font-size: 30px;

	}
	.section_six-right-title-2 {
		font-size: 20px;
		margin-bottom: 50px;
	}
	.section_six-right-title-3 {
		font-size: 20px;
	}
	.title-2 {
		font-size: 32px;
	}
	.section_eleven-item h2 {
		font-size: 24px;

	}
	.section_eleven-item h4 {
	
		font-size: 20px;
	}
	.section_eleven-item {
		gap: 10px;
	}
	.section_six-right-abs {
		max-width: 1050px;
	
		font-size: 28px;
		
	}

}
@media (max-width: 1024px) {
	.section_one-all {
		display: flex;
		gap: 10px;
	}

	.section_one-all-title-1 {
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		width: 61px;
		height: 61px;
		padding-bottom: 4px;
		background-color: var(--btn);
		color: #fff !important;
	}
	.section_one-all:nth-child(1) {
		padding-right: 0px;
		border-right: none;

	}
	.section_one-all:nth-child(2) {
		padding-right: 0px;
		border-right: none;
	}
	.section_one-all h2 {
        font-size: 38px;
		
    }
	.header_left-title {
        font-size: 44px;
    }
	.header_left-text {
		font-size: 20px;
		max-width: 600px;
	}
	.header_left-btn {
		font-size: 17px;
		height: 57px;
		max-width: 295px;
		margin-top: 40px;
	}
	.section_six-all {
		gap: 50px;
	}
	.section_six-list {
		gap: 15px;
	}
	.section_six-right-title {
        font-size: 28px;
    }
	.section_six-right-title-2 {
        font-size: 18px;
        margin-bottom: 38px;
    }
	.section_six-right-title-3 {
        font-size: 20px;
    }
	.section_six-item {
		font-size: 16px;
	}
	.section_seven-all {
		display: flex
;
        flex-direction: column;
        justify-content: center;
        align-items: center;
	}
	.section_four {
		padding-top: 120px;
		padding-bottom: 120px;
		background: var(--bgc-2);
	}
	.section_three-all p {
		font-size: 16px;
		max-width: 333px;
	}
	.section_three-all h3 {
		font-size: 36px;
	}
	.section_four-all h4 {
		font-size: 34px;
		margin-bottom: 30px;
	}
	.section_four-all p {
		font-size: 18px;
	}
	.section_four-all-item img {
		max-width: 85px;
	}
	.title-2 {
        font-size: 30px;
    }
	.section_eleven-item h2 {
        font-size: 20px;
    }
	.section_eleven-item h4 {
        font-size: 16px;
    }
	.section_eleven-item span {
		font-size: 18px;
	}
	.section_six-right-abs {
        max-width: 830px;
        font-size: 22px;
    }
	.footer_all {
		display: flex;
		gap: 40px;
		justify-content: center;
	}
	.nav_links {
		display: none;
	}
	.nav_btns--mob {
		display: none;
	}
	.logo {
		font-size: 22px;
	}
	.nav_links-mobil {
		display: flex;
		flex-direction: column;
		background-color: #fff;
		position: absolute;
		top: 0;	
		left: 0;
		width: 100%;
		height: 100vh;
		justify-content: center;
		align-items: center;
		gap: 20px;
		right: 0;
		bottom: 0;
	}
	.nav_links-mobil--none {
		display: none;
	}
	.burger {
		position: relative;
		z-index: 22;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		width: 25px;
		height: 22px;
		cursor: pointer;
	  }  
	.burger__line {
		width: 100%;
		height: 2px;
		background-color: var(--btn);
	}
	.nav_links-mobil a {
		font-size: 22px;
		color: #000000;
	}
	.header_right {
		max-width: 500px;
	}
	.header_all {
		margin-top: 120px;
	}
	.section_one-all h2 {
        font-size: 34px;
    }
	.section_four-all p {
        font-size: 16px;
    }
	.section_four-all-item img {
        max-width: 68px;
    }
	.section_four-all-item {
	
		gap: 15px;
	
	}
	.section_seven-item h5 {
		text-align: center;
		color: #fff;
		font-size: 18px;
	}
	.section_seven-item-svg {
		width: 90px;
		height: 90px;
	}
	.section_seven-item a {
		background-color: var(--btn);
		height: 50px;
		font-size: 16px;

	}
	.header_all {
		gap: 40px;
	}
	.servises_item {
		margin-left: 30px;
	}
}

@media (max-width: 768px) {
	.section_four-all-list {
		flex-direction: column;
	}
	
	.header_all {
		flex-direction: column;
	}
	.header_left {
		order: 2;
	}
	.header_right {
        max-width: 500px;
    }
	.section_one {
		gap: 50px;
		flex-direction: column;
	}
	.section_one {
		margin-top: 70px;
		margin-bottom: 70px;
	}
	.section_six-all {
		gap: 30px;
		flex-direction: column;
	}
	.title-2 {
        font-size: 24px;
		margin-bottom: 50px;

    }
	.section_six-right-abs {
        max-width: 680px;
        font-size: 18px;
    }
	.section_six-right-title {
        font-size: 24px;
    }
	.section_six-right-title-2 {
        font-size: 16px;
        margin-bottom: 22px;
    }
	.section_six-right-title-3 {
        font-size: 16px;
    }
	.section_six-list-btn {
		max-width: 20px;
		padding-top: 6px;
	}
	.section_six {
		padding-top: 100px;
		position: relative;
	}
	.section_seven {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section_two {
		margin-bottom: 100px;
	}
	.section_three::before {
		display: none;
	}
	.education-dot, .education-dot-2, .education-dot-4 {
		display: none;
	}
	.section_four-all h4 {
        font-size: 28px;
        margin-bottom: 30px;
    }
	.section_four-all p {
        font-size: 18px;
    }
	.header_left-btn {
        font-size: 16px;
        height: 52px;
        max-width: 276px;
        margin-top: 25px!important;
    }
	.section_four {
		padding-top: 100px;
		padding-bottom: 120px;
	}
	.section_eleven-all-top, .section_eleven-all-bot {
		flex-direction: column;
		gap: 20px;
		justify-content: start;
		align-items: start;
	}
	.section_eleven {
		padding-top: 80px;
		margin-bottom: 200px;
		position: relative;
	}
	.section_eleven-item h2 {
        font-size: 18px;
    }
	.section_three-all h3 {
        font-size: 30px;
    }
	.section_three-all p {
        font-size: 14px;
        max-width: 333px;
    }
	.section_eleven-item span {
        font-size: 16px;
    }
	.footer_all {
		flex-direction: column;
		align-items: center;
	}
	.footer_right {
		width: 100%;
	}
	.footer_left {
		width: 100%;
	}
	.section_eleven-item h4 {
        font-size: 18px;
    }
	.footer {
		padding-top: 75px;
		padding-bottom: 75px;
	}
	.section_four-all-list {
		display: flex;
		align-items: center;
		gap: 35px;
		margin-bottom: 50px;
		margin-top: 50px;
	}
	.section_four-all-list svg {
		transform: rotate(90deg);
	}
}

@media (max-width: 450px) {
	.section_seven-all {
		grid-template-columns: repeat(1, 1fr);
	}
	.section_eleven-all {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.header_left-title {
        font-size: 36px;
		line-height: 45px;
    }
	.section_six-list {
		display: flex;
		flex-direction: column;
		margin-top: 25px;
		gap: 20px;
	}
	.header_left-text {
        font-size: 17px;
        margin-top: 5px;
		max-width: 413px;
    }
	.section_one {
        margin-top: 55px;
        margin-bottom: 55px;
    }
	.section_one-all h2 {
        font-size: 34px;
    }
	.section_one-all p {
		color: #ffffff;
		font-size: 18px;
	}
	.logo {
        font-size: 20px;
    }
	.main_text {
		font-size: 18px;
		border-radius: 10px;
		padding: 22px;
		margin-top: 70px;
	}
	.section_six {
        padding-top: 70px;
        position: relative;
    }
	.section_seven {
        padding-top: 70px;
        padding-bottom: 70px;
    }
	.section_seven-item h5 {
		text-align: center;
		font-size: 18px;
	}
	.section_seven-item {
		gap: 22px;
	}
	.section_seven-item a {
		background-color: var(--btn);
		height: 45px;
		font-size: 14px;
		padding-left: 50px;
		padding-right: 50px;
		border-radius: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #000000;
		transition: all .3s;
	}
	.section_two-text {
		font-size: 18px;
		text-transform: uppercase;
	}
	.section_two-text-2 {
		text-align: right;
		font-size: 18px;
		text-transform: uppercase;
	}
	.section_two-text-3 {
		text-align: center;
		font-size: 16px;
		color: var(--btn);
		font-style: italic;
	}
	.section_three {

		margin-bottom: 100px;
		position: relative;
	}
	.section_four {
        padding-top: 70px;
        padding-bottom: 90px;
    }
	.section_four-all h4 {
        font-size: 26px;
        margin-bottom: 30px;
    }
	.section_four-all p {
        font-size: 16px;
		
    }
	.title-2 {
        font-size: 22px;
        margin-bottom: 40px;
    }
	.section_six-right-abs {
        max-width: 403px;
        padding: 18px;
		font-size: 16px;
    }
	.footer_left p {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.footer_left-link {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.section_eleven-item {
		align-items: start;
		justify-content: start;
	}
	.section_eleven-item h4 {
		text-align: left;
	}
	.section_six-left {
		width: 100%;
	}
	.section_three-two {
		margin-left: 0;
	}
	.section_three-four {
		margin-left: 0;

	}
	.section_three-six {
		margin-left: 0;
		
	}
	.section_seven-all {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.section_six-right-title {
        font-size: 22px;
		margin-bottom: 10px;
    }
	.servises_item {
		font-size: 16px;
		margin-left: 15px;
		padding-left: 2px;
		list-style-type: decimal !important;
	}
	.servises {
		margin-top: 100px;
		gap: 0px;
	}
	.servises_list {
		display: flex;
		padding-top:80px;
		flex-direction: column;
		gap: 15px;
	}
}