/*--- Containers ---*/
.mi-container {
    max-width: 1144px;
    margin: 0 auto;
}
#main {
    min-height: 62vh;
}
.mi-container-full {
    width: 100%;
}

/*--- Link ---*/
.mi-link {
    font-family: HelveticaNeueCyr-Roman, serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: var(--font-main);
    text-decoration: none!important;
    padding: 7px;
}
.mi-link:hover {
    color: var(--main-red);
}
.mi-link.active {
    border-bottom: 1px solid #000000;
    font-weight: bold;
}
/*--- Transition ---*/
.mi-transition {
    transition-property: all;
    transition-timing-function: ease-in;
    transition-delay: 0ms;
    transition-duration: 300ms;

}

/*--- Logo ---*/
.mi-logo {
    width: 220px;
    height: 40px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.mi-logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--- Section ---*/
.mi-section-title {
    text-align: center;
}
.mi-section-title h1 {
    margin-bottom: 5px;
}

/*--- Toggle ---*/
.mi-toggle {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    color: #7C7C7C;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    cursor: pointer;
}
.mi-toggle img {
    margin-left: 6px;
}

/*--- Service Item ---*/
.mi-service-item {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(24, 188, 219, 0.5);
    box-shadow: 0 12px 37px rgba(5, 35, 40, 0.1);
    padding: 30px 40px;
    max-width: 750px;
    background-image: url('/images/service-item-image.png');
    background-position: top right;
    background-size: 104% 114%;
    background-repeat: no-repeat;
    margin: 0 auto;
}
.mi-service-item-title {
    text-align: center;
    color: #000000;
    font-weight: 800;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.mi-service-item-text {
    margin-bottom: 30px;
}