* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600 !important;
    font-style: italic !important;
    font-size: 20px !important;
    color: #ffffff !important;
}

p {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600 !important;
    font-style: italic !important;
    font-size: 20px !important;
    color: #ffffff !important;
}


a{
    text-decoration: none !important;
}

ol, ul {
    list-style: none;
}

section {
    background-color: #151C1F;
}

body {
    background-color: #151C1F !important;
}


/* WILL CHANGE */
.content,
.left-side__logo img,
.drop-line,
.about-company,
.gallery-item,
.benefits-wrapper__item,
.benefits-title {
    will-change: transform;
}


/* Header */

.home {
    height: 1024px;
    background-image: url(../img/background.jpg);
    background-size: cover;
    z-index: -1;
}

.shadow {
    height: 100%;
    width: 100%;
    background: linear-gradient(#171717b0, #000000b0);
}

.left-side__logo {
    height: 1024px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.green_logo {
    margin-bottom: 53px;
}

.right-side__services {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drop-line {
    height: 300px;
    width: 3px !important;
    background-color: #494949;
}

.home-services {
    max-width: 450px;
}

/* Контейнер формы */
.home-contact {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #1b1f2a;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Заголовок формы */
.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* Поля ввода */
.form-input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: none;
    border-radius: 10px;
    background: #2a2f3c;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #b0b3b8;
}

.form-input:focus {
    outline: none;
    background: #3a3f4f;
    box-shadow: 0 0 0 2px #2a7fff;
}

/* Кнопка */
.form-btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    background: #2a7fff !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: #1a5fe0;
    box-shadow: 0 4px 15px rgba(42,127,255,0.5);
}

/* Статус формы */
.form-status {
    padding-top: 10px;
    font-size: 10px;
    min-height: 18px;
    text-align: left;
    transition: all 0.3s ease;
}

.form-status.success {
    color: #4caf50;
}

.form-status.error {
    color: #f44336;
}

/* Текстarea */
textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Адаптив */
@media (max-width: 576px) {
    .home-contact {
        padding: 30px 15px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-input {
        font-size: 15px;
    }

    .form-btn {
        font-size: 15px;
    }
}


.service {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}

.service-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.service-title {
    margin: 30px 15px;
    z-index: 1;
}
.search-icon {
    width: 50px;
    height: 50px;
    z-index: 1;
}

/* FOOTER SECTION */

/* Футер */
.footer {
    background: #1b1f2a; /* тёмный фон */
    color: #fff;
    padding: 200px 0;
    font-family: 'Inter', sans-serif;
}

.footer .pages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .pages-list-item {
    margin-bottom: 12px;
}

.footer .pages-list-item a {
    color: #b0b3b8;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

.footer .pages-list-item a:hover {
    color: #2a7fff;
    transform: translateX(5px);
}

/* Колонки футера */
.footer .footer-pages,
.footer .footer-contact-info,
.footer .footer-social-media {
    margin-bottom: 30px;
}

/* Заголовки колонок */
.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

/* Контакты */
.footer-contact-info li {
    font-size: 15px;
    color: #b0b3b8;
}

.footer-contact-info li i {
    margin-right: 8px;
}

/* Соцсети */
.footer-social-media li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #2a2f3c;
    color: #fff;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social-media li a:hover {
    background: #2a7fff;
    transform: translateY(-3px);
}

/* Адаптив */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        text-align: center;
    }

    .footer .footer-pages,
    .footer .footer-contact-info,
    .footer .footer-social-media {
        margin-bottom: 20px;
    }

    .footer-social-media li a {
        margin-right: 8px;
        margin-bottom: 8px;
    }
}


/* ABOUT SECTION */

.about {
    padding-top: 220px;
    background-color: #151C1F;
}

.about-company {
}

.title {
    font-size: 28px !important;
    color: #fff;
}

.title::after{
    content: '';
    display: flex;
    width: 60px;
    height: 3px;
    margin-top: 16px;
    margin-bottom: 40px;
    background-color: #D9D9D9;
}

.text {
    text-align: justify;
    font-size: 20px;
}

.about-company__gallery {
    width: auto;
}

.about-company__gallery{
    max-height: 1500px;
}   


.gallery-item {
    max-width: 400px !important;
    text-align: center;
    border-radius: 5px 5px 5px 0px;
    padding-top: 45px;
}

.gallery-item:nth-child(2n) {
    margin-left: auto;
}

.gallery-item:nth-child(2n - 1) {
    padding-left: 20px;
}

.gallery-item__image {
    max-width: 400px !important;
    max-height: 400px !important;
    border-radius: 5px 5px 0px 0px;
}

.gallery-item__text {
}

/* THIRD SECTION */

.technologies {
    margin-top: 200px;
    background-color: #151C1F;
}

.technologies-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 70px;
}

.wrapper-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.icon-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 15px;
    background-color: #1B2A30;
}

.icon {
    max-width: 120px;
    padding: 15px;
}

.item-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}


.technologies-right-column {
    height: auto;
}

.technologies-right-column > .technology-topic:last-child {
    padding-top: 150px !important;
    margin-bottom: 210px;
}

.technology-topic {
    text-align: justify;
    padding-top: 150px;
    margin-bottom: 100px;
}


.technology-topic__title {
    text-align: right;
    margin-bottom: 30px;
    font-size: 24px;
    color: #fff;
}

.technology-topic__text {
    font-size: 17px !important;
}

.technologies-left-column {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.left-content {
    width:40vw;
	height:35vw;
	border-radius:20px;
	position:relative;
	overflow:hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B2A30;
}


.technology-image-cont {
    position:absolute;
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B2A30;
}

.technology-topic__image {
    max-width: 80%;
    max-height: 60%;
}


/* BENEFITS SECTION */

.benefits {
    background-color: #151C1F;
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

/* SERVICES SECTION */

/*  */

.service {
  cursor: pointer;
  transition: all 0.35s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

.service.active {
  opacity: 1;
  transform: scale(1);
}

.service-description__text {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-description__text.fade-out {
  opacity: 0;
  transform: translateY(10px);
}


/*  */
.swiper {
    margin: 0 !important;
}


.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    z-index: -1;
}

.swiper-slide {
    position: relative;
    border-radius: 20px;
}

.slide-title {
    text-align: center;
    padding: 30px;
    margin: 0 !important; 
    color: #fff;
}

.services {
    padding-top: 200px;
    background-color: #151C1F;
}

.services-cont {
    flex-direction: column;
    padding-top: 0px;
}

.services-title {
    margin-right: auto;
}

.service-wrapper {

}

.service {
    max-width: 550px;
}

.services-line {
    margin-right: 20px;
}

.services-description {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-description__text {
    font-size: 18px !important;
}

.service-description__button {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: auto;
    background-color: transparent;
    color: #fff;
}

.arrow-icon {
    padding-left: 20px;
}

/* CLIENTS SECTION */

.clients {
    padding-top: 150px;
}

.clients-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

@keyframes sliderC {
    from {
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.clients-carousel {
    position: relative;
    overflow: hidden;
    padding: 60px 0px;
    white-space: nowrap;
    background-color: #1B2A30;
}

.clients-carousel::before,
.clients-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #1B2A30);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #1B2A30);
}

.clients-carousel__logos {
    display: inline-block;
    animation: 20s sliderC infinite linear;
}

.clients-carousel:hover .clients-carousel__logos {
    animation-play-state: paused;
}


.clients-carousel__logos img{
    height: 75px;
    margin: 0 50px;
    transition: transform 0.5s ease;
    transform: scale(1);
}

.clients-carousel__logos img:hover {
    transform: scale(1.1);
}

/* STUFF CONTENT */

.staff {
    padding-top: 200px;
    margin-bottom: 200px;
    background-color: #151C1F;
}

.staff-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.staff-card {
    width: 25%;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.5s linear;
    transform: scale(1);
    background-color: #1B2A30;
}

.staff-card:hover {
    transform: scale(1.05);
    transition: transform 0.5s linear;
    cursor: pointer;
}

.stuff-card__image {
    width: 100% !important;
    max-height: 450;
    border-radius: 5px 5px 0px 0px;
}

.stuff-card__name {
    padding-top: 15px;
    font-size: 20px !important;
    color: #fff;
}

.stuff-card__desc {
    font-size: 16px !important;
    color: #cacaca !important;
}





/*  */


