/*
Theme Name: profitup
Author: Seryozha Janvelyan
Description: Custom tema
Version: 1.0
*/


@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Mardoto';
  src: url('assets/fonts/Mardoto/Mardoto-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}


body {
    max-width: 1440px;
    margin: 0 auto;
    font-family: Mardoto;
}

.dp-none {
    display: none !important;
}

.dp-block {
    display: block;
}

.header {
    margin: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.header-logo {
    /*background-color: #1C3F3A;*/
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    height: 76px;
    display: flex;
    align-items: center;
}

.header-logo img {
    
}


.header-title {
  position: relative;
  width: 100%;
  font-size: 50px;
  font-weight: 300;
  padding: 38px 15px;
}

.header-title::before,
.header-title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px; /* максимальная толщина "жирной" части */
  background: linear-gradient(to right,
    transparent 0%,
    rgba(28, 63, 58, 0.2) 30%,
    #1C3F3A 50%,
    rgba(28, 63, 58, 0.2) 70%,
    transparent 100%);
}

.header-title::before {
  top: 0; /* верхняя линия */
}

.header-title::after {
  bottom: 0; /* нижняя линия */
}



.header-menuBar, .header-close {
    display: flex;
    width: 80px;
    height: 76px;
    cursor: pointer;
    align-items: center;

}

/*.header-menuBar i {*/
/*    font-size: 40px;*/
/*    color: #fff;*/
/*    padding: 23px 25px;*/
/*}*/

.header-close img {
    /*padding: 18px 19px 17px 19px;*/
}

.menu {
    position: absolute;
    background: #fff;
    right: 0;
    top: 75px;
    width: 675px;
    border: 1px solid;
    border-radius: 5px;
    z-index: 10;
	height: calc(100vh - 108px);
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    display: flex;
    align-items: center;
    padding: 5px 0px;
    cursor: pointer;
}

.menu-item-text:hover {
    font-weight: 500;
    color: #1C3F3A;
}

.menu-item-img {
   display: flex; 
}

.menu-item-img img {
    width: 15px;
}

.menu-item-text {
    padding-left: 10px;
    font-size: 40px;
    font-weight: 300;
    color: #040A33;
}

.languages li {
    font-size: 18px;
    font-weight: 400;
    
}

.languages {
    display: flex;
    align-items: end;
    padding-bottom: 10px;
}

.menu-footer img {
    width: 100px;
    padding: 0px 30px 30px 0px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
}

.menu-footer ul .language-items {
    padding-right: 10px;
    cursor: pointer;
}

.menu-footer ul .language-items:hover {
    color: #1C3F3A;
    font-weight: 500;
}

.menu-footer {
    padding-top: 80px;
}

.home-about {
    display: flex;
    margin: 50px 135px 100px 135px;
    position: relative;
}

.home-about-left {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    position: relative;
    max-width: 75%;
}

.home-about-rigth {
      position: absolute;
      right: 0px;
}

.home-about-left-title {
    font-size: 64px;
    font-weight: 300;
    color: #040A33;
	font-family: 'Mardoto';
}

.home-about-left-desc {
    color: #040A33;
    font-size: 20px;
    opacity: 0.5;
    padding-top: 20px;
    font-weight: 300;
}

.home-about-left-links {
    padding-top: 20px;
}

.home-about-left-links a {
    text-decoration: none;
    color: #040A33;
    font-size: 20px;
    font-weight: 400;
}

.home-about-left-links span {
    padding: 0px 40px;
}

.home-services {
    display: flex;
    padding: 150px 30px 100px 30px;
}

.home-services-item {
    background-color: #1C3F3A;
    margin: 10px;
    border-radius: 7px;
    overflow: hidden;
    transition: background-color 0.5s ease;
    text-decoration: none;
}
.home-services-item:hover {
    background-color: #040A33;
}

.home-services-item-white:hover {
    background-color: #fff;
}

.home-services-left, .home-services-right{
    width: 50%;
}

.home-services-left a, .home-services-right a {
    text-decoration: none;
}

.home-services-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 220px;
}

.home-services-number {
    font-family: "Darker Grotesque", sans-serif;
    font-size: 540px;
    color: #fff;
    font-weight: 900;
    position: absolute;
    bottom: 43px;
    left: -40px;
    max-height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-services-item-top img {
    position: absolute;
    right: 35px;
    top: 30px;
}

.home-services-item-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px 120px 0px;
}

.home-services-item-bottom {
    padding: 30px;
    margin: 0 auto;
}

.home-services-item-bottom span {
    color: #fff;
    font-size: 30px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.home-services-item-blue {
    background-color: #040A33;
}

.home-services-all {
    rotate: 45deg;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home-services-item-white {
    background-color: #fff;
}

.home-services-all img {
    rotate: -45deg;
}

.home-services-all a {
    color: #1C3F3A;
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.home-tesitmonial {
    display: flex;
    align-items: center;
    padding:0px 40px 40px 60px;
}

.home-tesitmonial span {
    padding-left: 20px;
    font-size: 48px;
    color: #040A33;
    font-weight: 300;
}

.home-tesitmonial-items {
    padding:0px 40px 100px 40px;
    display: flex;
    gap: 32px;
}

.home-tesitmonial-item {
    /*width: 33%;*/
    border: 2px solid #091670;
    padding: 32px;
    border-radius: 7px;
}

.home-tesitmonial-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
}

.home-tesitmonial-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.home-tesitmonial-item-left-img-1 {
    rotate: 0deg;
}

.home-tesitmonial-item-right-img-1 {
    rotate: -90deg;
}

.home-tesitmonial-item-left-img-2 {
    rotate: 90deg;
}

.home-tesitmonial-item-right-img-2 {
    rotate: 0deg;
}

.home-tesitmonial-item-left-img-3 {
    rotate: -90deg;
}

.home-tesitmonial-item-right-img-3 {
    rotate: 180deg;
}

.home-tesitmonial-item-right span {
    font-size: 20px;
    color: #040A33;
    font-weight: 500;
    padding-bottom: 30px;
    text-align: right;
}

.home-tesitmonial-item-top img {
    width: 130px;
}

.home-tesitmonial-item-bottom {
    font-size: 20px;
    color: #040A33;
    font-weight: 300;
    text-align: justify;
    padding-top: 35px;
}

.home-partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0px 40px 40px 60px;
}

.home-partners div {
    display: flex;
    align-items: center;
}

.home-partners-title span {
    padding-left: 20px;
    font-size: 48px;
    color: #1C3F3A;
    font-weight: 300;
    padding-left: 20px;
}

.home-partners-link a {
    text-decoration: none;
    color: #1C3F3A;
    font-size: 20px;
    font-weight: 300;
    padding-left: 10px;
}

.home-partners-logos {
    padding: 40px;
    border: 2px solid #1C3F3A;
    border-radius: 7px;
    margin-bottom: 100px;
    margin: 0px 40px 100px;
    display: flex;
    justify-content: space-around;
}

.home-partners-logo {
    display: flex;
    justify-content: center;
}

.home-partners-logo img {
    width: 180px;
}

.home-staff {
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 40px;
    gap: 30px;
}

.home-staff-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-staff-image {
    width: 295px;
}

.home-staff-name {
    font-size: 20px;
    font-weight: 700;
    color: #040A33;
    margin-top: 20px;
}

.home-staff-position {
    font-size: 20px;
    font-weight: 400;
    color: #49A598;
    margin-top: 5px;
}











/* Фиксируем ширину слайда */
.swiper-slide {
  display: flex;
  height: auto;
}

/* Убираем влияние swiper-wrapper */
.swiper-wrapper {
  align-items: stretch;
}

/* Сохраняем твой блок на всю ширину */
.home-tesitmonial-item {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff; /* если был фон */
  padding: 32px;
  border-radius: 10px;
  margin: auto;
}

.home-tesitmonial-swiper {
    max-width: 1355px;
    padding:0px 10px 50px 10px !important;
    margin-bottom: 50px !important;
}

.logo-swiper {
  max-width: 1351px;
  padding: 0px 0px 50px 0px !important;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px !important;
  border: 2px solid #1C3F3A;
  border-radius: 7px;
  padding-top: 40px !important;
}



.logo-swiper .swiper-slide {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  height: auto;
}


.home-partners-logo img {
  width: 180px;
  height: auto;
  display: block;
}

.logo-swiper-wrapper {
    padding: 0px 10px;
}

.staff-slider {
    max-width: 1355px;
    padding:0px 0px 50px 0px !important;
    margin-bottom: 50px !important;
}

.staff-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 0.3;
  margin: 0 4px;
  border-radius: 50%;
  display: inline-block;
  transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.services, .contact {
    width: 1180px;
}

.contact, .services {
    margin: 45px auto 40px auto;
}

.contact-header {
    width: 80%;
}

.contact .home-about-left, .services .home-about-left { 
    padding-top: 50px;
}

.contact-info {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
	font-family: 'Mardoto';
}

.contact-info div {
    display: flex;
    flex-direction: column;
    gap: 10px;
	font-family: 'Mardoto';
}

.contact-info div span {
    font-size: 30px;
    font-weight: 300;
    color: #040A33;
	font-family: 'Mardoto';
    
}

.contact-info div a {
    font-size: 32px;
    font-weight: 400;
    text-decoration: none;
    color: #040A33;
	font-family: 'Mardoto';
}

.contact-info .contact-info-left a {
	font-size: 20px;
}


.map-container {
    width: 95%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: inherit;
    border-radius: 0;
    margin-bottom: 120px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contactForm {
    width: 95%;
    border: 2px solid #1C3F3A;
    border-radius: 7px;
    margin: 0 auto 120px auto;
}

.contactForm-desc {
    color: #1C3F3A;
    font-size: 18px;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-form input {
    border: 1px solid #1C3F3A;
    border-radius: 7px;
    padding: 25px 35px;
}

.contact-form textarea {
    width: 80%;
    border: 1px solid #1C3F3A;
    border-radius: 7px;
    padding: 25px 35px;
}

.name {
    width: 80%;
    border: 1px solid #1C3F3A;
    border-radius: 7px;
    padding: 25px 35px;
}

.inline-inputs {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    width: calc(80% + 70px) 
}

.inline-inputs input {
    width: 50%;
}

.send {
    color: #fff;
    background-color: #1C3F3A;
    padding: 12px 60px;
    border: none;
    border-radius: 7px;
    margin: 20px 0px 60px 0px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    padding: 10px 35px !important;
}

.documnets {
    display: flex;
    flex-wrap: wrap;
    margin-top: 95px;
    gap: 40px;
    width: 95%;
    margin: 0 auto;
    justify-content: center;
	padding-top: 45px;
}

.documnets-items {
    display: flex;
    flex-direction: column;
    padding-bottom: 95px;
}

.documnets-name {
    color: #040A33;
    font-size: 20px;
    font-weight: 300;
    padding-bottom: 20px;
}

.documnets-img {
    width: 420px;
    height: 540px;
    object-fit: cover;
    border-radius: 7px;
}

.documnets-download {
    font-size: 16px;
    color: #1C3F3A;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
    text-decoration: none;
}

.documnets-sownload span {
    margin-left: 10px;
}

.parnters {
    width: 95%;
    margin: 0 auto;
    padding-top: 95px;
}

.parnters-item {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin-bottom: 95px;
}

.partners-img {
    width: 195px;
    height: 195px;
    object-fit: cover;
}

.parnters-name {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.parnters-title {
    color: #040A33;
    font-size: 30px;
    font-weight: 500;
}

.parnters-name i {
    font-size: 28px;
    color: #040A33;
}


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

.pagination button {
    margin: 0 5px;
    cursor: pointer;
    background: no-repeat;
    color: #1C3F3A;
    border: none;
	font-size: 32px;
	font-weight: 900;
	font-family: "Darker Grotesque", sans-serif;
}

.pagination button.active {
    background: #1C3F3A;
    color: #fff;
    width: 75px;
    height: 75px;
    border: none;
	font-size: 48px;
	font-weight: 900;
	font-family: "Darker Grotesque", sans-serif;
	text-align: center;
    border-radius: 7px;
	top: -12px;
    position: relative;
}

.about {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 80px auto;
}

.about-contetn {
	/* padding: 0px 5px; */
	width: 94%;
}

.about-contetn img {
    height: 55px;
    width: 55px;
}
.about-contetn-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 87%;
    margin: 0 auto;
    color: #000000;
    font-size: 32px;
    font-weight: 400;
	font-family: 'Mardoto', normal;
	
}

.about-contetn-lastimg {
    display: flex;
    justify-content: end;
}

.about-description {
    font-size: 20px;
    color: #000000;
    width: 95%;
    margin: 0 auto 55px auto;
	font-weight: 400;
	font-family: 'Mardoto', normal;
}

.about-description p {
	margin-left: 5px;
}

.about-images {
    width: 95%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.about-images-left {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.about-images-left img {
    height: 482px;
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.about-images-left span {
    margin-left: auto;
    font-size: 48px;
    width: 88%;
    margin-top: 20px;
	font-family: 'Mardoto', normal;
	font-weight: 300;
}

.about-imag-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.about-imag-right-top {
    width: 100px;
    height: 100px;
    margin-bottom: 100px;
}


.about-imag-right-bottom{
    height: 363px;
    width: 100%;
    border-radius: 7px;
    object-fit: cover;
}

.about-imag-bottom {
    width: 375px;
    height: 235px;
    margin-top: 20px;
    position: relative;
    left: -200px;
    margin-bottom: 120px;
    object-fit: cover;
    border-radius: 7px;
}

.news {
    display: flex;
    /* gap: 50px; */
    flex-wrap: wrap;
    margin-bottom: 100px;
    justify-content: space-between;
    padding-top: 45px;
    width: 94%;
    margin: 0 auto;
}

.news article {
    width: 45%;
}

.news article a img {
    width: 100%;
    height: auto;
}

.news article h2 a {
    font-size: 32px;
    font-weight: 400;
    color: #040A33;
    text-decoration: none;
    width: 90%;
	font-family: 'Mardoto';
}

.news-description {
    font-size: 20px;
    font-weight: 400;
    color: #040A33;
    width: 90%;
	font-family: 'Mardoto';
}

.red-more {
    color: #49A598;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
}

.pagination-news {
    margin-bottom: 100px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pagination-news span {
    /* margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B1A82;
    color: #fff;
    width: 33px;
    height: 33px;
    border: 2px solid #1C3F3A; */

	background: #1C3F3A;
    color: #fff;
    width: 75px;
    height: 75px;
    border: none;
    font-size: 48px;
    font-weight: 900;
    font-family: "Darker Grotesque", sans-serif;
    text-align: center;
    border-radius: 7px;
    top: -12px;
    position: relative;

}

.pagination-news a {
    /* margin: 0 5px;
    padding: 4px 9px;
    cursor: pointer;
    background: #1C3F3A;
    color: #fff;
    border: 2px solid #0B1A82;
    text-decoration: none; */
	text-decoration: none;
	margin: 0 5px;
    cursor: pointer;
    background: no-repeat;
    color: #1C3F3A;
    border: none;
    font-size: 32px;
    font-weight: 900;
    font-family: "Darker Grotesque", sans-serif;
	margin: 0px 15px;
}

.pagination-news a:empty {
    background: none;
    border: none;
    cursor: default;
    pointer-events: none; /* чтобы не кликабельна была */
    padding: 0;
    margin: 0;
}

.single-news {
    width: 100%;
    margin: 0 auto;
}

.single-news article {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 

.single-news .news article {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
} 

.single-news .single-news-image-singlepage {
    width: 94% !important;
    height: auto !important;
}

.single-news .single-news-image-singlepage img {
    width: 100% !important;
    height: 768px !important;
    object-fit: cover;
    border-radius: 7px;
}

.single-news {
    margin: 40px auto;
    
}

.single-news .about-contetn-desc span, .single-news .news-description {
    width: 100% !important;
}

.single-news .news-description {
    font-size: 20px !important;
    font-weight: 400 !important;
}

.single-description {
    width: 94%;
    margin: 0 auto;
}

.single-autor {
    width: 44%;
    display: flex;
    align-items: end;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    height: 55px;
}

.single-autor i {
    font-size: 25px;
    color: #040A33;
}

.single-autor-footer {
    width: 94%;
    display: flex;
    align-items: center;
    margin: 50px auto 80px auto;
}

.single-news .news .news-description-last {
    width: 100% !important;
}

.single-news .contact {
	margin: 45px auto 95px auto;
}

.single-news-title-last {
    width: 100%;
}

#menu-menu-1 .menu-item a {
    text-decoration: none;
}

#menu-menu-1 {
	margin-top: 35px;
}

.menu-item-img {
    display: none;
}

.menu-item.current-menu-item .menu-item-img {
    display: block;
}

.home-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }
}

.service-single {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    /* background-color: #1C3F3A; */
	background: linear-gradient(263.72deg, #1C3F3A 9.91%, #214B45 30.17%, #0B2723 90.09%);
    margin-bottom: 120px;
    justify-content: space-between;
	overflow: hidden;
    align-items: self-start;
	height: 620px;
	margin-top: 95px;
}

.service-single-left {
    font-size: 600px;
    color: #fff;
    height: 530px;
    position: relative;
}

.service-single-right {
    width: 64%;
}

.service-single-title-top {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    padding: 50px 50px 20px 50px;
}

.service-single-left-index {
    font-weight: 900;
    position: absolute;
    font-size: 1105px;
    left: -80px;
    border: 0;
    font-family: "Darker Grotesque", sans-serif;
    top: -104%;
}

.service-single-title-shortDesc {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.service-single-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-single-title {
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-single-title {
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-single-title::before {
    content: "";
    position: absolute;
    top: 20%; /* чтобы высота была 70% от блока */
    left: 0;
    height: 80%;
    width: 0;
    border-left: 2px solid #fff;
}

.service-single-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; /* начинаем с левого края */
    width: 60%;
    height: 0;
    border-bottom: 2px solid #fff;
}

.service-single-buttons {
    padding: 50px 80px 40px 0;
    color: #fff;
    display: flex;
    gap: 50px;
    justify-content: flex-end;
}

.service-single-buttons div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.service-single-buttons-call { 
    border: 1px solid #fff;
    padding: 10px 60px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 300;
    border-radius: 7px;
	transition: all 0.3s ease;
}

.service-single-buttons-call:hover {
	color: #1C3F3A;
	background-color: #fff;
}

.service-single-buttons-allservices {
    text-decoration: none;
    font-weight: 300;
    color: #fff;
}


.single-services-desc-title {
    color: #1C3F3A;
    font-size: 60px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 40px;
    text-align: center;
	max-width: 1180px;
	margin: 0px auto 40px auto;
}

.single-services-desc {
    width: 95%;
    margin: 0 auto;
    font-weight: 300;
    margin-bottom: 100px;
}

.userTestimonialsBlock {
    width: 95%;
    margin: 0 auto;
}

.userTestimonials {
    display: flex;
    border: 2px solid #1C3F3A;
    margin-bottom: 120px;
    padding: 50px 20px !important;
    gap: 80px !important;
    border-radius: 7px;
}
.userTestimonials-items-comment-bottomimg, .userTestimonials-items-comment-topimg {
    width: 55px;
    height: 55px;
}

.userTestimonials-items-comment-topimg {
    display: flex;
}

.userTestimonials-items-comment-bottomimg {
    display: flex;
    margin-left: auto;
}

.userTestimonials-items-comment span {
    width: 80%;
    display: flex;
    margin: 0 auto;
}

.userTestimonials-items-name {
    display: flex;
    flex-direction: column;
    width: 210px;
    margin-left: auto;
    position: relative;
    top: -20px;
}

.userTestimonials-items-name span:first-child {
	font-weight: bold;
}

.userTestimonials-items-name span:last-child {
	color: #49A598;
}

.services-home-services {
    padding: 45px 30px 100px 30px;
}

[data-name="your-name"], [data-name="your-message"] {
  width: 100%;
}

[data-name="your-phone"], [data-name="your-email"] {
  width: 50%;
}

[data-name="your-phone"] input, [data-name="your-email"] input {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* overlay для затемнения фона */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* прозрачный чёрный */
    z-index: 9; /* ниже меню */
    display: none; /* по умолчанию скрыт */
}


@media (max-width: 1440px) {
    
    .home-services-all {
        rotate: 0deg;
    }
    
    .documnets-img {
        width: 350px;
        height: 450px;
    }
    
    .about-images-left span {
        margin-left: 0px;
    }
    
    .service-single-right {
        width: 60%;
    }
    
    .home-about-rigth {
        /*max-width: 30%;*/
    }
    
    .home-about-rigth img {
        max-width: 80%;
        display: flex;
        margin-left: auto;
    }
    
    .home-about-left {
        padding-top: 80px;
    }
    
    .home-about-left-title { 
        font-size: 52px;
    }
    
    .services {
        width: auto;
        padding-left: 140px;
    }

	.footer {
		padding: 30px 0px !important;
	}

	.services, .contact {
		width: auto;
		padding-left: 130px;
	}

    
}


@media (max-width: 1380px) {
    .home-staff-item {
		align-items: center;
	}
}

@media (max-width: 1365px) {
    
    .home-services-all {
        min-height: 678px;
        rotate: 0deg;
    }
}

@media (max-width: 1250px) {
    .home-about-rigth img {
        width: 60%;
        
    }
    
    .home-about-rigth {
        right: -30px;
    }
}

@media (max-width: 1200px) {
    .menu {
        width: 400px;
    }
    
    .service-single-left {
        display: none;
    }
    .service-single-right {
        width: 100%;
        padding: 0px 30px;
    }


}

@media (max-width: 1010px) {
    .home-services {
        flex-direction: column;
    }
    
    .home-services-left, .home-services-right {
        width: 100%;
    }
    
    .home-services-right {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .home-services-all {
        min-height: auto;
    }
    
    .home-services-right .home-services-item {
        margin: 0px 10px 30px 10px;
    }
    
    .home-services {
        padding-bottom: 50px;
    }
}


@media (max-width: 992px) {
    .home-about-rigth {
        display: none;
    }
    
    .home-about-left-title {
        font-size: 45px;
    }
    
    .home-about-left {
        padding-top: 30px;
        max-width: 100%;
    }
    .home-about-left-desc {
        font-size: 18px;
    }
    
    .home-about-left-links a {
        font-size: 16px;
    }
    
    .home-about-left-links span {
        padding: 0px 20px;
    }
    
    .contact-info {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
		margin-top: 50px;
    }
    
    .contact-info-right {
        margin-top: 10px;
    }
    
    .documnets-items {
        padding-bottom: 60px;
    }
    
    .partners-img {
        width: 125px;
        height: 125px;
        object-fit: cover;
    }
    
    .about-images {
        flex-direction: column;
    }
    
    .about-images-left {
        width: 100%;
    }
    
    .about-images-left span {
        width: 100%;
		font-size: 36px;
    }
    
    .about-imag-right {
        width: 100%;
    }
    
    .about-imag-bottom {
        left: auto;
    }
    
    .single-services-desc-title {
        font-size: 34px;
    }
    
    .home-about {
        margin: 50px 40px
    }
    
    .home-about-left-title {
        
    }
    
    .services {
        padding-left: 95px;
        margin: 0px 40px;
    }
    
}


@media (max-width: 768px) {
	 .menu {
      height: auto;
    }

    .header {
        margin: 15px 20px;
    }
    .contactForm .contact-form {
		margin-top: 50px;
	}	
    
    .header-title {
        /*font-size: 40px;*/
        padding: 25px 15px;
    }
    
    .menu-footer img {
        width: 80px;
    }
    
    .footer-2-section ul li {
        padding-bottom: 14px;
    }
    
    .footer-site-title {
        font-size: 30px;
		font-family: 'Mardoto';

    }
    
    .footer-3-section {
        font-size: 24px;
    }
    
    .footer-site-address, .footer-site-number {
        font-size: 14px;
    }
    
    .home-about-rigth img {
        width: 200px;
    }
    
    .home-about-left-title {
        font-size: 26px;
    }
    
    .home-about-left-desc {
        font-size: 14px;
    }
    
    .home-about-left-links a {
        font-size: 12px;
    }
    
    .home-services-number {
        font-size: 300px;
        bottom: 82px;
        left: -25px;
    }
    
    .home-services-item-top img {
        width: 110px;
        height: auto;
    }
    
    .home-services-item-center {
        padding: 0 0 50px;
    }
    
    .home-services-item-bottom span {
        font-size: 20px;
    }
    
    .home-services-all {
        min-height: auto;
    }
    
    .home-services-all a {
        font-size: 24px;
    }
    
    .home-services-all img {
        width: 80px;
    }
    
    .home-tesitmonial span, .home-partners-title span {
        font-size: 36px;
    }
    
    .home-partners {
        justify-content: normal;
        flex-direction: column;
        gap: 25px;
    }
    
    .news {
        flex-direction: column;
    }
    
    .news article {
        width: 95%;
        margin: 20px auto;
    }
    
    .news article a img {
        width: 100%;
    }
    
    .service-single-title-top {
        font-size: 32px;
    }
    
    .service-single-title-top {
        padding: 30px 10px 10px 20px;
    }
    
    .service-single-title-shortDesc {
        margin-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-logo img, .header-menuBar img, .header-close img {
        height: 50px;
    }
    
    .services, .contact {
        margin: 0px auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left:0px;
    }

}


@media (max-width: 576px) {
    
    .menu-item-text {
        font-size: 18px;
    }
    
    .menu-footer {
        padding-top: 35px;
    }
    
    .menu {
        width: 100%;
    }
    
    .header-close img {
        /*width: 40px;*/
        /*padding: 11px 13px 11px 13px;*/
    }
    
    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

	.footer-1-section, .footer-3-section {
		margin-left: 0px !important;
		margin-right: 0px !important;
	}
    
    .footer-1-section {
        align-items: center;
        padding-bottom: 20px;
    }
    
    .footer-2-section ul {
        padding: 0;
        text-align: center;
    }
    
    .footer-3-section {
        flex-direction: row !important;
        gap: 10px;
    }
    
    .home-about-rigth {
        display: none;
    }
    
    .home-services-number {
        font-size: 180px;
        bottom: 10px;
        left: -13px;
    }
    
    .home-services-item-top img {
        right: 25px;
        top: 15px;
        width: 70px;
    }
    
    .home-services {
        padding: 0px 0px 50px 0px;
    }
    
    .home-services-item-top {
        height: 125px;
    }
    
    .home-services-item-center img {
        width: 35px;
    }
    
    .home-services-item-bottom a {
        font-size: 18px;
    }
    
    .home-tesitmonial span, .home-partners-title span {
        font-size: 30px;
    }
    
    .home-partners-link a {
        font-size: 16px;
    }
    
    .home-tesitmonial img {
        width: 40px;
    }
    .home-tesitmonial {
        padding: 0px 20px 40px 20px;
    }
    
    .home-tesitmonial-item-top img {
        width: 90px;
    }
    
    .home-tesitmonial-item-right span {
        font-size: 18px;
    }
    
    .home-tesitmonial-item-bottom {
        font-size: 16px;
    }
    
    .inline-inputs {
        display: flex;
        flex-direction: column;
        width: calc(80% + 70px);
    }
    
    .inline-inputs input {
        width: 100%; 
    }
    
    .contact-info div span {
        font-size: 24px;
    }
    
    .documnets-img {
        width: 300px;
        height: 400px;
    }
    
    .parnters-desc {
        font-size: 14px;
    }
    
    .single-autor-footer {
        flex-direction: column;
        justify-content: center;
    }
    
    .single-autor {
        width: 100%;
        justify-content: center;
    }
    
    .single-news .news .news-description-last {
        width: 100% !important;
    }
    
    .single-news-title-last {
        width: 100%;
    }
    
    .service-single-right {
        width: 100%;
        padding: 0px 10px;
    }
    
    .service-single-title-top {
        font-size: 28px;
    }
    
    .service-single-title-shortDesc {
        font-size: 16px;
    }
    
    .service-single-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .single-services-desc-title {
        font-size: 28px;
    }
    
    [data-name="your-phone"], [data-name="your-email"] {
      width: 100%;
    }
}


@media (max-width: 420px) {
    /*.header-title {*/
    /*    font-size: 30px;*/
    /*}*/
    
    .header-logo img {
        /*width: 40px;*/
    }
    
    /*.header-menuBar i {*/
    /*    font-size: 25px;*/
    /*    padding: 15px 15px;*/
    /*}*/
    
    .languages li {
        font-size: 16px;
    }
    
    .menu-footer img {
        width: 60px;
    }
    
    .header-close img {
        /*width: 35px;*/
        /*padding: 8px 9px 8px 8px;*/
    }
    
    .home-about {
        padding: 0px 10px;
        width: auto;
    }
    
    .home-tesitmonial span, .home-partners-title span {
        font-size: 24px;
    }
    
    .contact-info {
        width: 95%;
    }
    
    .contactForm-desc {
        font-size: 14px;
    }
    
    .contact-form input, .contact-form textarea {
        padding: 20px 15px;
    }

    .parnters-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .parnters-name {
        justify-content: center;
    }
    
    .about-imag-bottom {
        width: 300px;
    }
    
    .service-single-title-top {
        font-size: 20px;
    }
    
    .service-single-title-shortDesc {
        font-size: 14px;
    }
    
    .inline-inputs {
        width: calc(70% + 70px);
    }

}

.header.sticky {
    position: fixed;
    top: -150px;
    left: 0;
    right: 0;
    margin: 0 40px;
    background: #fff;
    transition: top 0.3s ease;
    z-index: 9999;
    margin: 30px 40px;
    max-width: 1360px;
    margin: 0 auto;
}

.header.sticky.show {
    top: 20px;
}


