/* header */
@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}
@keyframes fadeInUpFast {
    from {
        opacity: 0;
        transform: translate3d(0,20%,0)
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}
@keyframes slideInUpFast {
    from {
        transform: translate3d(0,30%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,0,0)
    }
}
.bgWhite {
    background-color: #f3f3f3
}
.slideInUpFast {
    animation-name: slideInUpFast
}

.slideInDown {
    animation-name: slideInDown
}

.slideInLeft {
    animation-name: slideInLeft
}

.slideInRight {
    animation-name: slideInRight
}

.slideInUp {
    animation-name: slideInUp
}

.slideOutDown {
    animation-name: slideOutDown
}

.slideOutLeft {
    animation-name: slideOutLeft
}

.slideOutRight {
    animation-name: slideOutRight
}

.slideOutUp {
    animation-name: slideOutUp
}

.fadeInUpFast {
    animation-name: fadeInUpFast
}

.fadeIn {
    animation-name: fadeIn
}

.fadeInDown {
    animation-name: fadeInDown
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

.fadeInLeft {
    animation-name: fadeInLeft
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

.fadeInRight {
    animation-name: fadeInRight
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

.fadeInUp {
    animation-name: fadeInUp
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

.fadeOut {
    animation-name: fadeOut
}

.fadeOutDown {
    animation-name: fadeOutDown
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

.fadeOutRight {
    animation-name: fadeOutRight
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

.fadeOutUp {
    animation-name: fadeOutUp
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

.animated {
    animation-duration: .7s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.delay-1s {
    animation-delay: 1s
}

.animated.delay-2s {
    animation-delay: 2s
}

.animated.delay-3s {
    animation-delay: 3s
}

.animated.delay-4s {
    animation-delay: 4s
}

.animated.delay-5s {
    animation-delay: 5s
}

.animated.delay-6s {
    animation-delay: 6s
}

.animated.fast {
    animation-duration: .8s
}

.animated.faster {
    animation-duration: .5s
}

.animated.slow {
    animation-duration: 2s
}

.animated.slower {
    animation-duration: 3s
}
.clearfix:after,.clearfix:before {
    content: ' ';
    display: table
}
.goBack{
    display: none;
}
header.bg-black-header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    clear: both
}
header .pullLeft {
    position: relative;
    float: left;
    width: 50%;
    text-align: left;
    padding-left: 5%;
    padding-top: 30px
}
header .pullright {
    position: relative;
    float: right;
    text-align: right;
    width: 50%;
    z-index: 100
}
.overlay {
    position: fixed;
    width: 80%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0,0,0,.9);
    display: none;
    z-index: 97
}
.nav-icon1 {
    width: 30px;
    height: 25px;
    position: absolute;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 10%;
    top: 35px
}

.nav-icon1 span{
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: .25s ease-in-out
}

.nav-icon1 span:nth-child(1) {
    top: 0
}

.nav-icon1 span:nth-child(2) {
    top: 6px
}

.nav-icon1 span:nth-child(3) {
    width: 60%;
    top: 12px;
    right: 0;
    left: auto
}

.nav-icon1.open span:nth-child(1) {
    top: 6px;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px
}

.nav-icon1.open span:nth-child(3) {
    width: 100%;
    top: 6px;
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg)
}
.menuLinks {
    padding: 80px 0 0;
    margin: 0;
    text-align: left;
    max-width: 340px;
    margin: 0 auto
}

.menuLinks .menus {
    display: none;
    margin: 60px auto
}

.menuLinks li a {
    font-size: 40px;
    color: #a3a3a3;
    font-family: Baskerville;
    text-decoration: none
}

.menuLinks li a.smallLink {
    font-size: 25px
}
/* header */
.loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999
}

.loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nw-bg-black {
    background: #000;
    margin-bottom: -2.5rem !important;
}

.featuresWrap .ftrBlck {
    padding: 0 0.313rem;
    display: inline-block;
    width: 10%;
    vertical-align: top
}

.featuresWrap .ftrBlck a {
    transition: all .5s ease-in-out;
    font-size: 1.7rem
}

.featuresWrap .ftrBlck a.active,
.featuresWrap .ftrBlck a:hover {
    position: relative;
    top: 0;
    color: #fff
}

.featuresWrap .ftrBlck a.active:before,
.featuresWrap .ftrBlck a:hover:before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: #000;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 2px solid #fff;
    transition: all .5s ease-in-out;
    top: 2px
}

.featuresWrap:before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 100rem;
    height: 5px;
    left: 0;
    margin: auto;
    right: 0;
    top: 7px;
    background: url(/images/default-source/burgundy-private/png/horizontal-line.png) no-repeat;
    background-size: contain
}

.featuresWrap .ftrBlck a {
    position: relative;
    color: #a3a3a3;
    text-decoration: none;
    display: block;
    padding: 3rem 0
}

.featuresWrap .ftrBlck a:before {
    content: '';
    width: 15px;
    height: 15px;
    background: #5b5b5b;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto
}

.animated.fast {
    animation-duration: .8s
}

.animated.faster {
    animation-duration: .5s
}

.wrapper {
    height: 100vh !important;
    margin: 0 auto;
    overflow: hidden;
    text-align: center
}

.arrowUp {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 40px;
    cursor: pointer;
    display: none
}

.featuresWrap .ftrBlck a {
    padding: 1.9rem 0 !important;
    font-size: 1.1rem !important;
}

.sliderTitle {
    font-size: 4.25rem !important;
}

.explore {
    padding: 0.625rem 0 !important;
    margin: 1.875rem auto 0 !important;
    font-size: 0.813rem !important;
}

.featuresWrap .ftrBlck a.active:before,
.featuresWrap .ftrBlck a:hover:before {
    width: 0.625rem !important;
    height: 0.625rem !important;
}

.insideWrap {
    max-width: 43.75rem !important;
    font-size: 2.5rem !important;
}

.onepage-wrapper .section {
    color: #a3a3a3;
}

.burgundyPop .popCont {
    text-align: center !important;
}

.burgundyPop {
    width: 100%;
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 9999;
    height: 100%;
    background: rgb(255 255 255/ 50%);
}

.popCont {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popCont a img {
    margin: 0 auto;
    display: block;
    border: solid 2px #ababab;
}

.close {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: normal;
    font-size: 15px;
    position: absolute;
    right: 5px;
    top: -10px;
    background: #97144d;
    border-radius: 50%;
    color: #fff;
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.widget {
    left: -400px !important;
    top: 50% !important;
    right: inherit !important;
    height: 220px !important;
}

.widget.slide {
    left: -100px !important;
}

.widget .widgetClickBlock {
    background: #5b5b5b;
    width: 58px !important;
    height: 200px !important;
    left: 73.555%;
    position: relative;
}

.widget .widgetClickBlock .arrowDvd {
    border-bottom: solid 1px #fff;
    width: 54px;
    position: absolute;
    top: 40px;
    left: 2px;
}

.widget .widgetClickBlock .arrow {
    position: absolute;
    top: 15px;
    left: 20px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    height: 8px;
    margin-right: 8px;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    animation: bounceRight 2s infinite;
}

.widget.slide .widgetClickBlock .arrow {
    ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    animation: bounceLeft 2s infinite;
}

.widget .widgetClickBlock .arw2 {
    margin-left: -6px;
}

@keyframes bounceRight {

    0%,
    100%,
    20%,
    50%,
    80% {
        -ms-transform: translateX(4px) rotate(-35deg);
        transform: translateX(4px) rotate(-35deg)
    }

    40% {
        -ms-transform: translateX(7px) rotate(-35deg);
        transform: translateX(7px) rotate(-35deg)
    }

    60% {
        -ms-transform: translateX(9px) rotate(-35deg);
        transform: translateX(9px) rotate(-35deg)
    }
}

.widget .widgetClickBlock .awesome {
    text-transform: inherit !important;
    line-height: 22px !important;
    color: #fff !important;
    padding: 40px 10px 0;
    transform: inherit !important;
    height: 220px !important;
}

.widgetData .card-btn img {
    border: solid 1px #5b5b5b;
}

.creditCardBlock h5{
    font-size: 0.875rem !important;
}
.ccCircle p{
    font-size: 1.063rem !important;
    max-width: 20rem !important;
    margin: 1.25rem auto 0 !important;
    font-family: inherit !important;
}
/* .ccCircle img{
    max-width: 13.75rem !important;
} */

/* footer */
.footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    /* font-family: Graphik; */
    clear: both;
    color: #777;
    background-color: #1a1a1a
}

footer:after,footer:before {
    clear: both;
    display: block;
    content: ''
}
.footerlinks li a {
    text-decoration: none;
    color: #777;
    font-family: 'Lato-Regular';
    font-size: 0.813rem;
}

.footerlinks li {
    display: inline-block;
    padding-left: 25px;
    position: relative
}

.foot-container {
    max-width: 1400px;
    width: 100%;
    padding: 20px 10px 15px 10px;
    margin: 0 auto
}

ul.footerlinks {
    float: right;
    margin-top: 4px
}

.copy-right {
    float: left;
    font-family: 'Lato-Regular';
    font-size: 0.813rem;
}

.copy-right .footerArrow {
    position: absolute;
    top: 25px;
    right: 50px;
    display: none
}

.copy-right span {
    margin-bottom: 14px;
    position: relative;
    top: -12px;
    margin: 0 0 13px 28px
}

.copy-right span:before {
    content: '';
    height: 18px;
    width: 1px;
    background-color: #777;
    top: -2px;
    left: -16px;
    position: absolute
}
ul.footerlinks li+li:before {
    content: '';
    height: 15px;
    width: 1px;
    background-color: #2f2f2f;
    top: 4px;
    left: 10px;
    position: absolute
}
@media only screen and (max-width: 1366px) {
    .sliderTitle {
        font-size: 2.375rem !important;
    }
}

@media only screen and (max-width: 1199px) {
    .featuresWrap .ftrBlck {
        padding: 0.938rem 0.313rem;
        width: 12%;
    }

    .featuresWrap:before {
        top: 22px
    }
     .copy-right {
        float: none;
        text-align: left;
    }
    ul.footerlinks {
        float: none;
        text-align: left;
    }
}
   

@media only screen and (max-width: 991px) {
     .featuresWrap {
        display: none;
    }

    .footer{
        position: relative;
    }
    .insideWrap {
        max-width: 31.25rem !important;
        width: 80%;
        font-size: 1.875rem !important;
    }

    .creditCardBlock {
        padding: 5rem 0 6.25rem !important;
    }
    .nw-bg-black {
        margin-bottom: -1.5rem !important;
    }
    .copy-right .footerArrow {
        display: block;
        right: 20px;
    }
    ul.footerlinks {
        display: none;
    }

    ul.footerlinks li+li:before {
        display: none
    }
    .footerlinks li {
        display: block;
        padding: 10px 20px;
    }
}


@media only screen and (max-width: 767px) {
    .sliderTitle {
        font-size: 1.625rem !important;
    }
     .menuLinks li a {
        font-size: 25px;
    }
     .menuLinks {
        padding: 80px 0 0 20px;
    }
    .menuLinks li a.smallLink {
        font-size: 15px;
    }
    .logo {
        max-width:5.625rem;
    }
}

@media only screen and (max-width: 480px) {
    .insideWrap {
        max-width: 15rem !important;
        font-size: 1.563rem !important;
    }
     .copy-right span {
        display:block;
        top: 0;
        margin: 0;
        margin-top: 5px
    }

    .copy-right span:before {
        display: none
    }

    .copy-right .axisLogo {
        padding-right: 10px
    }

    .copy-right .axisLogo img {
        max-width: 90px
    }

    .popwrap {
        padding: 15px;
        padding-top: 50px
    }
}
