:root {
    --fontFamily-Gilroy: 'GilroyFont', sans-serif;
    --fontFamily-Montserrat: 'MontserratFont', sans-serif;
    --accentColor: #93D500;
    --accentColorHover: #81bd00;
    --colorText: #404649;
}

/**/
body {
    min-width: 320px;
    font-family: var(--fontFamily-Gilroy);
    font-size: 17px;
    color: var(--colorText);
    background-color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    box-sizing: content-box;
    padding: 0 30px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.h2 {
    font-family: var(--fontFamily-Montserrat);
    font-weight: 700;
    font-size: 40px;
    line-height: 67px;
    color: var(--colorText);
}


.line {
    position: relative;
    z-index: 1;
}

.line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    /*width: 10000px;*/
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    height: 100%;
    background-color: white;
    z-index: -1;
}

/**/
.btn {
    width: 250px;
    height: 70px;
    font-family: var(--fontFamily-Gilroy);
    font-size: 22px;
    font-weight: 700;
    color: white;
    background: var(--accentColor);
    border: none;
    border-radius: 8px;
    transition: background-color .3s;
}

.btn:hover {
    background: var(--accentColorHover);
}

/**/
.hamburger {
    display: none; /*inline-block;*/
    position: fixed;
    top: 43px;
    right: 30px;
    /*padding: 15px 15px;*/
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 100;
}

.hamburger-box {
    width: 30px; /*40px*/
    height: 23px; /*24px*/
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px; /*40px*/
    height: 4px;
    background-color: var(--colorText);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: white;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px; /*-10px*/
}

.hamburger-inner::after {
    bottom: -8px; /*-10px*/
}


.hamburger--3dy-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent;
    transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/**/
.header__bx {
    height: 110px;
    display: flex;
    align-items: center;
}

/**/
.header__logo {
    flex-shrink: 0;
}

/**/
.menuBx {
    margin-left: 162px;
    margin-right: 70px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 0 50px;
}

.menu li {
    white-space: nowrap;
}

.menu a {
    border-bottom: 1px solid transparent;
    transition: border-bottom-color .3s;
}

.menu a:hover {
    border-bottom: 1px solid var(--colorText);
}

/**/
.contacts {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    border-left: 1px solid #cecece;
    padding-left: 70px;
}

.contacts a {
    line-height: 20px;
}


/**/


.servicesIT {
    height: 590px;
    background-image: url("../img/bsIT.jpg");
    background-size: cover;
}

.servicesIT .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.servicesIT__title {
    font-weight: 700;
    font-size: 46px;
    line-height: 57px;
    color: white;
    margin-bottom: 25px;
}


/**/


.about {
    padding-top: 100px;
}

/**/
.about__top {
    display: grid;
    grid-template-columns: 373px 1fr;
    align-items: center;
}

.about__top-left {
    height: 220px;
    border-right: 1px solid #cecece;
    display: flex;
    justify-content: center;
}

.about__top-left img {
    width: 308px;
    margin-right: auto;
}


.about__top-right {
    line-height: 35px;
    padding-left: 63px;
}

.about__top-right span {
    font-weight: 700;
}

/**/
.about__center {
    padding-top: 96px;
}

.about__center-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 380px));
    grid-gap: 60px 80px;
    margin-top: 64px;
}

.about__center-item {
    text-align: center;
}

.about__center-img {
    margin-bottom: 15px;
}

.about__center-text {
    line-height: 28px;
}

/**/
.about__bottom {
    height: 485px;
    background-image: url("../img/about/aboutBg.jpg");
    background-size: cover;
    background-position-x: center;
    margin-top: 67px;
}

.about__bottom .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.about__bottom-text {
    font-size: 30px;
    line-height: 43px;
    color: white;
    margin-bottom: 36px;
}


/**/


.ourServices {
    padding-top: 26px;
}

.ourServices__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.ourServices__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/**/
.ourServices__buttons .btn {
    width: fit-content;
    height: 87px;
    font-size: 20px;
    font-weight: 400;
    color: var(--colorText);
    background-color: transparent;
    border: 1px solid var(--accentColor);
    padding: 0 41px;
}

.ourServices__buttons .btn.active {
    color: white;
    background-color: var(--accentColor);
    font-weight: 700;
}

/**/
.ourServices__list {
    display: none;
    overflow: hidden;
    padding-bottom: 60px;
}

.ourServices__list.active {
    display: block;
}

.ourServices__list-item {
    width: 48.3%;
    line-height: 28px;
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-position: 0 6px;
    padding-left: 32px;
    padding-right: 30px;
    float: left;
    margin-bottom: 36px;
}

/**/
.ourServices__desc {
    height: 348px;
    background-image: url("../img/ourServicesBg.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
}

.ourServices__desc-text {
    color: white;
    font-size: 30px;
    line-height: 43px;
    margin-left: -65px;
}


/**/


.work .line::after {
    width: 421px;
}

/**/
.work {
    padding: 96px 0;
}

.workBx {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 420px));
    grid-template-rows: 202px;
    grid-gap: 25px 17px;
    margin-top: 33px;
}

.work__item {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 18px;
    padding: 28px 20px 24px 24px;
}

.workBx__num {
    font-weight: 900;
    font-size: 60px;
    color: var(--accentColor);
}

.workBx__title {
    font-weight: 700;
    line-height: 28px;
}

.workBx__text {
    line-height: 25px;
}


/**/


.contactForm {
    background-image: url("../img/contactFormBg.jpg");
    background-size: cover;
    padding: 31px 0 42px 0;
}

.contactForm .h2 {
    color: white;
    margin-bottom: 5px;
}

.contactForm__text {
    color: white;
    line-height: 25px;
    margin-bottom: 27px;
}

/**/
.contactForm__form {
    position: relative;
    max-width: 550px;
}

.contactForm__control {
    height: 60px;
}

.contactForm__control input {
    width: 100%;
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    padding: 0 0 10px 0;
}

.contactForm__control input::placeholder {
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.8);
}

.contactForm__control textarea {
    width: 100%;
    height: 36px;
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    resize: none;
}

.contactForm__control textarea::placeholder {
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.8);
}

/**/
.contactForm__assent {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin: -3px 0 30px 0;
}

.contactForm__assent input {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid white;
    border-radius: 4px;
}

.contactForm__assent input:checked {
    background-color: var(--accentColor);
    border-color: var(--accentColor);
}

.contactForm__assent label {
    font-size: 12px;
    color: white;
}

/**/
.contactForm__form .btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contactForm__form .btn[data-submit="true"] {
    background-color: transparent;
}

.contactForm__form .btn[data-submit="true"]::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 400%;
    background-color: var(--accentColor);
    transition: 1s;
    animation: send 2s linear infinite;
}

@keyframes send {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contactForm__form .btn[data-submit="true"]::after {
    content: '';
    position: absolute;
    inset: 3px;
    background-color: black;
    border-radius: 8px;
}

.contactForm__form .btn[disabled] {
    cursor: not-allowed;
}

.contactForm__form .btn[disabled][data-submit="false"] {
    opacity: .8;
}

.contactForm__form .btn[disabled][data-submit="false"]:hover {
    background-color: var(--accentColor);
}

.contactForm__form .btn span {
    z-index: 1;
}

/**/
.successSendForm {
    position: absolute;
    inset: 0;
    font-size: 30px;
    font-weight: 700;
    color: var(--accentColor);
    backdrop-filter: blur(3px);
    display: none;
    justify-content: center;
    align-items: center;
}

.successSendForm.active {
    display: flex;
}

.successSendForm span {
    animation: succes .5s forwards;
}

@keyframes succes {
    from {
        transform: translateY(100px);
    }
    to {
        transform: translateY(-50px);
    }
}


/**/


.footer {
    color: white;
    background-color: #404649;
    padding: 55px 0 44px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer span,
.footer a {
    font-size: 14px;
    line-height: 20px;
    display: block;
}

.footer__logo {
    margin-bottom: 25px;
}

/**/
.footer__right {
    text-align: right;
}

.footer__right-top {
    position: relative;
    margin-bottom: 40px;
}

.footer__right-top::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 50px;
    height: 1px;
    background-color: white;
}























.servicesWrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
 
/* Кнопки остаются вертикальными */
.ourServices__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
 
/* Используем ваши стили кнопок */
.ourServices__buttons .btn {
  width: 280px;
  height: 50px;
  font-family: var(--fontFamily-Gilroy);
  font-size: 20px;
  font-weight: 400;
  color: var(--colorText);
  background-color: transparent;
  border: 1px solid var(--accentColor);
  border-radius: 8px;
  padding: 0 20px;
  text-align: left;
  transition: background-color .3s;
}
 
.ourServices__buttons .btn.active {
  color: white;
  background-color: var(--accentColor);
  font-weight: 700;
}
 
.btn:hover {
  background: var(--accentColorHover);
  color: white;
}
 
/* Контент */
.ourServices__list {
  display: none;
}
 
.ourServices__list.active {
  display: block;
}
 
.ourServices__desc-txt {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
  color: var(--colorText);
}
 
.ourServices__list-item {
  width: 100%;
  line-height: 28px;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-position: 0 6px;
  padding-left: 32px;
  margin-bottom: 16px;
}
 
/* Адаптив */
@media (max-width: 500px) {
  .servicesWrapper {
    flex-direction: column;
  }
 
  .ourServices__buttons {
    flex-direction: column;
    align-items: center;
  }
 
  .ourServices__buttons .btn {
    width: 100%;
    text-align: center;
  }
}
 