/* Пользовательские настройки */
:focus {
    outline: none !important;
    -webkit-box-shadow: unset !important;
            box-shadow: unset !important;
}

.purple {
    color: #3427D3;
}

/* Подчеркивание ссылок */
.line {
    display: inline-block;
    color: #454545;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}
.line:after {
    display: block;
    content: "";
    background-color: #454545;
    height: 2px;
    width: 0%;
    left: 50%;
    position: absolute;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
}
.line:hover:after,
.line:focus:after {
    width: 100%;
}

/* Вкладки */
.tabs__block .elementor-tab-title {
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin: 20px;
}

.tabs__block .elementor-tab-title:hover {
    color: #3427D3;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.tabs__block .elementor-tab-title.elementor-active {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 1px 20px rgba(101, 148, 247, 0.25);
    -webkit-box-shadow: 0px 1px 20px rgba(101, 148, 247, 0.25);
}
/*------------------------------------------------------*/