.main-page .header {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
}
.main-page .header a {
    color: #fff;
}
.main-page .btn-menu .icon span {
    background: #fff;
}
.main-page .border-link:before {
    background: #ffffff;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 150px;
    color: #533948;
    z-index: 99;
}

.header .row {
    width: 100%;
    padding: 0 70px;
    align-items: center;
}

.header a {
    font-size: 18px;
}

.header .logo {
    max-width: 253px;
    border: 0;
}

.border-link {
    position: relative;
    padding-right: 15px;
    padding-bottom: 5px;
}
.border-link:before {
    content: '';
    position: absolute;
    background: #633151;
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}
.border-link:hover:before {
    width: 100%;
}


/*** Mobile top menu ***/

.header .btn-menu {
    width: 100px;
    display: flex;
    align-items: center;
    color: #633151;
    font-size: 18px;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
}
.btn-menu .icon {
    display: block;
    position: relative;
    width: 25px;
    height: 16px;
    margin-right: 20px;
}
.btn-menu .icon span {
    background: #633151;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
}
.btn-menu .icon span.top {
    top: 0;
}
.btn-menu .icon span.medium {
    top: 7px;
}
.btn-menu .icon span.bottom {
    bottom: 0;
}

.top-menu-col .logo {
    display: none;
    position: absolute;
    left: 20px;
    top: 30px;
    max-width: 150px;
    z-index: 999;
}
.btn-close {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 85px;
    top: 60px;
    cursor: pointer;
    z-index: 999;
}
.btn-close:before,
.btn-close:after {
    content: '';
    background: #fff;
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
}
.btn-close:after {
    transform: rotate(-45deg);
}

.top-menu-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: #132f4c;
    color: #ffffff;
    overflow: hidden;
    transition: 0.3s;
    z-index: 99;
}
.top-menu-wrap.open {
    width: 100%;
    height: 100%;
}
.top-menu-col {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-size: cover;
    padding: 0 100px 100px;
    transition: 0.3s;
    opacity: 0;
}
.top-menu-wrap.open .top-menu-col {
    transition-delay: 0.5s;
    opacity: 1;
}
.top-menu-col .wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 120px;
}

.dropdown-wrap {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.dropdown-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 315px;
    height: 100%;
    padding-top: 120px;
    background: #132f4c;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    overflow: auto;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
.dropdown-list.open {
    opacity: 1;
    pointer-events: all;
}
.dropdown-list-item {
    padding: 0 20px 20px 0;
}
.dropdown-list-item a,
.dropdown-list-item span {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    cursor: pointer;
}
.dropdown-list-item a:hover,
.dropdown-list-item span:hover {
    color: #fff;
}
.dropdown-list-item .title {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 600;
}
.dropdown-list-item a.border-link:before,
.dropdown-list-item span.border-link:before {
    background: #fff
}

.top-menu {
    display: flex;
    height: 100%;
}

.top-menu .nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 315px;
    height: 100%;
    overflow: auto;
}
.top-menu .nav-link {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: normal;
    display: inline-block;
    padding: 10px 20px 5px 0;
    color: #fff;
}
.top-menu .nav-link.border-link:before {
    background: #fff
}

.top-menu-col .col-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #ffffff;
}
.top-menu-col .col-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: 0.3s;
}
.top-menu-col .col-link:hover:before {
    opacity: 0.3;
}

.top-menu .text-block {
    position: relative;
    z-index: 2;
}
.top-menu .text-block .title {
    display: inline-block;
    font-size: 36px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
    padding: 0 20px 0 0;
    color: #ffffff;
}
.top-menu .col-link .text-block .border-link:before {
    background: #ffffff;
}
.top-menu .col-link:hover .text-block .border-link:before {
    width: 100%;
}