:root {
    --primary-color: #1890FF;
    --color-error: #ff3333;

}
body {
    font-family: 'Inter', sans-serif;
}

.btn {
    border-radius: 2.3em;
    padding: .75em 1.5em;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    background-color: #2584d1;
    border-color: #2584d1;
}
.btn-equipment {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-equipment:hover, .btn-equipment:focus, .btn-equipment:active, .btn-equipment.active, .open>.dropdown-toggle.btn-equipment {
    background-color: #fff;
    border-color: #2584d1;
    color: var(--primary-color);
}
.background-gray {
  background-color: #E7F3FB;
}
section .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 991px) {
  section .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

}





/* header */

header {
    min-height: 60px;
}
header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px
}

header .header .right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1em
}
 .container {
    max-width: 400px;
}
header .container,
footer .container {
    max-width: 1760px;
}
header .logo img {
    max-width: 150px;
    width: 100%;
}


/* footer */
footer {
    padding: 48px 24px;
}

header a,
footer a {
    color: #43505E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}
header ul,
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .menu-desktop ul {
    display: none;
}



@media screen and (min-width: 991px) {

    header,
    header .header {
        min-height: 94px;
    }
    header .menu-desktop ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: clamp(1em, 1.6vw, 4em);
    }
    header .logo img {
        max-width: 240px;
    }
    footer {
        padding: 60px 92px;
    }
    footer .container .row {
        padding: 32px;
    }
     .container {
        max-width: 1320px;
    }
}