.Loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #091830;
    overflow: hidden;
    transition: ease .5s;
    z-index: 99999
}

.Loader.hidden {
    -webkit-animation: fadeOutt 1s;
    animation: fadeOutt 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    overflow-y: visible
}

@-webkit-keyframes fadeOutt {
    100% {
        visibility: hidden;
        opacity: 0
    }
}

@keyframes fadeOutt {
    100% {
        visibility: hidden;
        opacity: 0
    }
}

.spinnerPairHolder {
    display: grid;
    position: absolute;
    width: 300px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr
}

@media(max-width: 991px) {
    .spinnerPairHolder {
        width: 200px
    }
}

.spinnerPairHolder .spinnerPair {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.spinnerPairHolder .spinnerPair .spinnerPairCercle {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 50%;
    border-radius: 999px;
    transform: translateX(-50%);
    -webkit-animation: loaderBallsSpin 2s infinite ease-in-out;
    animation: loaderBallsSpin 2s infinite ease-in-out
}

.spinnerPairHolder .spinnerPair .spinnerPairCercle:nth-child(1) {
    background-image: linear-gradient(to top right, #222F45 15%, #019DEA)
}

.spinnerPairHolder .spinnerPair:nth-child(1) .spinnerPairCercle:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.spinnerPairHolder .spinnerPair:nth-child(2) .spinnerPairCercle:nth-child(1) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.spinnerPairHolder .spinnerPair:nth-child(3) .spinnerPairCercle:nth-child(1) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.spinnerPairHolder .spinnerPair:nth-child(4) .spinnerPairCercle:nth-child(1) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.spinnerPairHolder .spinnerPair:nth-child(5) .spinnerPairCercle:nth-child(1) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.spinnerPairHolder .spinnerPair .spinnerPairCercle:nth-child(2) {
    background-image: linear-gradient(to top right, #019DEA 15%, #222F45)
}

.spinnerPairHolder .spinnerPair:nth-child(1) .spinnerPairCercle:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.spinnerPairHolder .spinnerPair:nth-child(2) .spinnerPairCercle:nth-child(2) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.spinnerPairHolder .spinnerPair:nth-child(3) .spinnerPairCercle:nth-child(2) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.spinnerPairHolder .spinnerPair:nth-child(4) .spinnerPairCercle:nth-child(2) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.spinnerPairHolder .spinnerPair:nth-child(5) .spinnerPairCercle:nth-child(2) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s
}

@-webkit-keyframes loaderBallsSpin {
    0% {
        top: 0%;
        z-index: 2
    }
    25% {
        transform: translateX(-50%) scale(1.2, 1.2)
    }
    50% {
        top: calc(100% - 25px)
    }
    75% {
        transform: translateX(-50%) scale(.8, .8)
    }
    100% {
        top: 0%;
        z-index: 1
    }
}

@keyframes loaderBallsSpin {
    0% {
        top: 0%;
        z-index: 2
    }
    25% {
        transform: translateX(-50%) scale(1.2, 1.2)
    }
    50% {
        top: calc(100% - 25px)
    }
    75% {
        transform: translateX(-50%) scale(.8, .8)
    }
    100% {
        top: 0%;
        z-index: 1
    }
}

.overlay-content {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, .438);
    transition: .3s
}

.overlay-content .modal-content-inr {
    position: relative;
    width: 420px;
    height: 100%;
    background-color: #222f45;
    padding: 36px 40px 40px;
    top: 0;
    left: -420px;
    transition: .3s;
    overflow-y: scroll
}

@media(max-width: 420px) {
    .overlay-content .modal-content-inr {
        padding: 36px 15px 40px;
        width: 100%
    }
}

.overlay-content .modal-content-inr::-webkit-scrollbar {
    width: 5px
}

.overlay-content .modal-content-inr::-webkit-scrollbar-thumb {
    background-color: #019dea
}

.overlay-content .modal-content-inr .logo-main {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.overlay-content .modal-content-inr .logo-main .logo-otr .logo-a .logo-img {
    width: 140px
}

.overlay-content .modal-content-inr .logo-main .close-icon-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05)
}

.overlay-content .modal-content-inr .logo-main .close-icon-otr .close-icon {
    font-size: 24px;
    color: #fff
}

.overlay-content .modal-content-inr .search-main {
    position: relative;
    display: flex;
    align-items: center;
    margin: 36px 0
}

.overlay-content .modal-content-inr .search-main .input {
    width: 100%
}

.overlay-content .modal-content-inr .search-main .search-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    color: #fff;
    transform: translateY(-50%);
    font-size: 16px
}

.overlay-content .modal-content-inr .accordion .linkk-otr {
    margin: 0 0 8px
}

.overlay-content .modal-content-inr .accordion .linkk-otr .linkk-home {
    color: #fff;
    transition: .3s
}

.overlay-content .modal-content-inr .accordion .linkk-otr .linkk-home:hover {
    color: #019dea
}

.overlay-content .modal-content-inr .accordion .accordion-item {
    background-color: transparent;
    border: none
}

.overlay-content .modal-content-inr .accordion .accordion-item:not(:last-child) {
    margin: 0 0 8px
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-header .accordion-button {
    padding: 0;
    background-color: transparent;
    color: #019dea;
    box-shadow: none
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    display: none
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-header .collapsed {
    color: #fff
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-header .accordion-body:not(.collapsed) {
    box-shadow: none !important
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 8px 0 0 16px
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-collapse .accordion-body .linkk-ul .linkk-li:not(:last-child) {
    margin: 0 0 8px
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-collapse .accordion-body .linkk-ul .linkk-li .linkk-a {
    color: #fff;
    transition: .3s
}

.overlay-content .modal-content-inr .accordion .accordion-item .accordion-collapse .accordion-body .linkk-ul .linkk-li .linkk-a:hover {
    color: #019dea
}

.overlay-content .modal-content-inr .action {
    text-align: center;
    margin: 36px 0
}

.overlay-content .modal-content-inr .social-icon .heading {
    color: #fff
}

.overlay-content .modal-content-inr .social-icon .icon-ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.overlay-content .modal-content-inr .social-icon .icon-ul .icon-li {
    margin-top: 16
}

.overlay-content .modal-content-inr .social-icon .icon-ul .icon-li:not(:last-child) {
    margin-right: 16px
}

.overlay-content .modal-content-inr .social-icon .icon-ul .icon-li .icon-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    transition: .3s
}

.overlay-content .modal-content-inr .social-icon .icon-ul .icon-li .icon-a:hover {
    background-color: #019dea
}

.overlay-content .modal-content-inr .copy-right {
    color: #fff;
    margin: 36px 0 0
}

.overlay-content .modal-content-inr .copy-right .linkk {
    display: inline;
    color: #019dea
}

.overlay-open {
    opacity: 1;
    visibility: visible
}

.overlay-open .modal-content-inr {
    left: 0
}

.navbar-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    padding: 32px 0;
    position: relative;
    z-index: 10
}

@media(max-width: 1100px) {
    .navbar-main .container-fluid .wrapper {
        padding: 24px 0;
        justify-content: space-between
    }
}

.navbar-main .container-fluid .wrapper .logo-otr .logo-a .logo-img {
    width: 134px
}

.navbar-main .container-fluid .wrapper .navigation-otr {
    margin: 0 auto
}

@media(max-width: 1100px) {
    .navbar-main .container-fluid .wrapper .navigation-otr {
        display: none
    }
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr {
    display: flex;
    align-items: center
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li {
    position: relative
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li:not(:last-child) {
    margin-right: 40px
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li:hover .drop-down-ul {
    visibility: visible;
    opacity: 1;
    top: 50px
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a {
    color: #fff;
    line-height: 50px;
    transition: .2s;
    cursor: pointer
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a:hover {
    color: #019dea
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul {
    position: absolute;
    left: -24px;
    top: 70px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li {
    position: relative
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:not(:last-child) {
    margin-bottom: 12px
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:hover .drop-down-ul-other {
    opacity: 1;
    visibility: visible
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a {
    color: #fff;
    display: inline;
    font-family: poppins-medium;
    transition: .2s;
    cursor: pointer
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a:hover {
    color: #019dea
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other {
    position: absolute;
    left: 180px;
    top: -24px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other {
    position: relative
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other:not(:last-child) {
    margin-bottom: 12px
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other {
    color: #fff;
    font-family: poppins-medium;
    display: inline;
    transition: .2s
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other:hover {
    color: #019dea
}

@media(max-width: 1300px) {
    .navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .nav-li6 {
        display: block
    }
}

.navbar-main .container-fluid .wrapper .navigation-otr .navigation-inr .nav-li6 .nav-a {
    letter-spacing: 2px;
    position: relative;
    font-family: poppins-bold;
    top: -2px
}

.navbar-main .container-fluid .wrapper .search-main {
    position: relative;
    width: 280px
}

@media(max-width: 1300px) {
    .navbar-main .container-fluid .wrapper .search-main {
        width: 200px
    }
}

@media(max-width: 1100px) {
    .navbar-main .container-fluid .wrapper .search-main {
        display: none
    }
}

.navbar-main .container-fluid .wrapper .search-main .input {
    width: 280px
}

@media(max-width: 1300px) {
    .navbar-main .container-fluid .wrapper .search-main .input {
        width: 200px
    }
}

.navbar-main .container-fluid .wrapper .search-main .search-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    color: #fff;
    transform: translateY(-50%);
    font-size: 16px
}

.navbar-main .container-fluid .wrapper .action {
    display: flex
}

@media(max-width: 1100px) {
    .navbar-main .container-fluid .wrapper .action {
        display: none
    }
}

.navbar-main .container-fluid .wrapper .action .btn-upload {
    margin-right: 24px
}

@media(max-width: 1100px) {
    .navbar-main .container-fluid .wrapper .right-space {
        display: none
    }
}

.navbar-main .container-fluid .wrapper .right-space:not(:last-child) {
    margin-right: 24px
}

.navbar-main .container-fluid .wrapper .burger-icon-otr {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer
}

@media(max-width: 1100px) {
    .navbar-main .container-fluid .wrapper .burger-icon-otr {
        display: flex
    }
}

.navbar-main .container-fluid .wrapper .burger-icon-otr .burger-icon {
    font-size: 24px;
    color: #fff
}

.navbar-main-2 .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    position: relative;
    z-index: 10
}

@media(max-width: 1199px) {
    .navbar-main-2 .container-fluid .wrapper {
        padding: 24px 0
    }
}

.navbar-main-2 .container-fluid .wrapper .logo-otr .logo-a .logo-img {
    width: 134px
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .logo-otr .logo-a .logo-img {
        width: 110px
    }
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr {
    margin: 0 auto
}

@media(max-width: 1199px) {
    .navbar-main-2 .container-fluid .wrapper .navigation-otr {
        display: none
    }
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr {
    display: flex;
    align-items: center
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li {
    position: relative
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li:not(:last-child) {
    margin-right: 40px
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li:hover .drop-down-ul {
    visibility: visible;
    opacity: 1;
    top: 50px
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a {
    color: #fff;
    font-family: poppins-medium;
    line-height: 50px;
    transition: .2s;
    cursor: pointer
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a:hover {
    color: #019dea
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .dots-menu {
    letter-spacing: 2px;
    position: relative;
    font-family: poppins-bold;
    top: -2px
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul {
    position: absolute;
    left: -24px;
    top: 70px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li {
    position: relative
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:not(:last-child) {
    margin-bottom: 12px
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:hover .drop-down-ul-other {
    opacity: 1;
    visibility: visible
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a {
    color: #fff;
    display: inline;
    font-family: poppins-medium;
    transition: .2s;
    cursor: pointer
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a:hover {
    color: #019dea
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other {
    position: absolute;
    left: 180px;
    top: -24px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other {
    position: relative
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other:not(:last-child) {
    margin-bottom: 12px
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other {
    color: #fff;
    font-family: poppins-medium;
    display: inline;
    transition: .2s
}

.navbar-main-2 .container-fluid .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other:hover {
    color: #019dea
}

.navbar-main-2 .container-fluid .wrapper .action-nav {
    display: flex;
    align-items: center
}

.navbar-main-2 .container-fluid .wrapper .action-nav .search-main {
    position: relative;
    width: 280px
}

@media(max-width: 1300px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .search-main {
        width: 200px
    }
}

@media(max-width: 1199px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .search-main {
        display: none
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .search-main .input {
    width: 280px
}

@media(max-width: 1300px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .search-main .input {
        width: 200px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .search-main .search-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    color: #fff;
    transform: translateY(-50%);
    font-size: 16px
}

@media(max-width: 1199px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .action {
        display: none
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main {
    position: relative
}

@media(max-width: 991px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .notification-main {
        display: block !important
    }
}

@media(max-width: 767px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .notification-main {
        position: inherit
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .icon-notification-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05)
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .icon-notification-otr {
        width: 40px;
        height: 40px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .icon-notification-otr .notification-icon {
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .icon-notification-otr .notification-icon {
        font-size: 18px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .icon-notification-otr .dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #019dea;
    position: absolute;
    top: 4px;
    right: 4px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop {
    position: absolute;
    background-color: #222f45;
    width: 400px;
    border-radius: 24px;
    padding: 24px 28px 32px;
    top: 100px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 767px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop {
        width: 100%;
        padding: 24px 15px 32px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .Heading-otr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .Heading-otr .heading {
    color: #fff
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .Heading-otr .linkk {
    color: #019dea
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li:not(:last-child) {
    margin: 0 0 16px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a {
    display: flex;
    align-items: center
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .img-otr {
    width: 70px;
    height: 70px;
    margin: 0 16px 0 0
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .img-otr .img {
    height: 100%;
    border-radius: 6px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .content-otr .name {
    color: #fff;
    margin: 0 0 6px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .content-otr .price {
    color: #b7b7b7
}

.navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop-open {
    top: 60px;
    opacity: 1;
    visibility: visible
}

@media(max-width: 767px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .notification-main .notification-drop-open {
        top: 80px
    }
}

@media(max-width: 991px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .right-space {
        display: none
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .right-space:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .right-space:not(:last-child) {
        margin-right: 0
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main {
    position: relative
}

@media(max-width: 1199px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main {
        margin-right: 24px
    }
}

@media(max-width: 767px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main {
        position: inherit
    }
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main {
        margin: 0 12px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-nav {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 12px;
    height: 56px
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-nav {
        height: 40px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-nav .img-otr .nav-prof-img {
    height: 56px;
    width: 56px;
    border-radius: 12px 0 0 12px
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-nav .img-otr .nav-prof-img {
        width: 40px;
        height: 40px;
        border-radius: 12px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-nav .desc {
    color: #fff;
    font-family: poppins-medium;
    padding: 0 16px
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-nav .desc {
        display: none
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr {
    position: absolute;
    background-color: #222f45;
    width: 300px;
    border-radius: 24px;
    padding: 24px 28px 32px;
    top: 100px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 767px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr {
        width: 100%;
        padding: 24px 15px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr {
    display: flex;
    align-items: center;
    cursor: pointer
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr .text {
    color: #fff
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr .copy-icon {
    font-size: 24px;
    color: #fff
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr {
    display: flex;
    align-items: center;
    margin: 16px 0
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .img-etherem {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 100%
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .img-etherem .etherem {
    height: 32px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance {
    margin-left: 16px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance .text {
    color: #b7b7b7
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance .price {
    color: #fff
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li:not(:last-child) {
    margin-bottom: 12px
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li .link-profile-a {
    display: inline;
    font-family: poppins-medium;
    color: #fff;
    transition: .3s
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li .link-profile-a:hover {
    color: #019dea
}

.navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-open {
    top: 60px;
    opacity: 1;
    visibility: visible
}

@media(max-width: 767px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .profile-nav-main .profile-pop-open {
        top: 80px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .burger-icon-otr {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer
}

@media(max-width: 1199px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .burger-icon-otr {
        display: flex
    }
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .burger-icon-otr {
        width: 40px;
        height: 40px
    }
}

.navbar-main-2 .container-fluid .wrapper .action-nav .burger-icon-otr .burger-icon {
    font-size: 24px;
    color: #fff
}

@media(max-width: 575px) {
    .navbar-main-2 .container-fluid .wrapper .action-nav .burger-icon-otr .burger-icon {
        font-size: 18px
    }
}

.inner-header-main {
    position: relative;
    overflow: hidden;
    background: linear-gradient(252.07deg, rgba(1, 156, 234, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%)
}

.inner-header-main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg-img.png);
    top: 0;
    left: 0;
    opacity: .6
}

.inner-header-main .container-fluid .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 72px 0 96px;
    z-index: 2
}

.inner-header-main .container-fluid .wrapper .heading {
    color: #fff;
    margin: 0 0 16px
}

.inner-header-main .container-fluid .wrapper .linkk-otr {
    display: flex;
    align-items: center
}

.inner-header-main .container-fluid .wrapper .linkk-otr .linkk-page {
    color: #fff
}

.inner-header-main .container-fluid .wrapper .linkk-otr .link-slash {
    color: #fff;
    margin: 0 4px
}

.footer-main {
    overflow: hidden;
    position: relative;
    padding: 128px 0;
    background: linear-gradient(252.07deg, rgba(1, 156, 234, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%)
}

.footer-main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg-img.png);
    top: 0;
    left: 0;
    opacity: .6
}

.footer-main .container-fluid .row-custom {
    position: relative;
    z-index: 2
}

@media(max-width: 767px) {
    .footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr {
        padding: 0 0 48px
    }
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .logo-otr {
    margin: 0 0 8px
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .logo-otr .logo-inr .img-logo {
    width: 140px
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .social-icon .icon-ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .social-icon .icon-ul .icon-li {
    margin-top: 16px
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .social-icon .icon-ul .icon-li:not(:last-child) {
    margin-right: 16px
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .social-icon .icon-ul .icon-li .icon-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    transition: .3s
}

.footer-main .container-fluid .row-custom .col-logo-otr .col-logo-inr .social-icon .icon-ul .icon-li .icon-a:hover {
    background-color: #019dea
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr {
    padding: 0 0 0 100px
}

@media(max-width: 1300px) {
    .footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr {
        padding: 0 0 0 60px
    }
}

@media(max-width: 1100px) {
    .footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr {
        padding: 0 0 0 30px
    }
}

@media(max-width: 991px) {
    .footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr {
        padding: 0 0 48px
    }
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .explore-otr {
    margin: 0 0 36px
}

@media(max-width: 767px) {
    .footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .explore-otr {
        margin: 0 0 48px
    }
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .explore-otr .heading {
    color: #fff;
    margin: 0 0 12px
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .explore-otr .explore-ul .explore-li:not(:last-child) {
    margin: 0 0 8px
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .explore-otr .explore-ul .explore-li .explore-a {
    color: #b7b7b7;
    display: inline;
    transition: .3s
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .explore-otr .explore-ul .explore-li .explore-a:hover {
    color: #019dea
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .community-otr .heading {
    color: #fff;
    margin: 0 0 12px
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .community-otr .community-ul .community-li:not(:last-child) {
    margin: 0 0 8px
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .community-otr .community-ul .community-li .community-a {
    color: #b7b7b7;
    display: inline;
    transition: .3s
}

.footer-main .container-fluid .row-custom .col-explore-otr .col-explore-inr .community-otr .community-ul .community-li .community-a:hover {
    color: #019dea
}

.footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr {
    padding: 0 0 0 40px
}

@media(max-width: 1300px) {
    .footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr {
        padding: 0 0 0 20px
    }
}

@media(max-width: 1100px) {
    .footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr {
        padding: 0
    }
}

@media(max-width: 767px) {
    .footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr {
        padding: 0 0 48px
    }
}

.footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr .navigation-otr .heading {
    color: #fff;
    margin: 0 0 12px
}

.footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr .navigation-otr .navigation-ul .navigation-li:not(:last-child) {
    margin: 0 0 8px
}

.footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr .navigation-otr .navigation-ul .navigation-li .navigation-a {
    color: #b7b7b7;
    display: inline;
    transition: .3s
}

.footer-main .container-fluid .row-custom .col-navigation-otr .col-navigation-inr .navigation-otr .navigation-ul .navigation-li .navigation-a:hover {
    color: #019dea
}

.footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr {
    padding: 0 0 0 150px
}

@media(max-width: 1300px) {
    .footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr {
        padding: 0 0 0 100px
    }
}

@media(max-width: 1100px) {
    .footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr {
        padding: 0 0 0 70px
    }
}

@media(max-width: 991px) {
    .footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr {
        padding: 0
    }
}

.footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr .heading {
    color: #fff
}

.footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr .email-otr {
    margin: 24px 0 32px
}

.footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr .email-otr input {
    width: 100%
}

.footer-main .container-fluid .row-custom .col-subscribe-otr .col-subscribe-inr .action {
    display: flex
}

.copyright-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0
}

@media(max-width: 767px) {
    .copyright-main .container-fluid .wrapper {
        flex-direction: column;
        text-align: center
    }
}

.copyright-main .container-fluid .wrapper .copy-right {
    color: #fff
}

@media(max-width: 767px) {
    .copyright-main .container-fluid .wrapper .copy-right {
        margin: 0 0 16px
    }
}

.copyright-main .container-fluid .wrapper .copy-right .linkk {
    display: inline;
    color: #019dea
}

.copyright-main .container-fluid .wrapper .linkk-otr .linkk-inr {
    color: #fff
}

.copyright-main .container-fluid .wrapper .linkk-otr .linkk-inr .linkk-page {
    display: inline;
    color: #fff;
    transition: .3s
}

.copyright-main .container-fluid .wrapper .linkk-otr .linkk-inr .linkk-page:hover {
    color: #019dea
}

.hero-main {
    position: relative;
    padding: 128px 0;
    background-size: cover;
    overflow: hidden;
    background: linear-gradient(252.07deg, rgba(1, 156, 234, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%)
}

.hero-main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg-img.png);
    top: 0;
    left: 0;
    opacity: .6
}

.hero-main .container-fluid {
    padding: 0 100px
}

@media(max-width: 1300px) {
    .hero-main .container-fluid {
        padding: 0 50px
    }
}

@media(max-width: 991px) {
    .hero-main .container-fluid {
        padding: 0 15px
    }
}

.hero-main .container-fluid .row-custom {
    position: relative;
    z-index: 2;
    align-items: center
}

@media(max-width: 1100px) {
    .hero-main .container-fluid .row-custom {
        flex-direction: column-reverse
    }
}

@media(max-width: 1100px) {
    .hero-main .container-fluid .row-custom .col-content-otr {
        width: 100%
    }
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr {
    padding-right: 50px
}

@media(max-width: 1300px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 0
    }
}

@media(max-width: 1100px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 72px 0 0;
        text-align: center
    }
}

@media(max-width: 767px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        text-align: left
    }
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading .text-color {
    color: #019dea
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #b7b7b7;
    padding: 20px 0 40px
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
    display: flex
}

@media(max-width: 1100px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        text-align: center;
        justify-content: center
    }
}

@media(max-width: 767px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        justify-content: flex-start
    }
}

@media(max-width: 420px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        flex-direction: column
    }
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .left-btn {
    margin-right: 24px
}

@media(max-width: 420px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .left-btn {
        margin: 0 0 24px
    }
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
    display: flex;
    margin: 40px 0 0
}

@media(max-width: 1100px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
        text-align: center;
        justify-content: center
    }
}

@media(max-width: 767px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
        justify-content: flex-start;
        text-align: left
    }
}

@media(max-width: 420px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
        flex-direction: column
    }
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box {
    padding: 24px 28px 30px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, .05)
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 420px) {
    .hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box:not(:last-child) {
        margin: 0 0 24px
    }
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box .static-head {
    color: #fff
}

.hero-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box .static-desc {
    color: #fff
}

@media(max-width: 1100px) {
    .hero-main .container-fluid .row-custom .col-img-otr {
        width: 60%
    }
}

@media(max-width: 991px) {
    .hero-main .container-fluid .row-custom .col-img-otr {
        width: 80%
    }
}

@media(max-width: 767px) {
    .hero-main .container-fluid .row-custom .col-img-otr {
        width: 100%
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr {
    border-radius: 24px;
    background-color: rgba(255, 255, 255, .05);
    padding: 36px 36px 34px;
    margin-left: 50px
}

@media(max-width: 1199px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr {
        margin-left: 0
    }
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr {
        padding: 28px 28px 24px
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr {
    position: relative
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .hero-img {
    border-radius: 16px
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 16px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    width: calc(100% - 72px);
    margin: 0 auto
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main {
        display: none
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .left-bid {
    position: relative;
    z-index: 1
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .left-bid .bid-desc {
    color: #fff
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .left-bid .ETH {
    color: #019dea
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .right-bid {
    position: relative;
    z-index: 1;
    width: 125px
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .right-bid .end-desc {
    color: #fff
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .right-bid .timer {
    color: #019dea
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .blur-effect {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .time-otr {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    padding: 6px 16px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .time-otr {
        display: block
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .time-otr .timer {
    color: #fff
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main {
        display: block
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main .heart-icon-otr {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    position: relative;
    cursor: pointer
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main .heart-icon-otr .heart-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #019dea
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main .heart-icon-otr .ri-heart-fill {
    color: red
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 0
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr {
    display: flex
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    border: 2px solid #fff
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .img-inr .avatar-img {
        width: 40px;
        height: 40px
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #019dea;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr {
        width: 16px;
        height: 16px
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr .check-icon {
        top: 30%;
        font-size: 12px
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 {
    position: relative
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1:hover,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2:hover,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1:hover .hover,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2:hover .hover,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1 .hover,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 .hover,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1 .hover,
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 .hover,
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 .hover {
        display: none
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1 .hover .text,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 .hover .text,
.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 {
    margin-left: -25px
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 {
        margin-left: -15px
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 {
    margin-left: -25px
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 {
        margin-left: -15px
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main {
        display: none
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .heart-icon-otr {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .05);
    position: relative;
    cursor: pointer
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .heart-icon-otr .heart-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #019dea
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .heart-icon-otr .ri-heart-fill {
    color: red
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .likes {
    color: #b7b7b7;
    margin-left: 16px
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid {
    display: none
}

@media(max-width: 575px) {
    .hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid {
        display: block
    }
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid .bid-desc {
    color: #fff
}

.hero-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid .ETH {
    color: #019dea
}

.auction-main {
    margin: 128px 0;
    overflow: hidden
}

.auction-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.auction-main .container-fluid .wrapper .heading {
    color: #fff
}

.auction-main .container-fluid .row-auction .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr {
    display: flex
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-1:hover,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-2:hover,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-1:hover .hover,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-2:hover .hover,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
    .auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
    .auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
        display: none
    }
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover .text,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover .text,
.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .list-icon-otr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 20px;
    cursor: pointer
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .avatar-main .list-icon-otr .icon {
    width: auto
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr {
    position: relative
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr .cover-img {
    border-radius: 16px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    width: 124px;
    height: 40px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr .time-otr .timer {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: #fff
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .art-name:hover {
    color: #019dea
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .bid-main .bid {
    color: #b7b7b7
}

.auction-main .container-fluid .row-auction .col-otr .col-inr .bid-main .Price {
    color: #fff
}

.owl-stage-outer {
    overflow: visible !important
}

.owl-theme .owl-nav {
    margin: 0 !important;
    text-align: right !important;
    position: absolute !important;
    top: -122px !important;
    width: 100% !important
}

.owl-theme .owl-nav .owl-prev {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05) !important
}

.owl-theme .owl-nav .owl-next {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05) !important
}

.owl-carousel .owl-stage {
    transition: 1s ease-in-out !important
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 0 !important
}

.owl-carousel .owl-nav .owl-prev {
    margin-right: 24px !important
}

.selected path {
    fill: #a83f39;
    stroke: #a83f39;
    transition: .5s
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin: 48px 0 0
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background-color: #fff;
    transition: .3s
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    width: 24px;
    background-color: #019dea
}

.creator-main {
    margin: 128px 0;
    overflow: hidden
}

.creator-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 72px
}

.creator-main .container-fluid .wrapper .heading {
    color: #fff
}

.creator-main .container-fluid .wrapper .view-all {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .creator-main .container-fluid .wrapper .view-all {
        display: none
    }
}

.creator-main .container-fluid .wrapper .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.creator-main .container-fluid .wrapper .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

@media(min-width: 992px) and (max-width:1199px) {
    .creator-main .container-fluid .row-creator .col-otr {
        width: 33.333%
    }
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 24px 28px
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr {
    width: 62px;
    height: 62px;
    border-radius: 100px;
    position: relative
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .avatar {
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #019dea;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    right: 2px;
    bottom: 0
}

@media(max-width: 575px) {
    .creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr {
        width: 16px;
        height: 16px
    }
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr .check-icon {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px
}

@media(max-width: 575px) {
    .creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr .check-icon {
        top: 30%;
        font-size: 12px
    }
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr {
    margin: 0 0 0 16px
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr .creator-name {
    color: #fff
}

.creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr .price {
    color: #019dea
}

.creator-main .container-fluid .row-creator .col-otr .box-1,
.creator-main .container-fluid .row-creator .col-otr .box-2,
.creator-main .container-fluid .row-creator .col-otr .box-3,
.creator-main .container-fluid .row-creator .col-otr .box-4 {
    margin: 0 0 24px
}

@media(max-width: 991px) {
    .creator-main .container-fluid .row-creator .col-otr .box-1,
    .creator-main .container-fluid .row-creator .col-otr .box-2,
    .creator-main .container-fluid .row-creator .col-otr .box-3,
    .creator-main .container-fluid .row-creator .col-otr .box-4,
    .creator-main .container-fluid .row-creator .col-otr .box-5,
    .creator-main .container-fluid .row-creator .col-otr .box-6 {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .creator-main .container-fluid .row-creator .col-otr .box-1,
    .creator-main .container-fluid .row-creator .col-otr .box-2,
    .creator-main .container-fluid .row-creator .col-otr .box-3,
    .creator-main .container-fluid .row-creator .col-otr .box-4,
    .creator-main .container-fluid .row-creator .col-otr .box-5,
    .creator-main .container-fluid .row-creator .col-otr .box-6,
    .creator-main .container-fluid .row-creator .col-otr .box-7 {
        margin: 0 0 24px
    }
}

.creator-main .container-fluid .responsive {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

@media(max-width: 575px) {
    .creator-main .container-fluid .responsive {
        display: flex
    }
}

.creator-main .container-fluid .responsive .view-all {
    display: flex;
    align-items: center
}

.creator-main .container-fluid .responsive .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.creator-main .container-fluid .responsive .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

.feature-main {
    margin: 128px 0;
    overflow: hidden
}

.feature-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 72px
}

.feature-main .container-fluid .wrapper .heading {
    color: #fff
}

.feature-main .container-fluid .wrapper .view-all {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .feature-main .container-fluid .wrapper .view-all {
        display: none
    }
}

.feature-main .container-fluid .wrapper .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.feature-main .container-fluid .wrapper .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

@media(max-width: 1300px) {
    .feature-main .container-fluid .row-custom .col-otr {
        width: 33.333%
    }
}

@media(max-width: 991px) {
    .feature-main .container-fluid .row-custom .col-otr {
        width: 50%
    }
}

@media(max-width: 600px) {
    .feature-main .container-fluid .row-custom .col-otr {
        width: 100%
    }
}

.feature-main .container-fluid .row-custom .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr {
    display: flex
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1:hover,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2:hover,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1:hover .hover,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2:hover .hover,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
    .feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
    .feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
        display: none
    }
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover .text,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover .text,
.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .list-icon-otr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    width: 20px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .avatar-main .list-icon-otr .icon {
    width: auto
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr {
    position: relative
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr .cover-img {
    width: 100%;
    border-radius: 16px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    width: 124px;
    height: 40px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr .time-otr .timer {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: #fff
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .art-name:hover {
    color: #019dea
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .bid-main .bid {
    color: #b7b7b7
}

.feature-main .container-fluid .row-custom .col-otr .col-inr .bid-main .Price {
    color: #fff
}

.feature-main .container-fluid .row-custom .col-otr .box-1,
.feature-main .container-fluid .row-custom .col-otr .box-2,
.feature-main .container-fluid .row-custom .col-otr .box-3,
.feature-main .container-fluid .row-custom .col-otr .box-4 {
    margin: 0 0 24px
}

@media(max-width: 991px) {
    .feature-main .container-fluid .row-custom .col-otr .box-1,
    .feature-main .container-fluid .row-custom .col-otr .box-2,
    .feature-main .container-fluid .row-custom .col-otr .box-3,
    .feature-main .container-fluid .row-custom .col-otr .box-4,
    .feature-main .container-fluid .row-custom .col-otr .box-5,
    .feature-main .container-fluid .row-custom .col-otr .box-6 {
        margin: 0 0 24px
    }
}

@media(max-width: 600px) {
    .feature-main .container-fluid .row-custom .col-otr .box-1,
    .feature-main .container-fluid .row-custom .col-otr .box-2,
    .feature-main .container-fluid .row-custom .col-otr .box-3,
    .feature-main .container-fluid .row-custom .col-otr .box-4,
    .feature-main .container-fluid .row-custom .col-otr .box-5,
    .feature-main .container-fluid .row-custom .col-otr .box-6,
    .feature-main .container-fluid .row-custom .col-otr .box-7 {
        margin: 0 0 24px
    }
}

.feature-main .container-fluid .responsive {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

@media(max-width: 575px) {
    .feature-main .container-fluid .responsive {
        display: flex
    }
}

.feature-main .container-fluid .responsive .view-all {
    display: flex;
    align-items: center
}

.feature-main .container-fluid .responsive .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.feature-main .container-fluid .responsive .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

.collection-main {
    margin: 128px 0;
    overflow: hidden
}

.collection-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.collection-main .container-fluid .wrapper .heading {
    color: #fff
}

.collection-main .container-fluid .row-collection .col-otr .col-inr {
    position: relative;
    overflow: hidden;
    border-radius: 24px
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .img-otr .cover-img {
    width: 100%
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box {
    display: flex;
    align-items: center;
    padding: 28px 24px
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .avtar-otr {
    width: 72px;
    height: 72px;
    margin: 0 16px 0 0;
    position: relative
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .avtar-otr .avatar {
    border-radius: 100%;
    border: 2px solid #fff
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .avtar-otr .check-icon-otr {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #019dea;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    right: 2px;
    bottom: 0
}

@media(max-width: 575px) {
    .collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .avtar-otr .check-icon-otr {
        width: 16px;
        height: 16px
    }
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .avtar-otr .check-icon-otr .check-icon {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px
}

@media(max-width: 575px) {
    .collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .avtar-otr .check-icon-otr .check-icon {
        top: 30%;
        font-size: 12px
    }
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .content-otr .product {
    color: #fff
}

@media(max-width: 575px) {
    .collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .content-otr .product {
        font-size: 16px;
        line-height: 28px;
        font-family: montserrat-bold
    }
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .content-otr .creator-name {
    color: #b7b7b7
}

.collection-main .container-fluid .row-collection .col-otr .col-inr .creator-otr .col-box .content-otr .creator-name .name-inr {
    color: #019dea
}

.owl-stage-outer {
    overflow: visible !important
}

.owl-theme .owl-nav {
    margin: 0 !important;
    text-align: right !important;
    position: absolute !important;
    top: -122px !important;
    width: 100% !important
}

.owl-theme .owl-nav .owl-prev {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05) !important
}

.owl-theme .owl-nav .owl-next {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05) !important
}

.owl-carousel .owl-stage {
    transition: 1s ease-in-out !important
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 0 !important
}

.owl-carousel .owl-nav .owl-prev {
    margin-right: 24px !important
}

.selected path {
    fill: #a83f39;
    stroke: #a83f39;
    transition: .5s
}

.cal-to-action-main {
    margin: 128px 0;
    overflow: hidden
}

.cal-to-action-main .container-fluid {
    position: relative
}

.cal-to-action-main .container-fluid .row-custom {
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(252.07deg, rgba(1, 156, 234, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%)
}

.cal-to-action-main .container-fluid .row-custom::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg-img.png);
    top: 0;
    left: 0;
    opacity: .6
}

.cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr {
    position: relative;
    padding: 72px 0 96px 72px;
    z-index: 2
}

@media(min-width: 992px) and (max-width:1199px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 72px 0 96px 32px
    }
}

@media(max-width: 575px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 48px 15px 56px
    }
}

.cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

@media(max-width: 1100px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading br {
        display: none
    }
}

@media(max-width: 1100px) and (max-width:991px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading br {
        display: block
    }
}

@media(max-width: 1100px) and (max-width:575px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading br {
        display: none
    }
}

.cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading .heading-inr {
    color: #019dea
}

.cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #b7b7b7;
    margin: 8px 0 32px
}

@media(max-width: 1100px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc br {
        display: none
    }
}

@media(max-width: 1100px) and (max-width:991px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc br {
        display: block
    }
}

@media(max-width: 1100px) and (max-width:575px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc br {
        display: none
    }
}

.cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .btn-otr {
    display: flex;
    align-items: center
}

@media(max-width: 420px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .btn-otr {
        flex-direction: column
    }
}

@media(max-width: 420px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .btn-otr .action {
        width: 100%;
        text-align: center
    }
}

.cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .btn-otr .action:not(:last-child) {
    margin: 0 24px 0 0
}

@media(max-width: 420px) {
    .cal-to-action-main .container-fluid .row-custom .col-content-otr .col-content-inr .btn-otr .action:not(:last-child) {
        margin: 0 0 24px
    }
}

.cal-to-action-main .container-fluid .art-img {
    position: absolute;
    right: 130px;
    bottom: 0;
    height: 95%
}

@media(max-width: 991px) {
    .cal-to-action-main .container-fluid .art-img {
        display: none
    }
}

.blog-main {
    margin: 128px 0;
    overflow: hidden
}

.blog-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 72px
}

.blog-main .container-fluid .wrapper .heading {
    color: #fff
}

.blog-main .container-fluid .wrapper .view-all {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .blog-main .container-fluid .wrapper .view-all {
        display: none
    }
}

.blog-main .container-fluid .wrapper .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.blog-main .container-fluid .wrapper .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

@media(min-width: 992px) and (max-width:1199px) {
    .blog-main .container-fluid .row-custom .col-otr {
        width: 50%
    }
}

.blog-main .container-fluid .row-custom .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 36px 36px 32px
}

@media(max-width: 575px) {
    .blog-main .container-fluid .row-custom .col-otr .col-inr {
        padding: 28px 28px 24px
    }
}

.blog-main .container-fluid .row-custom .col-otr .col-inr .img-otr .blog-img {
    width: 100%;
    border-radius: 16px
}

.blog-main .container-fluid .row-custom .col-otr .col-inr .content-otr .date-otr {
    color: #019dea;
    margin: 16px 0 8px
}

.blog-main .container-fluid .row-custom .col-otr .col-inr .content-otr .date-otr .date-inr {
    color: #878787
}

.blog-main .container-fluid .row-custom .col-otr .col-inr .content-otr .heading {
    display: inline;
    color: #fff;
    transition: .3s
}

.blog-main .container-fluid .row-custom .col-otr .col-inr .content-otr .heading:hover {
    color: #019dea
}

.blog-main .container-fluid .row-custom .col-otr .col-inr .content-otr .desc {
    color: #b7b7b7;
    margin: 8px 0 0
}

@media(max-width: 1199px) {
    .blog-main .container-fluid .row-custom .col-otr .box-1,
    .blog-main .container-fluid .row-custom .col-otr .box-2 {
        margin: 0 0 24px
    }
}

.blog-main .container-fluid .responsive {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

@media(max-width: 575px) {
    .blog-main .container-fluid .responsive {
        display: flex
    }
}

.blog-main .container-fluid .responsive .view-all {
    display: flex;
    align-items: center
}

.blog-main .container-fluid .responsive .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.blog-main .container-fluid .responsive .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

.home2-main {
    background-color: #242629;
}

.home2-main .container-fluid {
    position: relative
}

.home2-main .container-fluid .navbar-main-2 .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    position: relative;
    z-index: 10
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper {
        padding: 24px 0
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .logo-otr .logo-a .logo-img {
    width: 134px
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .logo-otr .logo-a .logo-img {
        width: 110px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr {
    margin: 0 auto
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr {
        display: none
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr {
    display: flex;
    align-items: center
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li {
    position: relative
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li:not(:last-child) {
    margin-right: 40px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li:hover .drop-down-ul {
    visibility: visible;
    opacity: 1;
    top: 50px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a {
    color: #fff;
    line-height: 50px;
    transition: .2s;
    cursor: pointer
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a:hover {
    color: #019dea
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul {
    position: absolute;
    left: -24px;
    top: 70px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li {
    position: relative
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:not(:last-child) {
    margin-bottom: 12px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:hover .drop-down-ul-other {
    opacity: 1;
    visibility: visible
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a {
    color: #fff;
    display: inline;
    font-family: poppins-medium;
    transition: .2s;
    cursor: pointer
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a:hover {
    color: #019dea
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other {
    position: absolute;
    left: 180px;
    top: -24px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other {
    position: relative
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other:not(:last-child) {
    margin-bottom: 12px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other {
    color: #fff;
    font-family: poppins-medium;
    display: inline;
    transition: .2s
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other:hover {
    color: #019dea
}

.home2-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .nav-li4 .nav-a {
    letter-spacing: 2px;
    position: relative;
    font-family: poppins-bold;
    top: -2px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav {
    display: flex;
    align-items: center
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main {
    position: relative;
    width: 280px
}

@media(max-width: 1300px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main {
        width: 200px
    }
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main {
        display: none
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main .input {
    width: 280px
}

@media(max-width: 1300px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main .input {
        width: 200px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main .search-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    color: #fff;
    transform: translateY(-50%);
    font-size: 16px
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .action {
        display: none
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main {
    position: relative
}

@media(max-width: 991px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main {
        display: block !important
    }
}

@media(max-width: 767px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main {
        position: inherit
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05)
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr {
        width: 40px;
        height: 40px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr .notification-icon {
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr .notification-icon {
        font-size: 18px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr .dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #019dea;
    position: absolute;
    top: 4px;
    right: 4px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop {
    position: absolute;
    background-color: #222f45;
    width: 400px;
    border-radius: 24px;
    padding: 24px 28px 32px;
    top: 100px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 767px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop {
        width: 100%;
        padding: 24px 15px 32px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .Heading-otr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .Heading-otr .heading {
    color: #fff
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .Heading-otr .linkk {
    color: #019dea
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li:not(:last-child) {
    margin: 0 0 16px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a {
    display: flex;
    align-items: center
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .img-otr {
    width: 70px;
    height: 70px;
    margin: 0 16px 0 0
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .img-otr .img {
    height: 100%;
    border-radius: 6px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .content-otr .name {
    color: #fff;
    margin: 0 0 6px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .content-otr .price {
    color: #b7b7b7
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop-open {
    top: 60px;
    opacity: 1;
    visibility: visible
}

@media(max-width: 767px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop-open {
        top: 80px
    }
}

@media(max-width: 991px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .right-space {
        display: none
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .right-space:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .right-space:not(:last-child) {
        margin-right: 0
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
    position: relative
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
        margin-right: 24px
    }
}

@media(max-width: 767px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
        position: inherit
    }
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
        margin: 0 16px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 12px;
    height: 56px
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav {
        height: 40px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .img-otr .nav-prof-img {
    height: 56px;
    width: 56px;
    border-radius: 12px 0 0 12px
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .img-otr .nav-prof-img {
        width: 40px;
        height: 40px;
        border-radius: 12px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .desc {
    color: #fff;
    padding: 0 16px
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .desc {
        display: none
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr {
    position: absolute;
    background-color: #222f45;
    width: 300px;
    border-radius: 24px;
    padding: 24px 28px 32px;
    top: 100px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 767px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr {
        width: 100%;
        padding: 24px 15px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr {
    display: flex;
    align-items: center
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr .text {
    color: #fff
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr .copy-icon {
    font-size: 24px;
    color: #fff
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr {
    display: flex;
    align-items: center;
    margin: 16px 0
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .img-etherem {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 100%
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .img-etherem .etherem {
    height: 32px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance {
    margin-left: 16px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance .text {
    color: #b7b7b7
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance .price {
    color: #fff
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li:not(:last-child) {
    margin-bottom: 12px
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li .link-profile-a {
    display: inline;
    color: #fff;
    transition: .3s
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li .link-profile-a:hover {
    color: #019dea
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-open {
    top: 60px;
    opacity: 1;
    visibility: visible
}

@media(max-width: 767px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-open {
        top: 80px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr {
        display: flex
    }
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr {
        width: 40px;
        height: 40px
    }
}

.home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr .burger-icon {
    font-size: 24px;
    color: #fff
}

@media(max-width: 575px) {
    .home2-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr .burger-icon {
        font-size: 18px
    }
}

.home2-main .container-fluid .row-custom {
    position: relative;
    z-index: 2;
    padding: 26px 0 58px
}

@media(max-width: 1400px) {
    .home2-main .container-fluid .row-custom .col-content-otr {
        width: 50%
    }
}

@media(max-width: 1199px) {
    .home2-main .container-fluid .row-custom .col-content-otr {
        width: 60%
    }
}

@media(max-width: 991px) {
    .home2-main .container-fluid .row-custom .col-content-otr {
        width: 80%
    }
}

@media(max-width: 767px) {
    .home2-main .container-fluid .row-custom .col-content-otr {
        width: 100%
    }
}

.home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

.home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #fff;
    margin: 20px 0 40px
}

@media(max-width: 575px) {
    .home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
        font-size: 16px;
        line-height: 28px
    }
}

.home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
    display: flex;
    align-items: center
}

@media(max-width: 420px) {
    .home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width: 420px) {
    .home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero {
        width: 100%
    }
}

.home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero:not(:last-child) {
    margin: 0 24px 0 0
}

@media(max-width: 420px) {
    .home2-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero:not(:last-child) {
        margin: 0 0 24px
    }
}

.home2-main .container-fluid .hero-img {
    position: absolute;
    height: 85%;
    right: 180px;
    bottom: 0
}

@media(max-width: 1400px) {
    .home2-main .container-fluid .hero-img {
        right: 0;
        height: 80%
    }
}

@media(max-width: 991px) {
    .home2-main .container-fluid .hero-img {
        display: none
    }
}

.creator-home2-main {
    margin: 128px 0
}

.creator-home2-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 72px
}

.creator-home2-main .container-fluid .wrapper .heading {
    color: #fff
}

.creator-home2-main .container-fluid .wrapper .view-all {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .creator-home2-main .container-fluid .wrapper .view-all {
        display: none
    }
}

.creator-home2-main .container-fluid .wrapper .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.creator-home2-main .container-fluid .wrapper .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

@media(min-width: 992px) and (max-width:1199px) {
    .creator-home2-main .container-fluid .row-creator .col-otr {
        width: 25%
    }
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 24px 28px
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr {
    width: 62px;
    height: 62px;
    border-radius: 100px;
    position: relative
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .avatar {
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #019dea;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    right: 2px;
    bottom: 0
}

@media(max-width: 575px) {
    .creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr {
        width: 16px;
        height: 16px
    }
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr .check-icon {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px
}

@media(max-width: 575px) {
    .creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr .check-icon {
        top: 30%;
        font-size: 12px
    }
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr {
    margin: 16px 0 0
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr .creator-name {
    color: #fff
}

.creator-home2-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr .price {
    color: #019dea
}

.creator-home2-main .container-fluid .row-creator .col-otr .box-1,
.creator-home2-main .container-fluid .row-creator .col-otr .box-2,
.creator-home2-main .container-fluid .row-creator .col-otr .box-3,
.creator-home2-main .container-fluid .row-creator .col-otr .box-4,
.creator-home2-main .container-fluid .row-creator .col-otr .box-5,
.creator-home2-main .container-fluid .row-creator .col-otr .box-6 {
    margin: 0 0 24px
}

@media(max-width: 991px) {
    .creator-home2-main .container-fluid .row-creator .col-otr .box-1,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-2,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-3,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-4,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-5,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-6,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-7,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-8 {
        margin: 0 0 24px
    }
}

@media(max-width: 767px) {
    .creator-home2-main .container-fluid .row-creator .col-otr .box-1,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-2,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-3,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-4,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-5,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-6,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-7,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-8,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-9,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-10 {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .creator-home2-main .container-fluid .row-creator .col-otr .box-1,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-2,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-3,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-4,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-5,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-6,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-7,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-8,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-9,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-10,
    .creator-home2-main .container-fluid .row-creator .col-otr .box-11 {
        margin: 0 0 24px
    }
}

.creator-home2-main .container-fluid .responsive {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

@media(max-width: 575px) {
    .creator-home2-main .container-fluid .responsive {
        display: flex
    }
}

.creator-home2-main .container-fluid .responsive .view-all {
    display: flex;
    align-items: center
}

.creator-home2-main .container-fluid .responsive .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.creator-home2-main .container-fluid .responsive .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

.hero3-main .container-fluid .row-custom {
    background-color: rgba(255, 255, 255, .05);
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 24px
}

.hero3-main .container-fluid .row-custom .col-carousel-otr {
    height: 100vh;
    padding: 0
}

@media(max-width: 991px) {
    .hero3-main .container-fluid .row-custom .col-carousel-otr {
        height: 70vh
    }
}

@media(max-width: 420px) {
    .hero3-main .container-fluid .row-custom .col-carousel-otr {
        height: 50vh
    }
}

.hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr {
    height: 100%;
    overflow: hidden
}

.hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr .row-cover-img {
    height: 100%
}

.hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr .row-cover-img .col-img-otr {
    height: 100%
}

.hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr .row-cover-img .col-img-otr .img-cover {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media(max-width: 991px) {
    .hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr .row-cover-img .col-img-otr .img-cover {
        height: 70vh
    }
}

@media(max-width: 420px) {
    .hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr .row-cover-img .col-img-otr .img-cover {
        height: 50vh
    }
}

.hero3-main .container-fluid .row-custom .col-carousel-otr .col-carousel-inr .row-cover-img .owl-dots {
    position: relative;
    z-index: 10;
    top: -66px;
    margin: 0
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr {
    position: relative;
    padding: 0 72px
}

@media(min-width: 992px) and (max-width:1199px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 0 15px 0 18px
    }
}

@media(max-width: 991px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 96px 72px 128px
    }
}

@media(max-width: 991px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 72px 15px
    }
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background-color: #fff;
    filter: blur(240px);
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    opacity: .4
}

@media(max-width: 991px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr::after {
        display: none
    }
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .tag {
    color: #b7b7b7;
    margin-bottom: 12px
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

@media(min-width: 992px) and (max-width:1199px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
        font-size: 52px;
        line-height: 80px
    }
}

@media(max-width: 575px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
        font-size: 36px;
        line-height: 60px
    }
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #b7b7b7;
    margin: 20px 0 40px
}

@media(max-width: 1199px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc br {
        display: none
    }
}

@media(max-width: 575px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
        font-size: 16px;
        line-height: 28px
    }
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
    display: flex;
    align-items: center
}

@media(max-width: 420px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width: 420px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero {
        width: 100%
    }
}

.hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero:not(:last-child) {
    margin: 0 24px 0 0
}

@media(max-width: 420px) {
    .hero3-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero:not(:last-child) {
        margin: 0 0 24px
    }
}

.hero4-main .container-fluid .row-custom {
    position: relative;
    width: 100%;
    margin: 0;
    background-image: url(../images/hero-bg-img2.png);
    padding: 128px 15px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px
}

@media(min-width: 576px) and (max-width:767px) {
    .hero4-main .container-fluid .row-custom {
        position: center
    }
}

.hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr {
    text-align: center
}

.hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .tag {
    color: #b7b7b7;
    margin-bottom: 12px
}

.hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

@media(max-width: 767px) {
    .hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading br {
        display: none
    }
}

@media(max-width: 575px) {
    .hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
        font-size: 36px;
        line-height: 60px
    }
}

.hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #b7b7b7;
    margin: 20px 0 40px
}

@media(max-width: 575px) {
    .hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
        font-size: 16px;
        line-height: 28px
    }
}

.hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 420px) {
    .hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width: 420px) {
    .hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero {
        width: 100%
    }
}

.hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero:not(:last-child) {
    margin: 0 24px 0 0
}

@media(max-width: 420px) {
    .hero4-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .btn-hero:not(:last-child) {
        margin: 0 0 24px
    }
}

.hero4-main .container-fluid .row-custom .lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1
}

@media(max-width: 1100px) {
    .hero4-main .container-fluid .row-custom .lines {
        display: none
    }
}

.hero5-main {
    position: relative;
    background-image: url(../images/hero-bg-img2.png);
    background-position: center;
    background-size: cover;
    overflow: hidden
}

.hero5-main .container-fluid .navbar-main-2 .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    position: relative;
    z-index: 10
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper {
        padding: 24px 0
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .logo-otr .logo-a .logo-img {
    width: 134px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .logo-otr .logo-a .logo-img {
        width: 110px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr {
    margin: 0 auto
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr {
        display: none
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr {
    display: flex;
    align-items: center
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li {
    position: relative
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li:not(:last-child) {
    margin-right: 40px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li:hover .drop-down-ul {
    visibility: visible;
    opacity: 1;
    top: 50px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a {
    color: #fff;
    font-family: poppins-medium;
    line-height: 50px;
    transition: .2s;
    cursor: pointer
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .nav-a:hover {
    color: #019dea
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .dots-menu {
    letter-spacing: 2px;
    position: relative;
    font-family: poppins-bold;
    top: -2px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul {
    position: absolute;
    left: -24px;
    top: 70px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li {
    position: relative
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:not(:last-child) {
    margin-bottom: 12px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li:hover .drop-down-ul-other {
    opacity: 1;
    visibility: visible
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a {
    color: #fff;
    display: inline;
    font-family: poppins-medium;
    transition: .2s;
    cursor: pointer
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-a:hover {
    color: #019dea
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other {
    position: absolute;
    left: 180px;
    top: -24px;
    width: 230px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other {
    position: relative
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other:not(:last-child) {
    margin-bottom: 12px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other {
    color: #fff;
    font-family: poppins-medium;
    display: inline;
    transition: .2s
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .navigation-otr .navigation-inr .navigation-li .drop-down-ul .drop-down-li .drop-down-ul-other .drop-down-li-other .drop-down-a-other:hover {
    color: #019dea
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav {
    display: flex;
    align-items: center
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main {
    position: relative;
    width: 280px
}

@media(max-width: 1300px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main {
        width: 200px
    }
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main {
        display: none
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main .input {
    width: 280px
}

@media(max-width: 1300px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main .input {
        width: 200px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .search-main .search-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    color: #fff;
    transform: translateY(-50%);
    font-size: 16px
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .action {
        display: none
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main {
    position: relative
}

@media(max-width: 991px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main {
        display: block !important
    }
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main {
        position: inherit
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05)
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr {
        width: 40px;
        height: 40px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr .notification-icon {
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr .notification-icon {
        font-size: 18px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .icon-notification-otr .dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #019dea;
    position: absolute;
    top: 4px;
    right: 4px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop {
    position: absolute;
    background-color: #222f45;
    width: 400px;
    border-radius: 24px;
    padding: 24px 28px 32px;
    top: 100px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop {
        width: 100%;
        padding: 24px 15px 32px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .Heading-otr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .Heading-otr .heading {
    color: #fff
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .Heading-otr .linkk {
    color: #019dea
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li:not(:last-child) {
    margin: 0 0 16px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a {
    display: flex;
    align-items: center
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .img-otr {
    width: 70px;
    height: 70px;
    margin: 0 16px 0 0
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .img-otr .img {
    height: 100%;
    border-radius: 6px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .content-otr .name {
    color: #fff;
    margin: 0 0 6px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop .notification-ul .notification-li .notification-a .content-otr .price {
    color: #b7b7b7
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop-open {
    top: 60px;
    opacity: 1;
    visibility: visible
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .notification-main .notification-drop-open {
        top: 80px
    }
}

@media(max-width: 991px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .right-space {
        display: none
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .right-space:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .right-space:not(:last-child) {
        margin-right: 0
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
    position: relative
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
        margin-right: 24px
    }
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
        position: inherit
    }
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main {
        margin: 0 12px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 12px;
    height: 56px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav {
        height: 40px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .img-otr .nav-prof-img {
    height: 56px;
    width: 56px;
    border-radius: 12px 0 0 12px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .img-otr .nav-prof-img {
        width: 40px;
        height: 40px;
        border-radius: 12px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .desc {
    color: #fff;
    font-family: poppins-medium;
    padding: 0 16px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-nav .desc {
        display: none
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr {
    position: absolute;
    background-color: #222f45;
    width: 300px;
    border-radius: 24px;
    padding: 24px 28px 32px;
    top: 100px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr {
        width: 100%;
        padding: 24px 15px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr {
    display: flex;
    align-items: center;
    cursor: pointer
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr .text {
    color: #fff
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .copy-icon-otr .copy-icon {
    font-size: 24px;
    color: #fff
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr {
    display: flex;
    align-items: center;
    margin: 16px 0
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .img-etherem {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 100%
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .img-etherem .etherem {
    height: 32px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance {
    margin-left: 16px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance .text {
    color: #b7b7b7
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .balance-otr .balance .price {
    color: #fff
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li:not(:last-child) {
    margin-bottom: 12px
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li .link-profile-a {
    display: inline;
    font-family: poppins-medium;
    color: #fff;
    transition: .3s
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-otr .link-profile-ul .link-profile-li .link-profile-a:hover {
    color: #019dea
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-open {
    top: 60px;
    opacity: 1;
    visibility: visible
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .profile-nav-main .profile-pop-open {
        top: 80px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr {
        display: flex
    }
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr {
        width: 40px;
        height: 40px
    }
}

.hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr .burger-icon {
    font-size: 24px;
    color: #fff
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .navbar-main-2 .wrapper .action-nav .burger-icon-otr .burger-icon {
        font-size: 18px
    }
}

.hero5-main .container-fluid .row-custom {
    align-items: center;
    padding: 96px 100px 128px
}

@media(max-width: 1300px) {
    .hero5-main .container-fluid .row-custom {
        padding: 96px 50px 128px
    }
}

@media(max-width: 991px) {
    .hero5-main .container-fluid .row-custom {
        padding: 96px 0 128px
    }
}

@media(max-width: 1100px) {
    .hero5-main .container-fluid .row-custom .col-img-otr {
        width: 60%;
        margin: 0 auto
    }
}

@media(max-width: 991px) {
    .hero5-main .container-fluid .row-custom .col-img-otr {
        width: 80%
    }
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .row-custom .col-img-otr {
        width: 100%
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr {
    border-radius: 500px 500px 24px 24px;
    background-color: rgba(255, 255, 255, .05);
    padding: 36px 36px 34px;
    margin-right: 50px
}

@media(max-width: 1199px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr {
        margin-right: 0
    }
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr {
        padding: 28px 28px 24px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr {
    position: relative;
    overflow: hidden;
    border-radius: 16px
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .hero-img {
    width: 100%;
    border-radius: 500px 500px 16px 16px
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 16px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    width: calc(100% - 72px);
    margin: 0 auto
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main {
        display: none
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .left-bid {
    position: relative;
    z-index: 1
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .left-bid .bid-desc {
    color: #fff
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .left-bid .ETH {
    color: #019dea
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .right-bid {
    position: relative;
    z-index: 1;
    width: 125px
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .right-bid .end-desc {
    color: #fff
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .right-bid .timer {
    color: #019dea
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .bid-main .blur-effect {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .time-otr {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    padding: 6px 16px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .time-otr {
        display: block
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .time-otr .timer {
    color: #fff
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main {
    display: none;
    position: absolute;
    top: 150px;
    right: 24px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main {
        display: block
    }
}

@media(max-width: 420px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main {
        top: 100px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main .heart-icon-otr {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    position: relative;
    cursor: pointer
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main .heart-icon-otr .heart-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #019dea
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .img-otr .heart-main .heart-icon-otr .ri-heart-fill {
    color: red
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 0
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr {
    display: flex
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr {
    position: relative;
    overflow: visible;
    transition: .2s
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    border: 2px solid #fff
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .img-inr .avatar-img {
        width: 40px;
        height: 40px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #019dea;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr {
        width: 16px;
        height: 16px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-otr .check-icon-otr .check-icon {
        top: 30%;
        font-size: 12px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 {
    position: relative
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1:hover,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2:hover,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1:hover .hover,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2:hover .hover,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1 .hover,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 .hover,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1 .hover,
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 .hover,
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 .hover {
        display: none
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-1 .hover .text,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 .hover .text,
.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 {
    margin-left: -25px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-2 {
        margin-left: -15px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 {
    margin-left: -25px
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .profile-inr .img-3 {
        margin-left: -15px
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main {
        display: none
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .heart-icon-otr {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .05);
    position: relative;
    cursor: pointer
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .heart-icon-otr .heart-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #019dea
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .heart-icon-otr .ri-heart-fill {
    color: red
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .heart-main .likes {
    color: #b7b7b7;
    margin-left: 16px
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid {
    display: none
}

@media(max-width: 575px) {
    .hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid {
        display: block
    }
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid .bid-desc {
    color: #fff
}

.hero5-main .container-fluid .row-custom .col-img-otr .col-img-inr .profile-main .left-bid .ETH {
    color: #019dea
}

@media(max-width: 1100px) {
    .hero5-main .container-fluid .row-custom .col-content-otr {
        width: 100%
    }
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr {
    padding-left: 0
}

@media(max-width: 1300px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 0
    }
}

@media(max-width: 1100px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        padding: 72px 0 0;
        text-align: center
    }
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        text-align: left
    }
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading .text-color {
    color: #019dea
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #b7b7b7;
    padding: 20px 0 40px
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
    display: flex
}

@media(max-width: 1100px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        text-align: center;
        justify-content: center
    }
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        justify-content: flex-start
    }
}

@media(max-width: 420px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .action {
        flex-direction: column
    }
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .left-btn {
    margin-right: 24px
}

@media(max-width: 420px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .action .left-btn {
        margin: 0 0 24px
    }
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
    display: flex;
    margin: 40px 0 0
}

@media(max-width: 1100px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
        text-align: center;
        justify-content: center
    }
}

@media(max-width: 767px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
        justify-content: flex-start;
        text-align: left
    }
}

@media(max-width: 420px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics {
        flex-direction: column
    }
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box {
    padding: 24px 28px 30px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, .05)
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 420px) {
    .hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box:not(:last-child) {
        margin: 0 0 24px
    }
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box .static-head {
    color: #fff
}

.hero5-main .container-fluid .row-custom .col-content-otr .col-content-inr .staticstics .staticstics-box .static-desc {
    color: #fff
}

.hero5-main .lines {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1
}

@media(max-width: 1100px) {
    .hero5-main .lines {
        display: none
    }
}

.explore-main {
    margin: 128px 0;
    overflow: hidden
}

.explore-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.explore-main .container-fluid .wrapper .teb-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr {
    display: flex;
    align-items: center
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .tab-otr {
        flex-direction: column;
        align-items: flex-start;
        width: 100%
    }
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .heading {
    color: #fff;
    margin: 0 24px 0 0
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .tab-otr .heading {
        margin: 0 0 24px
    }
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr {
    position: relative
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr {
        width: 100%
    }
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .btn-drop {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border: 2px solid #019dea;
    border-radius: 12px;
    padding: 6px 16px;
    cursor: pointer
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .btn-drop {
        position: relative;
        width: 100%
    }
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .btn-drop .btn-drop-inr {
    color: #fff
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .btn-drop .arrow-down {
    font-size: 18px;
    color: #fff;
    margin: 0 0 0 8px
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .btn-drop .arrow-down {
        position: absolute;
        right: 16px;
        margin: 0
    }
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .btn-drop .change-text {
    color: #fff
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .tabs-ul {
    position: absolute;
    left: 0;
    top: 80px;
    width: 200px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .tabs-ul .tab-link {
    cursor: pointer
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .tabs-ul .tab-link:not(:last-child) {
    margin-bottom: 12px
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .tabs-ul .tab-link .tab-p {
    color: #fff
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .tabs-ul .active .tab-p {
    color: #019dea
}

.explore-main .container-fluid .wrapper .teb-main .tab-otr .tab-inr .tab-drop-open {
    opacity: 1;
    visibility: visible;
    top: 50px
}

.explore-main .container-fluid .wrapper .teb-main .slect-main {
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    .explore-main .container-fluid .wrapper .teb-main .slect-main {
        margin-top: 24px
    }
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .slect-main {
        width: 100%;
        flex-direction: column
    }
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select {
    cursor: pointer;
    display: inline-block;
    position: relative
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .slect-main .select {
        width: 100%
    }
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 420px) {
    .explore-main .container-fluid .wrapper .teb-main .slect-main .select:not(:last-child) {
        margin: 0 0 24px
    }
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-styled {
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 6px 40px 6px 16px;
    border-radius: 12px;
    border: 2px solid #019dea;
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-medium
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-styled:after,
#slect-main .select .select-styled:after {
    content: "";
    width: 12px;
    height: 10px;
    position: absolute;
    background-image: url(../fonts/arrow-drop-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 16px;
    right: 16px
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-styled:active:after,
.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-styled.active:after,
.slect-main .select .select-styled:active:after,
.slect-main .select .select-styled.active:after {
    top: 16px;
    border-color: transparent transparent #fff transparent
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-options,
#slect-main .select .select-options {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    width: 200px;
    z-index: 999;
    background-color: #222f45;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: none
}

@media(max-width: 575px) {
    .explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-options,
    #slect-main .select .select-options {
        right: inherit;
        left: 0
    }
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-options li {
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-medium;
    color: #fff;
    border-radius: 12px;
    padding: 0 24px;
    transition: .3s
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-options li:not(:last-child) {
    margin: 0 0 8px
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-options li:hover {
    color: #019dea;
    background: 0 0;
    border-radius: 0
}

.explore-main .container-fluid .wrapper .teb-main .slect-main .select .select-options li[rel=hide] {
    display: none
}

.explore-main .container-fluid .row-custom-main .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(0px);
    -webkit-animation: fadeIn .3s ease 1 forwards;
    animation: fadeIn .3s ease 1 forwards
}

@media(max-width: 1300px) {
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr {
        width: 33.333%
    }
}

@media(max-width: 991px) {
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr {
        width: 50%
    }
}

@media(max-width: 600px) {
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr {
        width: 100%
    }
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr {
    display: flex
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1:hover,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2:hover,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1:hover .hover,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2:hover .hover,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
        display: none
    }
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover .text,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover .text,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr {
    position: relative;
    cursor: pointer
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .drop-artwork {
    position: absolute;
    background-color: #222f45;
    border-radius: 8px;
    padding: 10px 0 12px 16px;
    width: 110px;
    right: 8;
    top: 0;
    z-index: 10;
    transition: .3s;
    display: none
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .drop-artwork .drop-ul .drop-li {
    color: #fff;
    transition: .3s
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .drop-artwork .drop-ul .drop-li:hover {
    color: #019dea
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .drop-artwork .drop-ul .drop-li:not(:last-child) {
    margin: 0 0 6px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .tab-content {
    display: none
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .active {
    display: block
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr {
    position: relative
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .cover-img {
    width: 100%;
    border-radius: 16px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    width: 124px;
    height: 40px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .time-otr .timer {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: #fff
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .art-name:hover {
    color: #019dea
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .bid-main .bid {
    color: #b7b7b7
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .bid-main .Price {
    color: #fff
}

.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-1,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-2,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-3,
.explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-4 {
    margin: 0 0 24px
}

@media(max-width: 991px) {
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-1,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-2,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-3,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-4,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-5,
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-6 {
        margin: 0 0 24px
    }
}

@media(max-width: 600px) {
    .explore-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .box-7 {
        margin: 0 0 24px
    }
}

.explore-main .container-fluid .row-custom-main .active {
    display: block;
    opacity: 1
}

.explore-main .container-fluid .row-custom-main .col-btn-otr .col-btn-inr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

.explore-creator-main {
    margin: 128px 0
}

.explore-creator-main .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 72px
}

@media(max-width: 575px) {
    .explore-creator-main .container-fluid .wrapper {
        flex-direction: column;
        align-items: flex-start
    }
}

.explore-creator-main .container-fluid .wrapper .heading {
    color: #fff
}

@media(max-width: 575px) {
    .explore-creator-main .container-fluid .wrapper .heading {
        margin: 0 0 24px
    }
}

@media(max-width: 420px) {
    .explore-creator-main .container-fluid .wrapper .slect-main {
        width: 100%
    }
}

.explore-creator-main .container-fluid .wrapper .slect-main .select,
#slect-main .select {
    cursor: pointer;
    display: inline-block;
    position: relative
}

@media(max-width: 420px) {
    .explore-creator-main .container-fluid .wrapper .slect-main .select,
    #slect-main .select {
        width: 100%
    }
}

.explore-creator-main .container-fluid .wrapper .slect-main .select:not(:last-child),
#slect-main .select:not(:last-child) {
    margin-right: 24px
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-hidden,
#slect-main .select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-styled,
#slect-main .select .select-styled {
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 14px 40px 14px 16px;
    border-radius: 8px;
    border: 2px solid #019dea;
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-medium
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-styled:after,
#slect-main .select .select-styled:after {
    content: "";
    width: 12px;
    height: 25px;
    position: absolute;
    background-image: url(../fonts/arrow-drop-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 16px;
    right: 16px
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-styled:active:after,
.explore-creator-main .container-fluid .wrapper .slect-main .select .select-styled.active:after,
#slect-main .select .select-styled:active:after,
#slect-main .select .select-styled.active:after {
    top: 16px;
    border-color: transparent transparent #fff transparent
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-options,
#slect-main .select .select-options {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    width: 200px;
    z-index: 999;
    background-color: #222f45;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: none
}

@media(max-width: 575px) {
    .explore-creator-main .container-fluid .wrapper .slect-main .select .select-options,
    #slect-main .select .select-options {
        right: inherit;
        left: 0
    }
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-options li,
#slect-main .select .select-options li {
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-medium;
    color: #fff;
    border-radius: 12px;
    padding: 0 24px;
    transition: .3s
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-options li:not(:last-child),
#slect-main .select .select-options li:not(:last-child) {
    margin: 0 0 8px
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-options li:hover,
#slect-main .select .select-options li:hover {
    color: #019dea;
    background: 0 0;
    border-radius: 0
}

.explore-creator-main .container-fluid .wrapper .slect-main .select .select-options li[rel=hide],
#slect-main .select .select-options li[rel=hide] {
    display: none
}

@media(min-width: 992px) and (max-width:1199px) {
    .explore-creator-main .container-fluid .row-creator .col-otr {
        width: 33.333%
    }
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 24px 28px
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr {
    width: 62px;
    height: 62px;
    border-radius: 100px;
    position: relative
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .avatar {
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: #019dea;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    right: 2px;
    bottom: 0
}

@media(max-width: 575px) {
    .explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr {
        width: 16px;
        height: 16px
    }
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr .check-icon {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px
}

@media(max-width: 575px) {
    .explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .avtar-otr .check-icon-otr .check-icon {
        top: 30%;
        font-size: 12px
    }
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr {
    margin: 0 0 0 16px
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr .creator-name {
    color: #fff
}

.explore-creator-main .container-fluid .row-creator .col-otr .col-inr .col-box .content-otr .price {
    color: #019dea
}

.explore-creator-main .container-fluid .row-creator .col-otr .box-1,
.explore-creator-main .container-fluid .row-creator .col-otr .box-2,
.explore-creator-main .container-fluid .row-creator .col-otr .box-3,
.explore-creator-main .container-fluid .row-creator .col-otr .box-4,
.explore-creator-main .container-fluid .row-creator .col-otr .box-5,
.explore-creator-main .container-fluid .row-creator .col-otr .box-6,
.explore-creator-main .container-fluid .row-creator .col-otr .box-7,
.explore-creator-main .container-fluid .row-creator .col-otr .box-8,
.explore-creator-main .container-fluid .row-creator .col-otr .box-9,
.explore-creator-main .container-fluid .row-creator .col-otr .box-10,
.explore-creator-main .container-fluid .row-creator .col-otr .box-11,
.explore-creator-main .container-fluid .row-creator .col-otr .box-12,
.explore-creator-main .container-fluid .row-creator .col-otr .box-13,
.explore-creator-main .container-fluid .row-creator .col-otr .box-14,
.explore-creator-main .container-fluid .row-creator .col-otr .box-15,
.explore-creator-main .container-fluid .row-creator .col-otr .box-16,
.explore-creator-main .container-fluid .row-creator .col-otr .box-17,
.explore-creator-main .container-fluid .row-creator .col-otr .box-18,
.explore-creator-main .container-fluid .row-creator .col-otr .box-19,
.explore-creator-main .container-fluid .row-creator .col-otr .box-20 {
    margin: 0 0 24px
}

@media(max-width: 991px) {
    .explore-creator-main .container-fluid .row-creator .col-otr .box-1,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-2,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-3,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-4,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-5,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-6,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-7,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-8,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-9,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-10,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-11,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-12,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-13,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-14,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-15,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-16,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-17,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-18,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-19,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-20,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-21,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-22 {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .explore-creator-main .container-fluid .row-creator .col-otr .box-1,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-2,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-3,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-4,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-5,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-6,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-7,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-8,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-9,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-10,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-11,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-12,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-13,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-14,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-15,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-16,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-17,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-18,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-19,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-20,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-21,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-22,
    .explore-creator-main .container-fluid .row-creator .col-otr .box-23 {
        margin: 0 0 24px
    }
}

.explore-creator-main .container-fluid .row-creator .col-btn-otr .col-btn-inr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

.single-artwork-main {
    margin: 128px 0
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr {
    position: -webkit-sticky;
    position: sticky;
    top: 0
}

@media(max-width: 991px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr {
        margin: 0 0 40px
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .desc {
    color: #b7b7b7;
    margin: 16px 0 36px
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr {
    display: flex;
    align-items: center
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr {
    width: 50%
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr {
        width: 100%
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr {
        width: 100%
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr:not(:last-child) {
    margin: 0 24px 0 0
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr:not(:last-child) {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr:not(:last-child) {
        margin: 0 0 24px
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr .col-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 24px 28px
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr .col-box .avtar-otr {
    width: 62px;
    height: 62px
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr .col-box .avtar-otr .avatar {
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr .col-box .content-otr {
    margin: 0 0 0 16px
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr .col-box .content-otr .creator-name {
    color: #fff
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .col-otr .col-inr .col-box .content-otr .price {
    color: #019dea
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 24px 28px 32px;
    margin: 40px 0 0
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main {
        background-color: transparent;
        padding: 0;
        border-radius: 0
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .heading {
    color: #fff
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr {
    display: flex;
    align-items: center;
    margin: 24px 0 36px
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 16px 24px
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr {
        width: 100%
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr {
        width: 100%
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr:not(:last-child) {
    margin: 0 24px 0 0
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr:not(:last-child) {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr:not(:last-child) {
        margin: 0 0 24px
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr .text {
    color: #b7b7b7
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr .price {
    color: #fff;
    margin: 6px 0
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr2 .timer {
    display: flex;
    align-items: center;
    margin: 6px 0 0
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr2 .timer .main:not(:last-child) {
    margin: 0 24px 0 0
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr2 .timer .main .time-inr {
    color: #fff;
    margin: 0 0 6px
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr2 .timer .main .time-text {
    color: #b7b7b7
}

@media(max-width: 420px) {
    .single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .bid-otr .bid-inr2 .timer .main .time-text {
        font-size: 16px;
        line-height: 28px;
        font-family: poppins-regular
    }
}

.single-artwork-main .container-fluid .row-custom .col-content-otr .col-content-inr .bid-main .action {
    text-align: center
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr {
    padding: 0 0 0 100px
}

@media(max-width: 1300px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr {
        padding: 0
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr {
    position: relative;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 36px;
    margin: 0 0 40px
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr {
        padding: 24px
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .img-inr .cover-img {
    border-radius: 16px;
    width: 100%
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 32px 0 0
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .heart-main {
    display: flex;
    align-items: center
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .heart-main .heart-icon-otr {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .05);
    position: relative;
    cursor: pointer
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .heart-main .heart-icon-otr .heart-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #019dea
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .heart-main .heart-icon-otr .ri-heart-fill {
    color: red
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .heart-main .likes {
    color: #b7b7b7;
    margin-left: 16px
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .heart-main .likes {
        display: none
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr {
    display: flex;
    align-items: center
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    margin: 0 16px 0 0
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr {
        position: inherit
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-icon {
    font-size: 24px;
    color: #019dea
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop {
    position: absolute;
    background-color: #222f45;
    border-radius: 16px;
    width: 380px;
    padding: 24px 28px;
    right: 0;
    z-index: 10;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop {
        width: 100%
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop .heading {
    color: #fff
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop .icon-ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop .icon-ul .icon-li {
    margin-top: 16
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop .icon-ul .icon-li:not(:last-child) {
    margin-right: 16px
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop .icon-ul .icon-li .icon-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    transition: .3s
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop .icon-ul .icon-li .icon-a:hover {
    background-color: #019dea
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-share-otr .share-pop-open {
    opacity: 1;
    visibility: visible;
    bottom: 90px
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-flag-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05)
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img-otr .icon-otr .icon-inr .icon-flag-otr .flag-icon {
    font-size: 24px;
    color: #019dea
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px 36px 36px
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr {
        padding: 0;
        background-color: transparent;
        border-radius: 0
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 16px 20px
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity {
        display: flex;
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity {
        padding: 28px
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity:not(:last-child) {
    margin: 0 0 24px
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .img-otr {
    width: 80px;
    height: 80px;
    margin: 0 24px 0 0
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .img-otr {
        margin: 0 0 24px;
        width: 100%;
        height: auto
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .img-otr .img-art {
    border-radius: 8px;
    height: 100%
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .img-otr .img-art {
        width: 100%;
        height: auto;
        border-radius: 16px
    }
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .text-otr .desc {
    color: #b7b7b7;
    margin: 0 0 8px
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .text-otr .desc .primary {
    display: inline;
    color: #019dea
}

.single-artwork-main .container-fluid .row-custom .col-art-otr .col-art-inr .activity-otr .activity .text-otr .time {
    color: #b7b7b7
}

.single-artwork-main .container-fluid .feature-main {
    margin: 72px 0 0
}

.single-artwork-main .container-fluid .feature-main .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 72px
}

.single-artwork-main .container-fluid .feature-main .wrapper .heading {
    color: #fff
}

.single-artwork-main .container-fluid .feature-main .wrapper .view-all {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .feature-main .wrapper .view-all {
        display: none
    }
}

.single-artwork-main .container-fluid .feature-main .wrapper .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.single-artwork-main .container-fluid .feature-main .wrapper .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

@media(max-width: 1300px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr {
        width: 33.333%
    }
}

@media(max-width: 991px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr {
        width: 50%
    }
}

@media(max-width: 600px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr {
        width: 100%
    }
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr {
    display: flex
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1:hover,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2:hover,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1:hover .hover,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2:hover .hover,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
        display: none
    }
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover .text,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover .text,
.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .list-icon-otr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    width: 20px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .avatar-main .list-icon-otr .icon {
    width: auto
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr {
    position: relative
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr .cover-img {
    width: 100%;
    border-radius: 16px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    width: 124px;
    height: 40px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr .time-otr .timer {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .art-name:hover {
    color: #019dea
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .bid-main .bid {
    color: #b7b7b7
}

.single-artwork-main .container-fluid .feature-main .row-custom .col-otr .col-inr .bid-main .Price {
    color: #fff
}

@media(max-width: 1300px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-1,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-2,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-3 {
        margin: 0 0 24px
    }
}

@media(max-width: 991px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-1,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-2 {
        margin: 0 0 24px
    }
}

@media(max-width: 600px) {
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-1,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-2,
    .single-artwork-main .container-fluid .feature-main .row-custom .col-otr .box-3 {
        margin: 0 0 24px
    }
}

.single-artwork-main .container-fluid .feature-main .responsive {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

@media(max-width: 575px) {
    .single-artwork-main .container-fluid .feature-main .responsive {
        display: flex
    }
}

.single-artwork-main .container-fluid .feature-main .responsive .view-all {
    display: flex;
    align-items: center
}

.single-artwork-main .container-fluid .feature-main .responsive .view-all .view {
    color: #019dea;
    margin: 0 12px 0 0
}

.single-artwork-main .container-fluid .feature-main .responsive .view-all .arrow-right {
    color: #019dea;
    font-size: 24px
}

.single-creator-main {
    margin: 128px 0;
    overflow: hidden
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr {
        width: 100%;
        margin: 0 0 72px
    }
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr {
        margin: 0 0 72px
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px 30px 36px
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        padding: 40px
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .img-otr {
    display: flex;
    align-items: center;
    justify-content: center
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .img-otr .avatar {
    width: 90%;
    border-radius: 100%
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .img-otr .avatar {
        width: 80%
    }
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .img-otr .avatar {
        width: 50%
    }
}

@media(max-width: 420px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .img-otr .avatar {
        width: 100%
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information {
        width: 50%
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .name {
    text-align: center;
    color: #fff;
    margin: 16px 0
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .copy-icon-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .copy-icon-otr .text {
    color: #b7b7b7;
    margin: 0 16px 0 0
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .copy-icon-otr .copy-icon {
    font-size: 24px;
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .action {
    text-align: center;
    margin: 30px 0 14px
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .social-icon .icon-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .social-icon .icon-ul .icon-li {
    margin-top: 16px
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .social-icon .icon-ul .icon-li:not(:last-child) {
    margin-right: 16px
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .social-icon .icon-ul .icon-li .icon-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    transition: .3s
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .social-icon .icon-ul .icon-li .icon-a:hover {
    background-color: #019dea
}

.single-creator-main .container-fluid .row-custom-otr .col-creator-otr .col-creator-inr .information .member {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid #019dea;
    border-bottom: 1px solid #019dea;
    color: #b7b7b7;
    margin: 30px 0 0
}

@media(min-width: 992px) and (max-width:1199px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr {
        width: 100%
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper {
    margin: 0 0 72px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr {
    display: flex;
    align-items: center
}

@media(max-width: 420px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .heading {
    color: #fff;
    margin: 0 24px 0 0
}

@media(max-width: 420px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .heading {
        margin: 0 0 24px
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr {
    position: relative
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .btn-drop {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border: 2px solid #019dea;
    border-radius: 12px;
    padding: 6px 16px;
    cursor: pointer
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .btn-drop .btn-drop-inr {
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .btn-drop .arrow-down {
    font-size: 18px;
    color: #fff;
    margin: 0 0 0 8px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .btn-drop .change-text {
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .tabs-ul {
    position: absolute;
    left: 0;
    top: 80px;
    width: 200px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .tabs-ul .tab-link {
    cursor: pointer
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .tabs-ul .tab-link:not(:last-child) {
    margin-bottom: 12px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .tabs-ul .tab-link .tab-p {
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .tabs-ul .active .tab-p {
    color: #019dea
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .wrapper .tab-otr .tab-inr .tab-drop-open {
    opacity: 1;
    visibility: visible;
    top: 50px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content {
    display: none;
    opacity: 0;
    -webkit-animation: fadeIn .3s ease 1 forwards;
    animation: fadeIn .3s ease 1 forwards
}

@media(max-width: 1300px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr {
        width: 33.333%
    }
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr {
        width: 50%
    }
}

@media(max-width: 600px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr {
        width: 100%
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr {
    display: flex
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1:hover,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2:hover,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1:hover .hover,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2:hover .hover,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 260px;
    background-color: #222f45;
    border: 1px solid #019dea;
    border-radius: 8px;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover {
        display: none
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-1 .hover .text,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 .hover .text,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    width: 20px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .avatar-main .list-icon-otr .icon {
    width: auto
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr {
    position: relative
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .cover-img {
    width: 100%;
    border-radius: 16px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    width: 124px;
    height: 40px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .time-otr .timer {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .art-name:hover {
    color: #019dea
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .bid-main .bid {
    color: #b7b7b7
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .bid-main .Price {
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-1,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-2,
.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-3 {
    margin: 0 0 24px
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-1,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-2,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-3,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-4 {
        margin: 0 0 24px
    }
}

@media(max-width: 600px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-1,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-2,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-3,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-4,
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr .col-otr .box-5 {
        margin: 0 0 24px
    }
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr {
        overflow-x: scroll
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr::-webkit-scrollbar {
    width: 100%;
    height: .1px;
    background-color: #eee
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr::-webkit-scrollbar-thumb {
    background-color: #acacac;
    border-radius: 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr:not(:last-child) {
    margin: 0 0 24px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 32px
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr {
        width: 992px
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr {
    display: flex;
    align-items: center
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .img-inr {
    margin: 0 24px 0 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .img-inr .avatar {
    width: 105px;
    border-radius: 100%
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .content .name {
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .content .follow-text {
    color: #b7b7b7;
    margin: 4px 0 8px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .content .action {
    display: flex
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .content .action .btn-unfolow {
    padding: 6px 16px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff;
    transition: .2s
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .img-otr .content .action .btn-unfolow:hover {
    background-color: #019dea;
    color: #fff;
    border: 1px solid transparent
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .art-img-otr {
    display: flex;
    align-items: center
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .art-img-otr .art-img-inr:not(:last-child) {
    margin: 0 16px 0 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr2 .col-following-otr .col-following-inr .art-img-otr .art-img-inr .art-img {
    width: 120px;
    border-radius: 16px
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr {
        overflow-x: scroll
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr::-webkit-scrollbar {
    width: 100%;
    height: .1px;
    background-color: #eee
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr::-webkit-scrollbar-thumb {
    background-color: #acacac;
    border-radius: 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr:not(:last-child) {
    margin: 0 0 24px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 32px
}

@media(max-width: 991px) {
    .single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr {
        width: 992px
    }
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr {
    display: flex;
    align-items: center
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .img-inr {
    margin: 0 24px 0 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .img-inr .avatar {
    width: 105px;
    border-radius: 100%
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .content .name {
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .content .follow-text {
    color: #b7b7b7;
    margin: 4px 0 8px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .content .action {
    display: flex
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .content .action .btn-unfolow {
    padding: 6px 16px;
    border-radius: 12px;
    background-color: #019dea;
    color: #fff;
    border: 1px solid transparent;
    transition: .2s
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .img-otr .content .action .btn-unfolow:hover {
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .art-img-otr {
    display: flex;
    align-items: center
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .art-img-otr .art-img-inr:not(:last-child) {
    margin: 0 16px 0 0
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .tab-content .row-custom-inr3 .col-following-otr .col-following-inr .art-img-otr .art-img-inr .art-img {
    width: 120px;
    border-radius: 16px
}

.single-creator-main .container-fluid .row-custom-otr .col-art-otr .col-art-inr .row-custom-main .active {
    display: block;
    opacity: 1
}

.activity-main {
    margin: 128px 0
}

.activity-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.activity-main .container-fluid .wrapper .heading {
    color: #fff
}

@media(max-width: 991px) {
    .activity-main .container-fluid .row-custom {
        flex-direction: column-reverse
    }
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 28px
}

@media(max-width: 575px) {
    .activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width: 420px) {
    .activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity {
        padding: 24px
    }
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity:not(:last-child) {
    margin: 0 0 24px
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .img-otr {
    width: 120px;
    height: 120px;
    margin: 0 24px 0 0
}

@media(max-width: 575px) {
    .activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .img-otr {
        margin: 0 0 24px;
        width: 100%;
        height: auto
    }
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .img-otr .img-art {
    border-radius: 8px;
    height: 100%
}

@media(max-width: 575px) {
    .activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .img-otr .img-art {
        width: 100%;
        height: auto;
        border-radius: 16px
    }
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .text-otr .name {
    color: #fff;
    display: inline-block
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .text-otr .desc {
    color: #b7b7b7;
    margin: 6px 0
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .text-otr .desc .primary {
    display: inline;
    color: #019dea
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .activity .text-otr .time {
    color: #b7b7b7
}

.activity-main .container-fluid .row-custom .col-activity-otr .col-activity-inr .btn-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr {
    padding: 0 0 0 48px;
    position: -webkit-sticky;
    position: sticky;
    top: 0
}

@media(max-width: 991px) {
    .activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr {
        padding: 0 0 72px
    }
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .heading {
    color: #fff
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0 32px
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .filter .filter-btn {
    margin-top: 24px
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .filter .filter-btn:not(:last-child) {
    margin-right: 24px
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .filter .filter-btn .button {
    padding: 6px 16px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff;
    transition: .2s
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .filter .filter-active {
    background-color: #019dea !important
}

.activity-main .container-fluid .row-custom .col-filter-otr .col-filter-inr .clear-filter {
    color: #019dea;
    cursor: pointer
}

.contact-main {
    margin: 128px 0
}

.contact-main .container-fluid .row-contact {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .heading {
    color: #fff
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .desc {
    color: #b7b7b7;
    margin: 16px 0 36px
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main {
    margin: 0
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main {
    display: flex;
    align-items: center
}

@media(max-width: 575px) {
    .contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main {
        flex-direction: column;
        align-items: flex-start
    }
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main .input-otr {
    width: 50%
}

@media(max-width: 575px) {
    .contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main .input-otr {
        width: 100%
    }
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main .input-otr:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main .input-otr:not(:last-child) {
        margin: 0 0 30px
    }
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-main .input-otr .input {
    width: 100%
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .input-otr .textarea {
    height: 120px;
    padding: 12px 24px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main {
    display: flex;
    align-items: center;
    margin: 30px 0
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select:not(:last-child) {
    margin-right: 24px
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-styled {
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 12px 40px 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: 28px;
    font-family: montserrat-bold
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-styled:after {
    content: "";
    width: 16px;
    height: 14px;
    position: absolute;
    background-image: url(../fonts/arrow-drop-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 18px;
    right: 24px
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-styled:active:after,
.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-styled.active:after {
    top: 18px;
    border-color: transparent transparent #fff transparent
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-options,
#slect-main .select .select-options {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #101920;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: none
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-options li {
    font-size: 16px;
    line-height: 28px;
    font-family: montserrat-bold;
    color: #fff;
    border-radius: 12px;
    padding: 0 24px;
    transition: .3s
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-options li:not(:last-child),
#slect-main .select .select-options li:not(:last-child) {
    margin: 0 0 8px
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-options li:hover,
#slect-main .select .select-options li:hover {
    color: #019dea;
    background: 0 0;
    border-radius: 0
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .slect-main .select .select-options li[rel=hide],
#slect-main .select .select-options li[rel=hide] {
    display: none
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .action-otr {
    width: 50%;
    margin: 30px 0 0
}

@media(max-width: 575px) {
    .contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .action-otr {
        width: 100%
    }
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .action-otr .button {
    padding: 13px 24px;
    border-radius: 12px;
    background-color: #019dea;
    color: #fff;
    border: 1px solid transparent;
    transition: .2s;
    width: 100%
}

.contact-main .container-fluid .row-contact .col-form-otr .col-form-inr .form-main .action-otr .button:hover {
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 32px 40px 40px
}

@media(max-width: 991px) {
    .contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr {
        margin: 72px 0 0
    }
}

@media(max-width: 420px) {
    .contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr {
        padding: 24px
    }
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .heading {
    color: #fff
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr {
    margin: 36px 0 40px
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main {
    display: flex;
    align-items: center;
    margin: 0 0 24px
}

@media(min-width: 992px) and (max-width:1199px) {
    .contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width: 420px) {
    .contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main {
        flex-direction: column;
        align-items: flex-start
    }
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr:not(:last-child) {
    margin-right: 40px
}

@media(min-width: 992px) and (max-width:1199px) {
    .contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr:not(:last-child) {
        margin: 0 0 24px
    }
}

@media(max-width: 420px) {
    .contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr:not(:last-child) {
        margin: 0 0 24px
    }
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr .icon-otr {
    display: flex;
    align-items: center;
    margin: 0 0 8px
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr .icon-otr .icon-inr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    margin: 0 16px 0 0
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr .icon-otr .icon-inr .icon {
    font-size: 24px;
    color: #019dea
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .email-otr .icon-otr .email-text {
    color: #fff
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-main .linkk {
    color: #b7b7b7
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-otr:not(:last-child) {
    margin-right: 40px
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-otr .icon-otr {
    display: flex;
    align-items: center;
    margin: 0 0 8px
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-otr .icon-otr .icon-inr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    margin: 0 16px 0 0
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-otr .icon-otr .icon-inr .icon {
    font-size: 24px;
    color: #019dea
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-otr .icon-otr .email-text {
    color: #fff
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .contact-icon-otr .email-otr .linkk {
    color: #b7b7b7
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .social-icon .heading {
    color: #fff;
    margin: 0 0 8px
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .social-icon .icon-ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .social-icon .icon-ul .icon-li {
    margin-top: 16
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .social-icon .icon-ul .icon-li:not(:last-child) {
    margin-right: 16px
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .social-icon .icon-ul .icon-li .icon-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    transition: .3s
}

.contact-main .container-fluid .row-contact .col-contact-otr .col-contact-inr .social-icon .icon-ul .icon-li .icon-a:hover {
    background-color: #019dea
}

.login-main {
    margin: 128px 0
}

.login-main .container-fluid .row-login {
    display: flex;
    align-items: center;
    justify-content: center
}

.login-main .container-fluid .row-login .col-login-otr {
    padding: 0 200px
}

@media(max-width: 1400px) {
    .login-main .container-fluid .row-login .col-login-otr {
        padding: 0 48px
    }
}

@media(max-width: 991px) {
    .login-main .container-fluid .row-login .col-login-otr {
        padding: 0 15px
    }
}

.login-main .container-fluid .row-login .col-login-otr .wrapper {
    text-align: center;
    margin: 0 0 72px
}

.login-main .container-fluid .row-login .col-login-otr .wrapper .heading {
    color: #fff
}

.login-main .container-fluid .row-login .col-login-otr .wrapper .desc {
    color: #b7b7b7;
    margin: 16px 0 0
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 48px 64px 56px
}

@media(max-width: 575px) {
    .login-main .container-fluid .row-login .col-login-otr .col-login-inr {
        padding: 24px
    }
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content {
    text-align: center
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .text {
    color: #fff
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main {
    display: flex;
    align-items: center;
    margin: 32px 0
}

@media(max-width: 575px) {
    .login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main {
        flex-direction: column
    }
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .05);
    padding: 9px;
    border-radius: 16px;
    width: 100%
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main .btn:focus {
    box-shadow: none
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main .btn .icon {
    margin: 0 12px 0 0;
    color: #019dea;
    font-size: 24px
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main .btn .text {
    color: #fff;
    font-family: poppins-medium
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main .btn:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .btn-main .btn:not(:last-child) {
        margin: 0 0 30px
    }
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .input-otr:not(:last-child) {
    margin: 32px 0 30px
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .input-otr .input {
    width: 100%
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0
}

@media(max-width: 420px) {
    .login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main {
        flex-direction: column
    }
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check {
    display: flex;
    justify-content: space-between
}

@media(max-width: 420px) {
    .login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check {
        margin: 0 0 16px
    }
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label {
    display: flex;
    align-items: center;
    margin: 0
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .check-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 12px;
    background-color: #fff;
    position: relative
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .check-inner:hover {
    cursor: pointer
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .check-inner .input-check {
    opacity: 0;
    position: absolute
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .check-inner .input-check:hover {
    cursor: pointer
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .check-inner .input-check:checked+.fill-current {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .check-inner .fill-current {
    display: none;
    width: 24px;
    height: 24px;
    pointer-events: none;
    position: relative;
    left: -1px;
    top: -1px
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .select-none {
    color: #fff;
    line-height: 28px
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .check label .select-none .terms {
    display: inline
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .check-main .forget {
    color: #019dea
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .action {
    display: flex;
    align-items: center;
    text-align: center
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .action .button {
    padding: 13px 24px;
    border-radius: 12px;
    width: 100%;
    background-color: #019dea;
    color: #fff;
    border: 1px solid transparent;
    transition: .2s
}

.login-main .container-fluid .row-login .col-login-otr .col-login-inr .content .form-main .action .button:hover {
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff
}

.signup-main {
    margin: 128px 0
}

.signup-main .container-fluid .row-signup {
    display: flex;
    align-items: center;
    justify-content: center
}

.signup-main .container-fluid .row-signup .col-signup-otr {
    padding: 0 150px
}

@media(max-width: 1400px) {
    .signup-main .container-fluid .row-signup .col-signup-otr {
        padding: 0 48px
    }
}

@media(max-width: 991px) {
    .signup-main .container-fluid .row-signup .col-signup-otr {
        padding: 0 15px
    }
}

.signup-main .container-fluid .row-signup .col-signup-otr .wrapper {
    text-align: center;
    margin: 0 0 72px
}

.signup-main .container-fluid .row-signup .col-signup-otr .wrapper .heading {
    color: #fff
}

.signup-main .container-fluid .row-signup .col-signup-otr .wrapper .desc {
    color: #b7b7b7;
    margin: 16px 0 0
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 48px 64px
}

@media(max-width: 575px) {
    .signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr {
        padding: 24px
    }
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content {
    text-align: center
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .text {
    color: #fff
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main {
    display: flex;
    align-items: center;
    margin: 32px 0
}

@media(max-width: 575px) {
    .signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main {
        flex-direction: column
    }
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .05);
    padding: 9px;
    border-radius: 16px;
    width: 100%
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main .btn:focus {
    box-shadow: none
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main .btn .icon {
    margin: 0 12px 0 0;
    color: #019dea;
    font-size: 24px
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main .btn .text {
    color: #fff;
    font-family: poppins-medium
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main .btn:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .btn-main .btn:not(:last-child) {
        margin: 0 0 30px
    }
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .input-otr:not(:last-child) {
    margin: 30px 0
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .input-otr:first-child {
    margin-top: 32px
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .input-otr .input {
    width: 100%
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main {
    margin: 30px 0
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check {
    display: flex;
    justify-content: space-between
}

@media(max-width: 420px) {
    .signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check {
        margin: 0 0 16px
    }
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label {
    display: flex;
    align-items: center;
    margin: 0
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .check-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 12px;
    background-color: #fff;
    position: relative
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .check-inner:hover {
    cursor: pointer
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .check-inner .input-check {
    opacity: 0;
    position: absolute
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .check-inner .input-check:hover {
    cursor: pointer
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .check-inner .input-check:checked+.fill-current {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .check-inner .fill-current {
    display: none;
    width: 24px;
    height: 24px;
    pointer-events: none;
    position: relative;
    left: -1px;
    top: -1px
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .select-none {
    color: #fff;
    line-height: 28px
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .check-main .check label .select-none .linkk {
    display: inline;
    color: #019dea
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .action {
    display: flex;
    align-items: center;
    text-align: center
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .action .button {
    padding: 13px 24px;
    border-radius: 12px;
    width: 100%;
    background-color: #019dea;
    color: #fff;
    border: 1px solid transparent;
    transition: .2s
}

.signup-main .container-fluid .row-signup .col-signup-otr .col-signup-inr .content .form-main .action .button:hover {
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff
}

.connect-wallet-main {
    margin: 128px 0
}

.connect-wallet-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.connect-wallet-main .container-fluid .wrapper .heading {
    color: #fff
}

.connect-wallet-main .container-fluid .row-custom {
    display: flex;
    align-items: center
}

@media(max-width: 991px) {
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr {
        padding-bottom: 72px
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr {
        width: 80%
    }
}

.connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .col-wallet-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 32px 24px
}

.connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .col-wallet-inr .icon-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    margin: 0 0 20px;
    background-color: rgba(255, 255, 255, .05)
}

.connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .col-wallet-inr .icon-otr .icon {
    width: 70px
}

.connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .col-wallet-inr .heading {
    color: #fff
}

.connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-1,
.connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-2 {
    margin: 0 0 24px
}

@media(min-width: 992px) and (max-width:1199px) {
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-1,
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-2,
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-3 {
        margin: 0 0 24px
    }
}

@media(max-width: 991px) {
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-1,
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-2,
    .connect-wallet-main .container-fluid .row-custom .col-box-otr .col-box-inr .row-custom-inr .col-wallet-otr .box-3 {
        margin: 0 0 24px
    }
}

.connect-wallet-main .container-fluid .row-custom .col-art-otr .col-art-inr {
    padding: 0 0 0 110px
}

@media(max-width: 1400px) {
    .connect-wallet-main .container-fluid .row-custom .col-art-otr .col-art-inr {
        padding: 0
    }
}

.connect-wallet-main .container-fluid .row-custom .col-art-otr .col-art-inr .art-img {
    width: 100%;
    height: 100%;
    border-radius: 24px
}

.upload-main {
    margin: 128px 0
}

.upload-main .container-fluid .row-custom {
    display: flex;
    align-items: center;
    justify-content: center
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .wrapper {
    text-align: center
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .wrapper .heading {
    color: #fff;
    margin: 0 0 16px
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .wrapper .desc {
    color: #b7b7b7
}

@media(max-width: 767px) {
    .upload-main .container-fluid .row-custom .col-otr .col-inr .wrapper .desc br {
        display: none
    }
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .wrapper .desc .linkk {
    display: inline;
    color: #019dea
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .create-main {
    display: flex;
    align-items: center;
    margin: 72px 0
}

@media(max-width: 767px) {
    .upload-main .container-fluid .row-custom .col-otr .col-inr .create-main {
        flex-direction: column
    }
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create {
    width: 50%;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px 36px
}

@media(max-width: 767px) {
    .upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create {
        width: 70%;
        padding: 24px
    }
}

@media(max-width: 420px) {
    .upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create {
        width: 100%
    }
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 767px) {
    .upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create:not(:last-child) {
        margin: 0 0 24px
    }
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create .img-otr .img {
    width: 100%;
    border-radius: 16px;
    margin: 0 0 24px
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create .action {
    display: flex;
    text-align: center
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .create-main .create .action .btn-single {
    width: 100%
}

.upload-main .container-fluid .row-custom .col-otr .col-inr .text {
    color: #b7b7b7;
    text-align: center
}

.error-main {
    margin: 128px 0
}

.error-main .container-fluid .row-custom {
    display: flex;
    align-items: center;
    justify-content: center
}

.error-main .container-fluid .row-custom .col-otr .col-inr {
    padding: 0 72px
}

@media(max-width: 767px) {
    .error-main .container-fluid .row-custom .col-otr .col-inr {
        padding: 0
    }
}

.error-main .container-fluid .row-custom .col-otr .col-inr .img-otr .img {
    width: 100%
}

.error-main .container-fluid .row-custom .col-otr .col-inr .content {
    text-align: center;
    margin: 72px 0 0
}

.error-main .container-fluid .row-custom .col-otr .col-inr .content .heading {
    color: #fff
}

.error-main .container-fluid .row-custom .col-otr .col-inr .content .desc {
    color: #b7b7b7;
    margin: 16px 0 32px
}

@media(max-width: 1400px) {
    .error-main .container-fluid .row-custom .col-otr .col-inr .content .desc br {
        display: none
    }
}

.error-main .container-fluid .row-custom .col-otr .col-inr .content .action {
    display: flex;
    align-items: center;
    justify-content: center
}

.faq-main {
    margin: 128px 0
}

.faq-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.faq-main .container-fluid .wrapper .tab-otr {
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    .faq-main .container-fluid .wrapper .tab-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

.faq-main .container-fluid .wrapper .tab-otr .heading {
    color: #fff;
    margin: 0 24px 0 0
}

@media(max-width: 767px) {
    .faq-main .container-fluid .wrapper .tab-otr .heading {
        margin: 0 0 24px
    }
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr {
    position: relative
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border: 2px solid #019dea;
    border-radius: 12px;
    padding: 6px 16px;
    cursor: pointer
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .btn-drop-inr {
    color: #fff
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .arrow-down {
    font-size: 18px;
    color: #fff;
    margin: 0 0 0 8px
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .change-text {
    color: #fff
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul {
    position: absolute;
    left: 0;
    top: 80px;
    width: 250px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link {
    cursor: pointer
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link:not(:last-child) {
    margin-bottom: 12px
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link .tab-p {
    color: #fff
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .active .tab-p {
    color: #019dea
}

.faq-main .container-fluid .wrapper .tab-otr .tab-inr .tab-drop-open {
    opacity: 1;
    visibility: visible;
    top: 50px
}

.faq-main .container-fluid .row-custom-main .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(0);
    -webkit-animation: fadeIn .3s ease 1 forwards;
    animation: fadeIn .3s ease 1 forwards
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item {
    border-radius: 16px;
    border: 2px solid #019dea;
    background-color: rgba(255, 255, 255, .05);
    overflow: hidden
}

@media(max-width: 991px) {
    .faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item {
        margin-bottom: 24px
    }
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item:not(:last-child) {
    margin: 0 0 24px
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item .accordion-header .accordion-button {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    color: #fff;
    padding: 12px 24px;
    border: none;
    box-shadow: none
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item .accordion-header .accordion-button:focus {
    border-radius: 16px 16px 0 0;
    border: none;
    box-shadow: none
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item .accordion-header .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url(../fonts/arrow-drop-down.svg);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item .accordion-collapse {
    transition: .5s
}

.faq-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-otr .col-inr .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 16px 24px 20px;
    color: #b7b7b7
}

.faq-main .container-fluid .row-custom-main .active {
    display: block;
    opacity: 1
}

.faq-main .container-fluid .row-custom-main .col-btn-otr .col-btn-inr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

@media(max-width: 575px) {
    .faq-main .container-fluid .row-custom-main .col-btn-otr .col-btn-inr {
        flex-direction: column;
        align-items: flex-start
    }
}

.faq-main .container-fluid .row-custom-main .col-btn-otr .col-btn-inr .desc {
    color: #fff;
    margin: 0 18px 0 0
}

@media(max-width: 575px) {
    .faq-main .container-fluid .row-custom-main .col-btn-otr .col-btn-inr .desc {
        margin: 0 0 24px
    }
}

.create-single-main {
    margin: 128px 0;
    overflow: hidden
}

.create-single-main .container-fluid .single-main .wrapper {
    margin: 0 0 72px
}

.create-single-main .container-fluid .single-main .wrapper .heading {
    color: #fff
}

@media(min-width: 992px) and (max-width:1199px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr {
        width: 100%
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr {
    padding: 0 72px 0 0
}

@media(max-width: 1300px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr {
        padding: 0
    }
}

@media(max-width: 1199px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr {
        padding: 0 0 72px
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .head {
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .head-2 {
    color: #fff;
    margin: 0 0 24px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .heading-input {
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr {
    margin: 24px 0
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr .input {
    width: 100%
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr {
    margin: 24px 0
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr .textarea {
    width: 100%;
    height: 52px;
    padding: 12px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main {
    margin: 24px 0 32px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select:not(:last-child) {
    margin-right: 24px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled {
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 12px 40px 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: 28px;
    font-family: montserrat-bold
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled:after {
    content: "";
    width: 16px;
    height: 14px;
    position: absolute;
    background-image: url(../fonts/arrow-drop-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 18px;
    right: 24px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled:active:after,
.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled.active:after {
    top: 18px;
    border-color: transparent transparent #fff transparent
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #222f45;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: none
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li {
    font-size: 16px;
    line-height: 28px;
    font-family: montserrat-bold;
    color: #fff;
    border-radius: 12px;
    padding: 0 24px;
    transition: .3s
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li:not(:last-child) {
    margin: 0 0 8px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li:hover {
    color: #019dea;
    background: 0 0;
    border-radius: 0
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li[rel=hide] {
    display: none
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 24px 36px 28px;
    margin: 0 0 32px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr {
        flex-direction: column;
        align-items: flex-start
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr:not(:last-child) {
    margin-bottom: 16px
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .content {
        margin: 0 0 16px
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .content .heading-sale {
    color: #fff;
    margin-bottom: 6px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .content .desc-sale {
    color: #b7b7b7
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-btn-otr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 30px;
    border-radius: 26px;
    padding: 4px 6px;
    background-color: #fff;
    cursor: pointer;
    transition: .3s
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-btn-otr .togle-btn {
    width: 21px;
    height: 21px;
    border-radius: 100%;
    background-color: #019dea;
    transition: .3s
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-open {
    justify-content: flex-end;
    background-color: #019dea
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-open .togle-btn {
    background-color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .heading-choose {
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .desc-choose {
    color: #b7b7b7;
    margin: 6px 0 30px
}

@media(max-width: 991px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr {
        width: 50%
    }
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr {
        width: 100%
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr {
    background-color: rgba(255, 255, 255, .05);
    padding: 28px 24px 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: .3s;
    border: 2px solid transparent
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr:hover {
    background-color: #222f45
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer;
    border: 2px solid #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr-1 .icon {
    font-size: 24px;
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr {
    margin: 0 0 12px
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr .img-profile {
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 100%
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .heading {
    color: #fff
}

@media(max-width: 1199px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .heading br {
        display: none
    }
}

@media(max-width: 991px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-1,
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-2 {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-1,
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-2,
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-3 {
        margin: 0 0 24px
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .active-border {
    border: 2px solid #019dea
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr {
    display: flex;
    align-items: center;
    margin: 48px 0 0;
    text-align: center
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr {
        flex-direction: column
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create {
    width: 50%;
    cursor: pointer
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create {
        width: 100%
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .single-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create:not(:last-child) {
        margin: 0 0 24px
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    .create-single-main .container-fluid .single-main .row-custom .col-art-otr {
        width: 50%
    }
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .wrapper-inr {
    margin: 0 0 28px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .wrapper-inr .heading {
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr {
    display: flex
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1:hover .hover {
    opacity: 1;
    visibility: visible
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1 .hover {
    position: absolute;
    text-align: center;
    width: 320px;
    background-color: #222f45;
    border-radius: 8px 8px 8px 0;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1 .hover .box {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #222f45;
    bottom: -12px;
    left: 0;
    border-radius: 0 0 20px 0
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2:hover .hover {
    opacity: 1;
    visibility: visible
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 .hover {
    position: absolute;
    text-align: center;
    width: 320px;
    background-color: #222f45;
    border-radius: 8px 8px 8px 0;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 .hover .box {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #222f45;
    bottom: -12px;
    left: 0;
    border-radius: 0 0 20px 0
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 320px;
    background-color: #222f45;
    border-radius: 8px 8px 8px 0;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 .hover .box {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #222f45;
    bottom: -12px;
    left: 0;
    border-radius: 0 0 20px 0
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .avatar-main .list-icon-otr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 20px;
    cursor: pointer
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr {
    position: relative
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .cover-img {
    width: 100%;
    border-radius: 16px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    width: 124px;
    height: 40px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .time-otr .timer {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .art-name:hover {
    color: #019dea
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .bid-main .bid {
    color: #b7b7b7
}

.create-single-main .container-fluid .single-main .row-custom .col-art-otr .col-art-inr .bid-main .Price {
    color: #fff
}

.create-single-main .container-fluid .multiple-main .wrapper {
    margin: 0 0 72px
}

.create-single-main .container-fluid .multiple-main .wrapper .heading {
    color: #fff
}

@media(min-width: 992px) and (max-width:1199px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr {
        width: 100%
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr {
    padding: 0 72px 0 0
}

@media(max-width: 1300px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr {
        padding: 0
    }
}

@media(max-width: 1199px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr {
        padding: 0 0 72px
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .head {
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .head-2 {
    color: #fff;
    margin: 0 0 24px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .heading-input {
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr {
    margin: 24px 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr .input {
    width: 100%
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr {
    margin: 24px 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .input-otr .textarea {
    width: 100%;
    height: 52px;
    padding: 12px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main {
    margin: 24px 0 32px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select:not(:last-child) {
    margin-right: 24px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled {
    background-color: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 12px 40px 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: 28px;
    font-family: montserrat-bold
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled:after {
    content: "";
    width: 16px;
    height: 14px;
    position: absolute;
    background-image: url(../fonts/arrow-drop-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    top: 18px;
    right: 24px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled:active:after,
.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-styled.active:after {
    top: 18px;
    border-color: transparent transparent #fff transparent
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #222f45;
    border-radius: 12px;
    padding: 16px 0;
    box-shadow: none
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li {
    font-size: 16px;
    line-height: 28px;
    font-family: montserrat-bold;
    color: #fff;
    border-radius: 12px;
    padding: 0 24px;
    transition: .3s
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li:not(:last-child) {
    margin: 0 0 8px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li:hover {
    color: #019dea;
    background: 0 0;
    border-radius: 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .form-main .select-main .select .select-options li[rel=hide] {
    display: none
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 24px 36px 28px;
    margin: 0 0 32px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr {
        flex-direction: column;
        align-items: flex-start
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr:not(:last-child) {
    margin-bottom: 16px
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .content {
        margin: 0 0 16px
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .content .heading-sale {
    color: #fff;
    margin-bottom: 6px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .content .desc-sale {
    color: #b7b7b7
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-btn-otr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 30px;
    border-radius: 26px;
    padding: 4px 6px;
    background-color: #fff;
    cursor: pointer;
    transition: .3s
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-btn-otr .togle-btn {
    width: 21px;
    height: 21px;
    border-radius: 100%;
    background-color: #019dea;
    transition: .3s
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-open {
    justify-content: flex-end;
    background-color: #019dea
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .sale-otr .sale-inr .togle-open .togle-btn {
    background-color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .heading-choose {
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .desc-choose {
    color: #b7b7b7;
    margin: 6px 0 30px
}

@media(max-width: 991px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr {
        width: 50%
    }
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr {
        width: 100%
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr {
    background-color: rgba(255, 255, 255, .05);
    padding: 28px 24px 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: .3s;
    border: 2px solid transparent
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr:hover {
    background-color: #222f45
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer;
    border: 2px solid #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr-1 .icon {
    font-size: 24px;
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr {
    margin: 0 0 12px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .img-otr .img-profile {
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 100%
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .heading {
    color: #fff
}

@media(max-width: 1199px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .col-box-inr .heading br {
        display: none
    }
}

@media(max-width: 991px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-1,
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-2 {
        margin: 0 0 24px
    }
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-1,
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-2,
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .boxx-3 {
        margin: 0 0 24px
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-box-otr .active-border {
    border: 2px solid #019dea
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr {
    display: flex;
    align-items: center;
    margin: 48px 0 0;
    text-align: center
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr {
        flex-direction: column
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create {
    width: 50%;
    cursor: pointer
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create {
        width: 100%
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create:not(:last-child) {
    margin-right: 24px
}

@media(max-width: 575px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-single-otr .col-single-inr .row-custom-inr .col-btn-otr .col-btn-inr .btn-create:not(:last-child) {
        margin: 0 0 24px
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    .create-single-main .container-fluid .multiple-main .row-custom .col-art-otr {
        width: 50%
    }
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .wrapper-inr {
    margin: 0 0 28px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .wrapper-inr .heading {
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 28px 24px 32px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr {
    display: flex
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr {
    position: relative;
    transition: .2s
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr .img-inr .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr .check-icon-otr {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #019dea;
    border: 1px solid #fff;
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-otr .check-icon-otr .check-icon {
    position: relative;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1:hover .hover {
    opacity: 1;
    visibility: visible
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1 .hover {
    position: absolute;
    text-align: center;
    width: 320px;
    background-color: #222f45;
    border-radius: 8px 8px 8px 0;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-1 .hover .box {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #222f45;
    bottom: -12px;
    left: 0;
    border-radius: 0 0 20px 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 {
    margin-left: -20px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2:hover .hover {
    opacity: 1;
    visibility: visible
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 .hover {
    position: absolute;
    text-align: center;
    width: 320px;
    background-color: #222f45;
    border-radius: 8px 8px 8px 0;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-2 .hover .box {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #222f45;
    bottom: -12px;
    left: 0;
    border-radius: 0 0 20px 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 {
    margin-left: -20px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3:hover {
    z-index: 1;
    transform: translateY(-3px)
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3:hover .hover {
    opacity: 1;
    visibility: visible
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 .hover {
    position: absolute;
    text-align: center;
    width: 320px;
    background-color: #222f45;
    border-radius: 8px 8px 8px 0;
    left: 0;
    top: -60px;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 .hover .text {
    color: #fff;
    padding: 6px 16px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .profile-inr .img-3 .hover .box {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #222f45;
    bottom: -12px;
    left: 0;
    border-radius: 0 0 20px 0
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .avatar-main .list-icon-otr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 20px;
    cursor: pointer
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr {
    position: relative
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .cover-img {
    width: 100%;
    border-radius: 16px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .time-otr {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 10;
    border-radius: 14px;
    padding: 6px 16px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .time-otr .timer {
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .heart-icon-otr2 {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
    top: 24px;
    right: 24px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .heart-icon-otr2 .heart-icon2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .cover-img-otr .heart-icon-otr2 .ri-heart-fill {
    color: red
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .art-name {
    display: inline-flex;
    color: #fff;
    margin: 18px 0;
    transition: .3s
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .art-name:hover {
    color: #019dea
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .bid-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .05);
    padding: 16px 20px;
    border-radius: 8px
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .bid-main .bid {
    color: #b7b7b7
}

.create-single-main .container-fluid .multiple-main .row-custom .col-art-otr .col-art-inr .bid-main .Price {
    color: #fff
}

.upload-area {
    width: 100%;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    text-align: center;
    padding: 90px 0 80px;
    border: 2px dashed #019dea;
    margin: 24px 0 36px
}

@media(max-width: 420px) {
    .upload-area {
        padding: 15px
    }
}

.upload-area .upload-area--open {
    -webkit-animation: slidDown 500ms ease-in-out;
    animation: slidDown 500ms ease-in-out
}

.upload-area .upload-area__header .upload-area__paragraph .upload-area__tooltip {
    position: relative;
    cursor: pointer;
    transition: color 300ms ease-in-out
}

.upload-area .upload-area__header .upload-area__paragraph .upload-area__tooltip:hover {
    color: var(--clr-blue)
}

.upload-area .upload-area__header .upload-area__paragraph .upload-area__tooltip:hover .upload-area__tooltip-data {
    opacity: 1;
    visibility: visible
}

.upload-area .upload-area__header .upload-area__paragraph .upload-area__tooltip .upload-area__tooltip-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -125%);
    opacity: 0;
    visibility: hidden;
    transition: none 300ms ease-in-out
}

.upload-area .upload-area__drop-zoon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer
}

.upload-area .upload-area__drop-zoon .drop-zoon__icon {
    display: none;
    font-size: 3.75rem;
    color: #019dea
}

.upload-area .upload-area__drop-zoon .desc {
    color: #b7b7b7;
    margin: 0 0 24px !important
}

@media(max-width: 420px) {
    .upload-area .upload-area__drop-zoon .desc {
        margin: 12px 0 8px
    }
}

.upload-area .upload-area__drop-zoon .drop-zoon__paragraph {
    margin: 0;
    transition: opacity 300ms ease-in-out
}

.upload-area .upload-area__drop-zoon .drop-zoon__loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: var(--clr-light-blue);
    z-index: 10
}

.upload-area .upload-area__drop-zoon .drop-zoon__preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 232px;
    -o-object-fit: contain;
    object-fit: contain;
    display: none;
    z-index: 1000
}

.upload-area .upload-area__drop-zoon .drop-zoon__file-input {
    display: none
}

.upload-area .upload-area__file-details {
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: left
}

.upload-area .upload-area__file-details .file-details__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-light-gray)
}

.upload-area .upload-area__file-details .uploaded-file {
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: none 500ms ease-in-out;
    transition-property: visibility, opacity
}

.upload-area .upload-area__file-details .uploaded-file .uploaded-file__icon-container {
    position: relative
}

.upload-area .upload-area__file-details .uploaded-file .uploaded-file__icon-container .uploaded-file__icon {
    font-size: 3.4375rem;
    color: var(--clr-blue)
}

.upload-area .upload-area__file-details .uploaded-file .uploaded-file__icon-container .uploaded-file__icon-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--clr-white)
}

.upload-area .upload-area__file-details .uploaded-file--open {
    visibility: visible;
    opacity: 1
}

@-webkit-keyframes slidDown {
    from {
        height: 28.125rem
    }
    to {
        height: 35rem
    }
}

@keyframes slidDown {
    from {
        height: 28.125rem
    }
    to {
        height: 35rem
    }
}

.drop-zoon__paragraph:hover {
    transform: translateY(0) !important
}

.upload-active {
    opacity: 0 !important
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
    opacity: .7
}

.drop-zoon:hover .drop-zoon__preview-image {
    opacity: 1
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
    opacity: .7
}

.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
    opacity: 0
}

.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .desc {
    opacity: 0;
    margin: 52px 0 30px
}

.file-details--open {
    height: auto;
    visibility: visible;
    opacity: 1
}

.uploaded-file__info {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between
}

.uploaded-file__info::before,
.uploaded-file__info::after {
    content: "";
    position: absolute;
    width: 0;
    background-color: #ebf2ff
}

.uploaded-file__info::before {
    width: 100%
}

.uploaded-file__info::after {
    width: 100%;
    background-color: var(--clr-blue)
}

.uploaded-file__info--active::after {
    -webkit-animation: progressMove 800ms ease-in-out;
    animation: progressMove 800ms ease-in-out;
    -webkit-animation-delay: 300ms;
    animation-delay: 300ms
}

@-webkit-keyframes progressMove {
    from {
        width: 0%;
        background-color: transparent
    }
    to {
        width: 100%;
        background-color: var(--clr-blue)
    }
}

@keyframes progressMove {
    from {
        width: 0%;
        background-color: transparent
    }
    to {
        width: 100%;
        background-color: var(--clr-blue)
    }
}

.uploaded-file__name {
    width: 100%;
    display: inline-block;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.uploaded-file__counter {
    font-size: 1rem;
    color: var(--clr-light-gray)
}

.upload-area .upload-area__drop-zoon .drop-zoon__preview-image {
    height: 100%
}

.blog-main-inr {
    margin: 128px 0
}

@media(min-width: 992px) and (max-width:1199px) {
    .blog-main-inr .container-fluid .row-custom .col-otr {
        width: 50%
    }
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr {
    background-color: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 36px 36px 32px
}

@media(max-width: 575px) {
    .blog-main-inr .container-fluid .row-custom .col-otr .col-inr {
        padding: 28px 28px 24px
    }
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr .img-otr .blog-img {
    width: 100%;
    border-radius: 16px
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr .content-otr .date-otr {
    color: #019dea;
    margin: 16px 0 8px
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr .content-otr .date-otr .date-inr {
    color: #878787
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr .content-otr .heading {
    display: inline;
    color: #fff;
    transition: .3s
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr .content-otr .heading:hover {
    color: #019dea
}

.blog-main-inr .container-fluid .row-custom .col-otr .col-inr .content-otr .desc {
    color: #b7b7b7;
    margin: 8px 0 0
}

.blog-main-inr .container-fluid .row-custom .col-otr .box-1,
.blog-main-inr .container-fluid .row-custom .col-otr .box-2,
.blog-main-inr .container-fluid .row-custom .col-otr .box-3,
.blog-main-inr .container-fluid .row-custom .col-otr .box-4,
.blog-main-inr .container-fluid .row-custom .col-otr .box-5,
.blog-main-inr .container-fluid .row-custom .col-otr .box-6,
.blog-main-inr .container-fluid .row-custom .col-otr .box-7,
.blog-main-inr .container-fluid .row-custom .col-otr .box-8,
.blog-main-inr .container-fluid .row-custom .col-otr .box-9 {
    margin: 0 0 24px
}

@media(max-width: 767px) {
    .blog-main-inr .container-fluid .row-custom .col-otr .box-1,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-2,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-3,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-4,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-5,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-6,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-7,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-8,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-9,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-10,
    .blog-main-inr .container-fluid .row-custom .col-otr .box-11 {
        margin: 0 0 24px
    }
}

.blog-main-inr .container-fluid .row-custom .col-btn-otr .col-btn-inr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0
}

.blog-detail-main {
    margin: 128px 0
}

.blog-detail-main .container-fluid .wrapper {
    margin: 0 0 72px
}

.blog-detail-main .container-fluid .wrapper .heading {
    color: #fff
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 48px 48px 36px
}

@media(max-width: 991px) {
    .blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr {
        padding: 28px 28px 24px
    }
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .img-otr {
    margin: 0 0 36px
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .img-otr .art-img {
    width: 100%;
    border-radius: 24px
}

@media(max-width: 991px) {
    .blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .img-otr .art-img {
        border-radius: 16px
    }
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .head-1,
.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .head-2 {
    color: #fff;
    margin-bottom: 16px
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .desc {
    color: #b7b7b7;
    margin-bottom: 20px
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .desc-1 {
    margin-bottom: 16px
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .desc-2,
.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .desc-7 {
    margin-bottom: 24px
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .desc-6 {
    margin-bottom: 0
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .content-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 36px 0
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .content-otr .desc-inr {
    color: #b7b7b7
}

.blog-detail-main .container-fluid .row-custom .col-detail-otr .col-detail-inr .desc-8 {
    margin-bottom: 0
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr {
    padding-left: 72px
}

@media(max-width: 1300px) {
    .blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr {
        padding-left: 48px
    }
}

@media(max-width: 1100px) {
    .blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr {
        padding-left: 0
    }
}

@media(max-width: 991px) {
    .blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr {
        padding-top: 32px
    }
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .category-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 20px 28px 32px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .category-otr .heading {
    color: #fff;
    margin-bottom: 24px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .category-otr .caretory-ul .caretory-li:not(:last-child) {
    margin: 0 0 16px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .category-otr .caretory-ul .caretory-li .caretory-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #019dea
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .category-otr .caretory-ul .caretory-li .caretory-a:hover .name {
    color: #019dea
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .category-otr .caretory-ul .caretory-li .caretory-a .name {
    color: #b7b7b7;
    transition: .3s
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .tabs-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 20px 28px 32px;
    margin: 32px 0
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .tabs-otr .heading {
    color: #fff;
    margin-bottom: 8px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .tabs-otr .tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .tabs-otr .tabs .tabs-btn {
    margin-top: 16px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .tabs-otr .tabs .tabs-btn:not(:last-child) {
    margin-right: 16px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 20px 28px 32px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr .heading {
    color: #fff;
    margin-bottom: 8px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr .icon-ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr .icon-ul .icon-li {
    margin-top: 16
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr .icon-ul .icon-li:not(:last-child) {
    margin-right: 16px
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr .icon-ul .icon-li .icon-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    transition: .3s
}

.blog-detail-main .container-fluid .row-custom .col-sidebar-otr .col-sidebar-inr .share-otr .icon-ul .icon-li .icon-a:hover {
    background-color: #019dea
}

.how-it-work-main {
    /*margin: 48px 0*/
}

.how-it-work-main .container-fluid .wrapper {
    margin: 0 0 18px
}

.how-it-work-main .container-fluid .wrapper .tab-otr {
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    .how-it-work-main .container-fluid .wrapper .tab-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

.how-it-work-main .container-fluid .wrapper .tab-otr .heading {
    color: #fff;
    margin: 0 24px 0 0
}

@media(max-width: 767px) {
    .how-it-work-main .container-fluid .wrapper .tab-otr .heading {
        margin: 0 0 24px
    }
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr {
    position: relative
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop,
.btn-drop {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border: 2px solid #019dea;
    border-radius: 12px;
    padding: 6px 16px;
    cursor: pointer
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .btn-drop-inr,
.btn-drop {
    color: #fff
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .arrow-down {
    font-size: 18px;
    color: #fff;
    margin: 0 0 0 8px
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .change-text,
.btn-drop {
    color: #fff
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul {
    position: absolute;
    left: 0;
    top: 80px;
    width: 200px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link {
    cursor: pointer
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link:not(:last-child) {
    margin-bottom: 12px
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link .tab-p {
    color: #fff
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .active .tab-p {
    color: #019dea
}

.how-it-work-main .container-fluid .wrapper .tab-otr .tab-inr .tab-drop-open {
    opacity: 1;
    visibility: visible;
    top: 50px
}

.how-it-work-main .container-fluid .row-custom-main .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    -webkit-animation: fadeIn .3s ease 1 forwards;
    animation: fadeIn .3s ease 1 forwards
}

.how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .col-work-inr {
    background-color: #101920;
    /* background-color: rgba(255,255,255,.05); */
    border-radius: 16px;
    padding: 28px 32px 24px;
    margin-top: 25px
}

.how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .col-work-inr .icon-otr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #101920;
    /* background-color: rgba(255,255,255,.05) */
}

.how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .col-work-inr .icon-otr .icon {
    font-size: 32px;
    color: #fff
}

.how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .col-work-inr .content .heading {
    color: #fff;
    margin: 16px 0 12px
}

.how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .col-work-inr .content .desc {
    color: #b7b7b7
}

@media(max-width: 991px) {
    .how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .box-1,
    .how-it-work-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-work-otr .box-2 {
        margin: 0 0 24px
    }
}

.how-it-work-main .container-fluid .row-custom-main .active {
    display: block;
    opacity: 1
}

.about-main {
    margin: 128px 0
}

.about-main .container-fluid .call-to-action {
    display: flex;
    position: relative;
    padding: 96px 72px 104px;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    overflow: hidden
}

@media(max-width: 575px) {
    .about-main .container-fluid .call-to-action {
        padding: 48px 28px 56px
    }
}

.about-main .container-fluid .call-to-action .wrapper {
    position: relative;
    z-index: 10
}

.about-main .container-fluid .call-to-action .wrapper .heading {
    color: #fff;
    margin-bottom: 16px
}

@media(max-width: 767px) {
    .about-main .container-fluid .call-to-action .wrapper .heading br {
        display: none
    }
}

.about-main .container-fluid .call-to-action .wrapper .desc {
    color: #b7b7b7
}

@media(max-width: 767px) {
    .about-main .container-fluid .call-to-action .wrapper .desc br {
        display: none
    }
}

.about-main .container-fluid .call-to-action .img-otr {
    display: flex;
    align-items: center;
    position: absolute;
    top: -200px;
    right: -260px;
    z-index: 2;
    transform: rotate(-24deg)
}

@media(max-width: 1400px) {
    .about-main .container-fluid .call-to-action .img-otr {
        top: -30px;
        right: -170px
    }
}

@media(max-width: 991px) {
    .about-main .container-fluid .call-to-action .img-otr {
        display: none
    }
}

.about-main .container-fluid .call-to-action .img-otr .img-inr:not(:last-child) {
    margin: 0 30px 0 0
}

.about-main .container-fluid .call-to-action .img-otr .img-inr .col-img-inr:not(:last-child) {
    margin-bottom: 30px
}

.about-main .container-fluid .call-to-action .img-otr .img-inr .col-img-inr .about-img {
    width: 250px;
    border-radius: 16px
}

@media(max-width: 1400px) {
    .about-main .container-fluid .call-to-action .img-otr .img-inr .col-img-inr .about-img {
        width: 200px
    }
}

.privacy-policy-main {
    margin: 128px 0
}

.privacy-policy-main .container .wrapper .desc {
    color: #b7b7b7
}

.privacy-policy-main .container .wrapper .para {
    padding: 0 0 16px
}

.privacy-policy-main .container .wrapper .heading {
    margin: 24px 0 16px;
    color: #fff
}

.terms-of-services {
    margin: 128px 0
}

.terms-of-services .container .wrapper .desc {
    color: #b7b7b7
}

.terms-of-services .container .wrapper .para {
    padding: 0 0 16px
}

.terms-of-services .container .wrapper .heading {
    margin: 24px 0 16px;
    color: #fff
}

.overlay-landing .modal-content-inr .accordion {
    margin: 36px 0
}

.overlay-landing .modal-content-inr .action {
    margin: 0
}

.nav-landing {
    padding: 32px 0
}

.nav-landing .container-fluid .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-landing .container-fluid .wrapper .logo-otr .logo {
    width: 170px
}

@media(max-width: 1199px) {
    .nav-landing .container-fluid .wrapper .menu-otr {
        display: none
    }
}

.nav-landing .container-fluid .wrapper .menu-otr .menu-ul {
    display: flex;
    align-items: center
}

.nav-landing .container-fluid .wrapper .menu-otr .menu-ul .menu-li:not(:last-child) {
    margin-right: 40px
}

.nav-landing .container-fluid .wrapper .menu-otr .menu-ul .menu-li .menu-a {
    color: #fff;
    transition: .3s
}

.nav-landing .container-fluid .wrapper .menu-otr .menu-ul .menu-li .menu-a:hover {
    color: #019dea
}

.nav-landing .container-fluid .wrapper .action-otr {
    display: flex
}

@media(max-width: 1199px) {
    .nav-landing .container-fluid .wrapper .action-otr {
        display: none
    }
}

.nav-landing .container-fluid .wrapper .burger-icon-otr {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, .05);
    cursor: pointer
}

@media(max-width: 1199px) {
    .nav-landing .container-fluid .wrapper .burger-icon-otr {
        display: flex
    }
}

@media(max-width: 575px) {
    .nav-landing .container-fluid .wrapper .burger-icon-otr {
        width: 40px;
        height: 40px
    }
}

.nav-landing .container-fluid .wrapper .burger-icon-otr .burger-icon {
    font-size: 24px;
    color: #fff
}

@media(max-width: 575px) {
    .nav-landing .container-fluid .wrapper .burger-icon-otr .burger-icon {
        font-size: 18px
    }
}

.landing-Hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(252.07deg, rgba(1, 156, 234, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%)
}

.landing-Hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg-img.png);
    top: 0;
    left: 0;
    opacity: .6
}

.landing-Hero .container-fluid .row-custom {
    align-items: center;
    position: relative;
    padding: 96px 0 128px;
    z-index: 2
}

.landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .heading {
    color: #fff
}

.landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .heading .text-color {
    color: #019dea
}

.landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .heading2-otr {
    display: inline-flex;
    background-color: #091830;
    border-radius: 16px;
    margin: 40px 0 60px
}

.landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .heading2-otr .heading2 {
    color: #fff;
    padding: 12px 24px
}

.landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .logo-otr .logo-ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

@media(max-width: 420px) {
    .landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .logo-otr .logo-ul .logo-li {
        margin-top: 16px
    }
}

.landing-Hero .container-fluid .row-custom .col-content-otr .col-content-inr .logo-otr .logo-ul .logo-li:not(:last-child) {
    margin-right: 16px
}

@media(max-width: 991px) {
    .landing-Hero .container-fluid .row-custom .col-img-otr .col-img-inr {
        padding-top: 72px
    }
}

.landing-Hero .container-fluid .row-custom .col-img-otr .col-img-inr .img {
    width: 100%
}

.home-link-main {
    margin: 128px 0
}

.home-link-main .container-fluid .wrapper {
    margin-bottom: 72px
}

.home-link-main .container-fluid .wrapper .tab-otr {
    display: flex;
    align-items: center
}

@media(max-width: 991px) {
    .home-link-main .container-fluid .wrapper .tab-otr {
        flex-direction: column;
        align-items: flex-start
    }
}

.home-link-main .container-fluid .wrapper .tab-otr .heading {
    color: #fff;
    margin-right: 24px
}

@media(max-width: 991px) {
    .home-link-main .container-fluid .wrapper .tab-otr .heading {
        margin: 0 0 24px
    }
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr {
    position: relative
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .05);
    border: 2px solid #019dea;
    border-radius: 12px;
    padding: 6px 16px;
    cursor: pointer
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .btn-drop-inr {
    color: #fff
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .arrow-down {
    font-size: 18px;
    color: #fff;
    margin: 0 0 0 8px
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .btn-drop .change-text {
    color: #fff
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul {
    position: absolute;
    left: 0;
    top: 80px;
    width: 200px;
    border-radius: 24px;
    background-color: #222f45;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link {
    cursor: pointer
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link:not(:last-child) {
    margin-bottom: 12px
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .tab-link .tab-p {
    color: #fff
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .tabs-ul .active .tab-p {
    color: #019dea
}

.home-link-main .container-fluid .wrapper .tab-otr .tab-inr .tab-drop-open {
    opacity: 1;
    visibility: visible;
    top: 50px
}

.home-link-main .container-fluid .row-custom-main .tab-content {
    display: none;
    opacity: 0;
    -webkit-animation: fadeIn .3s ease 1 forwards;
    animation: fadeIn .3s ease 1 forwards
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr {
    justify-content: center
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .col-linkk-inr .img-otr {
    margin-bottom: 24px;
    border-radius: 30px;
    border: 10px solid #222f45;
    overflow: hidden
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .col-linkk-inr .img-otr .img-linkk {
    width: 100%
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .col-linkk-inr .linkk-page {
    text-align: center;
    color: #fff
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .box-1,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .box-2 {
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .box-1,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .box-2,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .box-3,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr .col-linkk-otr .box-4 {
        margin-bottom: 30px
    }
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 {
    margin: 128px 0 0;
    justify-content: center
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .wrapper {
    margin-bottom: 72px
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .wrapper .heading {
    color: #fff
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .col-linkk-inr .img-otr {
    margin-bottom: 24px;
    border-radius: 30px;
    border: 10px solid #222f45;
    overflow: hidden
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .col-linkk-inr .img-otr .img-linkk {
    width: 100%
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .col-linkk-inr .linkk-page {
    text-align: center;
    color: #fff
}

.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-1,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-2,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-3,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-4,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-5,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-6,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-7,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-8,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-9,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-10,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-11,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-12,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-13,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-14,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-15,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-16,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-17,
.home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-18 {
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-1,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-2,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-3,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-4,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-5,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-6,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-7,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-8,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-9,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-10,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-11,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-12,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-13,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-14,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-15,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-16,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-17,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-18,
    .home-link-main .container-fluid .row-custom-main .tab-content .row-custom-inr2 .col-linkk-otr .box-19 {
        margin-bottom: 30px
    }
}

.home-link-main .container-fluid .row-custom-main .active {
    display: block;
    opacity: 1
}

.footer-landing {
    position: relative;
    overflow: hidden;
    background: linear-gradient(252.07deg, rgba(1, 156, 234, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%)
}

.footer-landing::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-bg-img.png);
    top: 0;
    left: 0;
    opacity: .6
}

.footer-landing .container-fluid .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 128px 0;
    z-index: 2
}

.footer-landing .container-fluid .wrapper .heading {
    color: #fff
}

.footer-landing .container-fluid .wrapper .desc {
    color: #b7b7b7;
    margin: 16px 0 40px
}

.footer-landing .container-fluid .wrapper .action-otr {
    display: flex
}

.copyright-landing {
    padding: 32px 0
}

.copyright-landing .container-fluid .wrapper {
    display: flex;
    justify-content: center;
    text-align: center
}

.copyright-landing .container-fluid .wrapper .copy-right {
    color: #fff
}

.copyright-landing .container-fluid .wrapper .copy-right .linkk {
    display: inline;
    color: #019dea
}

html {
    box-sizing: border-box
}

*,
*:before,
*:after {
    box-sizing: inherit
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #242629
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0
}

a {
    display: block;
    text-decoration: none
}

a:hover {
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

.container-fluid {
    padding: 0 50px
}

@media(max-width: 991px) {
    .container-fluid {
        padding: 0 15px
    }
}

.heading-h1 {
    font-size: 56px;
    line-height: 90px;
    font-family: montserrat-bold
}

@media(max-width: 575px) {
    .heading-h1 {
        font-size: 40px;
        line-height: 72px
    }
}

.heading-h2 {
    font-size: 40px;
    line-height: 72px;
    font-family: montserrat-bold
}

@media(max-width: 575px) {
    .heading-h2 {
        font-size: 32px;
        line-height: 48px
    }
}

.heading-h3 {
    font-size: 32px;
    line-height: 48px;
    font-family: montserrat-bold
}

@media(max-width: 575px) {
    .heading-h3 {
        font-size: 24px;
        line-height: 40px
    }
}

.heading-h4 {
    font-size: 24px;
    line-height: 40px;
    font-family: montserrat-bold
}

@media(max-width: 575px) {
    .heading-h4 {
        font-size: 20px;
        line-height: 36px
    }
}

.heading-h5 {
    font-size: 20px;
    line-height: 36px;
    font-family: montserrat-bold
}

.heading-L {
    font-size: 20px;
    line-height: 36px;
    font-family: poppins-medium
}

.heading-LB-Mon {
    font-size: 20px;
    line-height: 36px;
    font-family: montserrat-bold
}

.heading-LB {
    font-size: 20px;
    line-height: 36px;
    font-family: poppins-medium
}

.heading-M {
    font-size: 18px;
    line-height: 32px;
    font-family: poppins-medium
}

.heading-MB {
    font-size: 18px;
    line-height: 32px;
    font-family: poppins-medium
}

.heading-MB-Mon {
    font-size: 18px;
    line-height: 32px;
    font-family: montserrat-bold
}

.heading-S {
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-regular
}

.heading-SB {
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-medium
}

.heading-XSB {
    font-size: 16px;
    line-height: 28px;
    font-family: poppins-medium
}

.btn-primary-1 {
    padding: 13px 24px;
    border-radius: 12px;
    background-color: #019dea;
    color: #fff;
    text-transform: capitalize;
    font-family: poppins-medium;
    border: 1px solid transparent;
    transition: .2s
}

.btn-primary-1:hover {
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid #019dea;
    color: #fff
}

.btn-primary-2 {
    padding: 14px 24px 12px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, .05);
    text-transform: capitalize;
    font-family: poppins-medium;
    border: 1px solid #019dea;
    color: #fff;
    transition: .2s
}

.btn-primary-2:hover {
    background-color: #019dea;
    color: #fff;
    border: 1px solid transparent
}

.input {
    padding: 14px 48px 14px 24px;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 12px;
    font-family: poppins-medium;
    color: #fff;
    border: none
}

.input:focus {
    outline: none
}

.input::-moz-placeholder {
    color: #fff
}

.input:-ms-input-placeholder {
    color: #fff
}

.input::placeholder {
    color: #fff
}

.blur-effect {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}