* {
    outline: none;
}
.form-control:focus {
    border-color: var(--bs-border-width) solid var(--bs-border-color);;
    box-shadow: none;
}
.__header-bg {
    background: rgba(255, 255, 255, .95);
}
.__wrapper {
    position: relative;
}
.__wrapper .__logo-wrapper {
    height: 40px;
}
.__wrapper .__logo-wrapper .__logo {
    position: absolute;
    top: -.75rem;
    left: 0;
    width: 175px;
}
.__wrapper .__menu-link {
    transition: all .15s;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: transparent;
}
.__wrapper .__menu-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    color: #781623;
}
.__wrapper .__menu-link + .__menu-link {
    margin-left: 15px;
}
.__wrapper .__title {
    color: #781623;
}
.__wrapper .__image-wrapper {
    position: relative;
}
.__wrapper .__image-wrapper .__image {
    transition: all .15s;
    z-index: 1;
    border-radius: 5px;
}
.__wrapper .__image-wrapper:before {
    content: '';
    width: 20px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background: #781623;
    z-index: 10;
    display: none;
}
.__wrapper .__image-wrapper:after {
    content: '';
    width: 2px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: #781623;
    z-index: 10;
    display: none;
}
.__wrapper .__image-wrapper:hover .__image {
    transform: scale(1.05);
}
.__wrapper .__spec {
    background: #333333;
    color: #fff;
    padding: 7.5px 15px;
    padding-bottom: 10px;
    border-radius: 5px;
    margin-top: 15px;
    text-decoration: none;
    transition: all .15s;
}
.__wrapper .__spec:hover {
    background: #781623;
}
.__wrapper .__spec-table tr td:first-child {
    font-weight: 500;
}
.__button {
    background: #333333;
    border-radius: 5px;
    border: 1px solid #333333;
}
.__button:hover {
    background: #781623;
    border-radius: 5px;
    border: 1px solid #781623;
}
.__button:active,
.__button:active:hover {
    background: #781623;
    border-radius: 5px;
    border: 1px solid #781623;
}
@media (min-width: 1200px) {
    .__wrapper .__logo-wrapper {
        height: 50px;
    }
    .__wrapper .__logo-wrapper .__logo {
        width: 200px;
    }
}