/* icon - Bootstrap Icons removed, using FontAwesome instead */

/* font - Google Fonts removed, using system fonts */

:root {
    --black-color--: #000;
    --white-color--: #fff;
    --main-color--: #6f376a;
    --main-border-color--: #8c5f88;
    --border-red--: red;
    --border-gray--: #262626;
    --border-price--: #e5e5e5;
    --border-price-inner--: #e5e5e5;
    --border-input--: #e5e5e5;
    --search-span-color--: #323232;
    --font-body--: "Inter Tight", sans-serif;
    --font-oswald--: "Oswald", sans-serif;
    --blog-span-color--: #a0aec0;
}

body {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--font-body--);
    color: var(--black-color--);
}

#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: linear-gradient(135deg, #FFD700 0%, #003366 50%, #FF1744 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

h2 {
    font-size: 90px;
    line-height: 80px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
    font-weight: 600;
    margin-top: 37px;
}

h3 {
    font-size: 65px;
    line-height: 75px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
    font-weight: 600;
}

h4 {
    font-size: 26px;
    line-height: 36px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
    font-weight: 600;
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--black-color--);
    font-family: var(--font-body--);
}

.text-main {
    color: var(--main-color--) !important;
}

.bg-main {
    background-color: var(--main-color--) !important;
}

li {
    list-style: none;
}

.all-margin {
    margin: 110px 0;
}

.top-margin {
    margin-top: 110px;
}

.all-padding {
    padding: 110px 0;
}

.top-padding {
    padding-top: 110px;
}

.border-main {
    border-color: var(--main-border-color--) !important;
}

.border-gray {
    border-color: var(--border-gray--) !important;
}

.border-input {
    border-color: var(--border-input--) !important;
}

.border-white {
    border-color: var(--white-color--) !important;
}

.border-black {
    border-color: var(--black-color--) !important;
}

.border-white:hover,
.border-black:hover {
    border-color: var(--main-color--) !important;
}

.border-price {
    border-color: var(--border-price--) !important;
    transition: all .3s ease-in-out;
}

.border-price:hover {
    border-color: var(--black-color--) !important;
}

.text-up p {
    margin: 1.8em 22em 5em 22em;
}

.btn,
button {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--font-oswald--);
}

img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.img .inner-img {
    overflow: hidden;
}

.img .inner-img img {
    transform: scale(1);
    transition: all .5s ease-out 0s;
}

.img:hover .inner-img img {
    transform: scale(1.1);
}

.black-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    background-color: var(--black-color--);
    opacity: 0%;
}

.black-box:hover {
    opacity: 40%;
}

.container {
    max-width: 1200px !important;
}

/* header */

header {
    top: 0;
    position: sticky;
    z-index: 999;
    background-color: var(--black-color--);
    padding: 0;
}

.navbar-main {
    padding: 15px 0;
    min-height: 70px;
    transition: all 0.3s ease;
}

.navbar-main.scrolled {
    padding: 8px 0;
    min-height: 50px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    flex: 0 0 auto;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-actions {
    flex: 0 0 auto;
}

.navbar a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white-color--);
    font-family: var(--font-oswald--);
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.navbar a:hover {
    color: var(--main-color--);
}

/* navbar links spacing */
.navbar-main .nav-link {
    padding: 10px 14px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* collapsed menu styling for mobile */
@media (max-width: 991px) {
    .navbar-main .navbar-collapse {
        background-color: var(--black-color--);
        padding: 12px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar-main .nav-link {
        padding: 12px 6px;
    }
    .navbar-main .btn-inquiry {
        width: 100%;
    }
}

.logo-img {
    max-width: 80px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-main.scrolled .logo-img {
    max-width: 60px;
}

.chivas-logo {
    max-width: 120px;
    height: auto;
    transition: all 0.3s ease;
}

.chivas-logo:hover {
    transform: scale(1.05);
}

.navbar-main.scrolled .chivas-logo {
    max-width: 90px;
}

.btn-inquiry {
    background-color: var(--main-color--);
    color: var(--white-color--);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-inquiry:hover {
    background-color: var(--white-color--);
    color: var(--main-color--);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 55, 106, 0.3);
}

.navbar-main.scrolled .btn-inquiry {
    padding: 8px 18px;
    font-size: 12px;
}

/* Navbar Mobile */
.navbar-mobile {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    display: none;
    box-shadow: 0 2px 15px rgba(111, 55, 106, 0.3);
    border-bottom: 2px solid rgba(111, 55, 106, 0.4);
    transition: all 0.3s ease;
}

.navbar-mobile.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(111, 55, 106, 0.5);
}

.navbar-mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 15px;
}

.mobile-logo-left {
    flex: 0 0 auto;
}

.mobile-logo-img {
    max-width: 55px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(111, 55, 106, 0.5));
}

.mobile-logo-img:active {
    transform: scale(0.95);
}

.mobile-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-chivas-logo {
    max-width: 110px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(111, 55, 106, 0.5));
}

.mobile-chivas-logo:active {
    transform: scale(0.95);
}

.mobile-btn-wrapper {
    flex: 0 0 auto;
}

.btn-reserva-mobile {
    background: linear-gradient(135deg, #6f376a, #8c5f88);
    color: var(--white-color--);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(111, 55, 106, 0.5);
    white-space: nowrap;
}

.btn-reserva-mobile:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(111, 55, 106, 0.4);
}

.btn-reserva-mobile i {
    font-size: 16px;
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive navbar - mantener visible el navbar principal en móvil */
@media (max-width: 1024px) {
    .navbar-main {
        display: block !important;
    }
    .navbar-mobile {
        display: none !important;
    }
    .navbar-toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .navbar-mobile {
        padding: 12px 0;
    }
    
    .navbar-mobile-wrapper {
        padding: 0 15px;
        gap: 12px;
    }
    
    .mobile-logo-img {
        max-width: 50px;
    }
    
    .mobile-chivas-logo {
        max-width: 100px;
    }
    
    .btn-reserva-mobile {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .btn-reserva-mobile i {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .navbar-mobile-wrapper {
        padding: 0 12px;
        gap: 10px;
    }
    
    .mobile-logo-img {
        max-width: 45px;
    }
    
    .mobile-chivas-logo {
        max-width: 90px;
    }
    
    .btn-reserva-mobile {
        padding: 10px 16px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .navbar-mobile-wrapper {
        padding: 0 10px;
        gap: 8px;
    }
    
    .mobile-logo-img {
        max-width: 40px;
    }
    
    .mobile-chivas-logo {
        max-width: 80px;
    }
    
    .btn-reserva-mobile {
        padding: 9px 14px;
        font-size: 11px;
    }
    
    .btn-reserva-mobile i {
        font-size: 13px;
    }
}

.navbar .nav-item .dropdown .btn {
    padding: 37px 20px !important;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu {
    background-color: var(--main-color--);
    color: var(--white-color--);
    width: 200px;
    height: 210px;
    position: absolute;
    top: 100%;
}

.navbar .dropdown-menu li .dropdown-item {
    transition: all .3s ease-in-out;
}

.navbar .dropdown-menu li .dropdown-item:hover {
    background-color: var(--black-color--);
    color: var(--white-color--);
}

.navbar .dropdown-menu .dropdown-item {
    padding: 14px;
    transition: all .3s ease-in-out;
}

.navbar .modal-btn {
    color: var(--white-color--);
}

.navbar-responsive img {
    width: 150px;
    margin: 1rem 0;
}

.navbar-responsive .container {
    padding: 0 1rem;
}

/* offcanvas */

.offcanvas .btn-close {
    height: 2em;
    opacity: 100%;
    box-shadow: none;
}

.offcanvas .btn {
    position: relative;
    left: 51%;
}

.offcanvas .btn.show {
    transform: rotate(180deg) !important;
    margin-left: 3rem !important;
}

.offcanvas {
    padding: 0 1rem;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-oswald--);
    z-index: 99999;
    width: 300px !important;
}

.offcanvas li a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;

}

.offcanvas .nav-link,
.dropdown-item {
    color: var(--black-color--);
    transition: all .3s ease-in-out;
}

.offcanvas .nav-link:hover,
.dropdown-item:hover {
    color: var(--main-color--);
    background-color: var(--white-color--);
}

.offcanvas .dropdown {
    overflow-x: hidden;
}

.dropdown-menu.show {
    position: relative !important;
    transform: translate(13px, -12px) !important;
}

/* banner */

.banner img {
    height: 780px;
}

.banner .img-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .img-inner .text {
    transform: translateY(-5.5rem);
}

/* (overlay retirado por solicitud) */

/* Legibilidad del texto del banner */
.banner .img-inner .text h2 {
    /* color de respaldo para navegadores sin clip de fondo */
    color: #9d34ff !important; /* morado vibrante */
    /* degradado animado azul ⇄ morado (colores inspirados en tu logo) */
    background: linear-gradient(90deg, #00c2ff, #9d34ff, #00c2ff);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bannerTitleGradient 5s ease-in-out infinite alternate;
    /* refuerzos de legibilidad sin sombras */
    font-weight: 800;
    letter-spacing: 1.2px;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.6);
}

@keyframes bannerTitleGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}


.banner .img-inner .text h5 {
    color: #ffffff !important;
}

/* card */

.card-sec h4,
.card-sec p {
    color: var(--white-color--);
}

.card-sec .container {
    margin-top: -13em;
    z-index: 1;
    position: relative;
}

.card-sec .box {
    width: 376px;
    height: 380px;
    padding: 56px 32px 42px; /* más espacio arriba */
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card-sec .box.bg-black { background: #000; }
.card-sec .box.bg-main { background: var(--main-color--); }
/* más espacio arriba solo para el card central (sobre nosotros) */
.card-sec .box.bg-main { padding-top: 72px; }

.card-sec .box::before {
    content: "";
    position: absolute;
    inset: -40% -40% auto -40%;
    height: 160%;
    background: radial-gradient(60% 60% at 30% 20%, rgba(111,55,106,.35) 0%, rgba(111,55,106,0) 60%);
    filter: blur(28px);
    opacity: .35;
    pointer-events: none;
}

.card-sec .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
    border-color: rgba(255, 255, 255, 0.16);
}

/* antiguos SVG: mantener por si hay otros usos */
.card-sec img { display: none; }

/* iconos de card usando fontawesome */
.card-sec .info .img i {
    font-size: 68px;
    color: var(--white-color--);
    margin-bottom: 30px;
    transition: transform .3s ease-in-out, color .3s ease-in-out, text-shadow .3s ease-in-out;
    text-shadow: 0 6px 18px rgba(111,55,106,.35);
}

.card-sec .box.bg-main .info .img i {
    color: #fff;
}

.card-sec .info .img i:hover {
    transform: translateY(-6px);
}

.card-sec .info h4 {
    letter-spacing: .06em;
}

.card-sec .info h4::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.4) 100%);
    transition: transform .35s ease;
}

.card-sec .box:hover .info h4::after {
    transform: scaleX(1.25);
}

.card-sec .info p {
    margin-top: 16px;
    line-height: 1.7;
    opacity: .9;
}

@media (max-width: 991px) {
    .card-sec .box {
        height: auto;
        min-height: 320px;
        padding: 32px 24px;
    }
}

/* discography */

.discography .col-4 {
    height: 537px;
}

.discography .col-4 .img .inner-img img {
    height: 367px;
}

/* tour */

.tour h3,
.tour h4,
.tour .btn,
.tour p {
    color: var(--white-color--);
    transition: all .3s ease-in-out;
}

.tour .text-up {
    margin-bottom: 80px;
}

.tour .btn:hover {
    color: var(--main-color--);
}

.tour .col-1 {
    width: 9.333%;
}

.tour .col-9 {
    width: 74%;
}

.tour .col-9 h4 {
    font-size: 14px;
    line-height: 24px;
}

.tour video {
    height: 514px;
}

.tour .brand .img img {
    filter: brightness(60%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.tour .brand img:hover {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.tour .brand .img .inner-img img {
    transition: all .2s ease-out 0s;
}

/* gallery */

.gallery .col-4 {
    padding-left: 0;
    padding-right: 0;
}

.gallery .img {
    position: relative;
}

/* price */

.price .box {
    width: 382px;
    min-height: 520px;
    padding: 36px 28px;
    background: radial-gradient(120% 120% at 10% 0%, rgba(111, 55, 106, 0.25) 0%, rgba(6, 6, 8, 0.95) 45%, rgba(6, 6, 8, 1) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* imagen de plan repetida */
.price-plan-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.price .col-4 h3 {
    font-family: var(--font-body--);
    position: relative;
    margin-bottom: 30px;
}

.price span {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--font-oswald--);
    position: absolute;
    bottom: 15%;
}

.price .btn {
    width: 266px;
    height: 54px;
    border-radius: 50px;
    margin-top: 40px;
}

/* Tariffs collapsible */
.tariffs-toggle-wrapper {
    margin-top: 10px;
}

.tariffs-collapsible {
    display: none;
    margin-top: 10px;
}

/* Alinear botones "Ver tarifas" al fondo y emparejar altura de cajas */
.price .box .poster-desc { margin-top: auto; }
.price .box .tariffs-toggle-wrapper { margin-top: auto; }

/* Lista en dos columnas para Deluxe y ahorrar espacio */
.includes-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
}
.includes-2col li { margin-right: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 767px) {
    .includes-2col { grid-template-columns: 1fr; }
}

/* posters pricing */
.price-poster .poster-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.price-poster .poster-title {
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}

.price-poster .price-highlight {
    font-size: 40px;
    line-height: 1.1;
    color: #ffffff;
    margin: 10px 0 6px;
}

.price-poster .price-from {
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #a5a5b0;
}

.price-poster .poster-badge {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, #6f376a, #8c5f88);
    padding: 6px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: inline-block;
}

.price-poster .section-title {
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 18px 0 10px;
}

.price-poster ul {
    margin: 0 0 8px 0;
    padding: 0;
}

.price-poster ul li {
    list-style: none;
    color: #dcdce0;
    margin: 8px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.price-poster ul li i {
    color: #8c5f88;
    margin-top: 3px;
}

.price-poster .tariffs li span {
    color: #ffffff;
}

.price-poster .tariffs {
    font-size: 14px;
}

.price-poster .poster-desc {
    color: #cfcfd6;
    font-size: 14px;
    margin-top: auto;
}

/* filas de tarifas en 3 columnas */
.price-poster .tariff-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-bottom: 8px;
    color: #ffffff; /* asegurar visibilidad */
    font-size: 15px;
    line-height: 1.25;
}

.price-poster .tariff-row .people { color: #e6e6ea; width: 34%; display: inline-block; }
.price-poster .tariff-row .per    { color: #d0cfde; width: 33%; text-align: center; display: inline-block; }
.price-poster .tariff-row .total  { color: #ffffff; width: 33%; text-align: right; font-weight: 700; display: inline-block; }

/* corregir estilos heredados que ocultaban spans en .price */
.price-poster .tariff-row span,
.price-poster .poster-badge {
    position: static !important;
}

/* blog */

.blog h4 {
    color: var(--black-color--);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 3rem;
    transition: all .3s ease-in-out;
}

.blog h4:hover {
    color: var(--main-color--);
}

.blog .img {
    position: relative;
}

.blog .img .inner-img img {
    height: 300px;
}

.blog .main-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    background-color: var(--main-color--);
    opacity: 0%;
}

.blog .main-box:hover {
    opacity: 40%;
}

.blog .btn {
    font-size: 18px;
    background-color: var(--main-color--);
    width: 67px;
    height: 67px;
    margin: 15px;
    border-radius: 100px;
    cursor: auto;
    position: absolute;
    top: 0;
}

/* footer */

.footer {
    background-color: var(--black-color--);
    overflow-x: hidden;
}

.footer .logo img {
    max-width: 135px;
    max-height: 100%;
    margin-bottom: 40px;
}

.footer form input {
    width: 339px;
    height: 48px;
    border-radius: 50px;
    outline: none;
    color: var(--white-color--);
    background-color: transparent;
    border: 1px solid var(--white-color--);
}

.footer form button {
    letter-spacing: 0.3px;
    width: 100%;
    height: 50px;
    border-radius: 50px;
}

.footer .col-3 h4 {
    margin-bottom: 35px;
}

.footer .accordion-button {
    margin-bottom: 15px;
    margin-top: 10px;
}

.footer .padding-footer {
    padding: 123px 0 90px;
}

.footer a {
    color: var(--white-color--);
    transition: all .3s ease-in-out;
}

.footer a:hover {
    color: var(--main-color--);
}

.footer .fix-btn .btn {
    margin: 0;
    padding: 4px 10px;
    bottom: 2%;
    right: 1%;
    z-index: 999;
}

.footer .accordion-item,
.accordion-button.accordion-footer {
    font-size: 26px;
    line-height: 36px;
    color: var(--white-color--);
    background-color: transparent;
    box-shadow: none;
}

.footer .accordion-body {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

.footer .accordion-button::after {
    background-image: url("../img/arrowhead-up.png");
    transform: rotate(180deg);
}

.footer .accordion-button:not(.collapsed)::after {
    background-image: url("../img/arrowhead-up.png");
    transform: rotate(360deg);
}

/* inner-page-top */

.top-img {
    background-image: url('../img/bred.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    background-position: center;
}

.top-bg {
    background-color: #000;
    min-height: 400px;
}

.top {
    height: 100px;
}

.top .top-text {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top h2 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    margin-bottom: 28px;
}

.top i {
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 2px;
}

.top p {
    color: var(--white-color--);
}

.top a {
    color: #ffffff;
    transition: all .2s ease-in-out;
}

.top a:hover {
    color: var(--main-color--);
}

/* gallery-page----------------------------------------- */

.gallery-page .img {
    position: relative;
}

/* price-page----------------------------------------- */

.price-page .text-up h3 {
    font-size: 40px;
    line-height: 50px;
}

.price-page .btn:hover {
    color: var(--main-color--);
}

.price-page .col-7 h4 {
    font-size: 14px;
    line-height: 24px;
}

.price-page .col-3 {
    width: 19%;
}

.price-page .col-7 {
    width: 64.333%;
}

.price-page .row {
    padding: 0 .5rem;
}

/* tour-page----------------------------------------- */

.tour-page .col-1 {
    width: 9.333%;
}

.tour-page .col-9 {
    width: 74%;
}

.tour-page .col-9 h4 {
    font-size: 14px;
    line-height: 24px;
}

.tour-page .btn:hover {
    color: var(--main-color--);
}

/* coming-page----------------------------------------- */

.coming-bg {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/cooming.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.coming-bg .black-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    background-color: var(--black-color--);
    opacity: 30%;
}

.coming-bg .container {
    z-index: 999;
}

#timer {
    font-family: var(--font-oswald--);
    margin: 3.2rem 0 4.8rem;

    div {
        font-size: 70px;
        line-height: 80px;
        display: inline-block;
        font-weight: 400;
        margin: 0 7rem;

        span {
            color: var(--white-color--);
            display: block;
            font-size: 23px;
            line-height: 33px;
            font-weight: 400;
            text-transform: capitalize;
        }
    }
}

.fix-part h2 {
    font-size: 137px;
    line-height: 147px;
    font-weight: 600;
    color: var(--white-color--);
}

.fix-part .btn {
    width: 224px;
    height: 50px;
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.fix-part .btn:hover {
    transform: translateY(-8px);
}

/* about-page----------------------------------------- */

.about-page .text-up p {
    margin: 1.8em 0em 5em 0em;
    text-align: start;
}

.about-page .first-p {
    padding-right: 1.3em;
}

.about-page .sec-p {
    padding-left: 1.3em;
}

/* blog-page----------------------------------------- */

.blog-page .container {
    max-width: 1248px !important;
}

.blog-page .blog-sec input {
    height: 44px;
    outline: none;
}

.blog-page form button {
    width: 50px;
    height: 44px;
}

.blog-sec .img .inner-img img {
    height: 75px;
    object-fit: cover;
}

.blog-page .blog-sec p {
    font-weight: 500;
    color: var(--black-color--);
    transition: all .2s ease-in-out;
}

.blog-page .blog-sec p:hover {
    color: var(--main-color--);
}

.blog-page .blog-sec .form-date {
    font-size: 0.8125em;
    line-height: 23.4px;
}

.blog-page .col-8 .img .inner-img img {
    height: 195px;
}

.blog-page h4 {
    color: var(--black-color--);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 3rem;
    transition: all .3s ease-in-out;
}

/* uncategorized */

.uncategorized-page h4 {
    padding-right: 18.5rem;
}

.uncategorized-page .col-6 .img .inner-img img {
    height: 290px;
}

/* uncategorized-end */

.blog-page h4:hover {
    color: var(--main-color--);
}

.blog-page .date {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400 !important;
    font-family: var(--font-oswald--);
}

.blog-page .btn {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
    transition: all .3s ease-in-out;
}

.blog-page .btn:hover {
    color: var(--main-color--);
}

.blog-page .part-margin {
    margin: 48px 0;
}

.blog-page h6 {
    font-size: 17px;
    line-height: 27px;
}

/* blog-inner-page */

.blog-inner .blog-img {
    position: relative;
}

.blog-inner .blog-img img {
    height: 600px;
}

.blog-inner .rounded-circle {
    max-width: 100%;
    height: 25px;
    width: 25px;
}

.blog-top .container {
    background: #fff;
    transform: translateY(-70px);
    padding: 2rem;
}

.blog-inner .uncategorized-btn {
    width: auto;
    font-size: 10.5px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 0.25rem;
    margin: 0 13px;
    border-radius: 0.25rem;
}

.blog-inner h2 {
    font-size: 65px;
    line-height: 75px;
    text-align: start;
    margin: 1.5rem 0;
}

.blog-inner .part,
.blog-inner .part a {
    font-size: 15px;
    line-height: 25px;
    color: var(--main-color--);
}

.blog-inner span {
    font-size: 15px;
    line-height: 25px;
    position: relative;
    padding-inline: 4px;
}

.blog-inner p span::before {
    content: '|';
    margin: 0 .5rem;
}

.blog-inner span::after {
    content: '|';
    margin: 0 .5rem;
}

.blog-inner .un-btn {
    transform: translatex(-5px);
}

.blog-inner p {
    margin-bottom: 2rem;
}

.blog-inner ul {
    margin-bottom: 2rem;
}

.blog-inner ul li {
    list-style: disc;
    margin-left: 2.3rem;
}

.next {
    position: relative;
}

.next .row {
    padding: 0 .7rem;
}

.next .col-6 a {
    color: var(--black-color--);
}

.next .icon {
    font-size: 80% !important;
    line-height: 19.2px;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
}

.next span {
    position: absolute;
    color: var(--blog-span-color--);
    left: 48.6%;
    bottom: 43%;
}

.next span::before {
    content: '|';
}

.reply p {
    font-size: 13.6px;
    line-height: 14.6px;
    font-style: italic;
    margin: .8rem 0 1.3rem;
}

.reply input,
textarea {
    outline: none;
}

.reply .form-check-label {
    font-size: 90%;
    line-height: 19.8833px;
}

.reply .btn {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--white-color--);
    background-color: var(--main-color--);
    font-family: var(--font-oswald--);
    padding: 13px 50px;
    transition: all .3s ease-in-out;
}

.reply .btn:hover {
    background-color: var(--black-color--);
}

/* uncategorized-page----------------------------------------- */

.uncategorized-page .col-12 .img .inner-img img {
    height: 600px;
}

/* contact-page----------------------------------------- */

.map iframe {
    width: 100%;
    height: 500px;
}

.contact-page input::placeholder,
textarea::placeholder {
    opacity: 100%;
}

.contact-page input {
    height: 51px;
}

.contact-page textarea {
    height: 140px;
}

.contact-page input,
.contact-page textarea {
    outline: none;
    padding: 15px 20px;
    border-radius: 50px;
}

.contact-page .form-btn .btn {
    width: 295px;
    height: 58px;
    border-radius: 50px;
}

.contact-page input {
    border: 1px solid var(--border-input--);
}

.contact-page textarea {
    border: 1px solid var(--border-input--);
}

.contact-page .error-border {
    border: 1px solid var(--border-red--);
}

.contact-page .error-message {
    color: var(--border-red--);
    display: none;
}

/* search-page----------------------------------------- */

.section .text {
    padding: .5rem 0 0;
}

.section span::before {
    margin: .7rem .4rem;
    content: "";
    background-color: var(--search-span-color--);
    height: .25rem;
    width: .25rem;
    border-radius: 50%;
}

.section .text-main::before {
    background-color: var(--main-color--);
}

.section .col-4 {
    padding: 0 .8rem;
}

.section .col-4 .img .inner-img img {
    height: 78px;
}

.section .col-4 .img .inner-img.blog-img-sec img {
    height: 118px;
}

.section h4 {
    transition: all .3s ease-in-out;
}

.section h4:hover {
    color: var(--main-color--);
}

.section .btn {
    transition: all .3s ease-in-out;
}

.section .btn:hover {
    color: var(--main-color--);
}

.section .d-flex {
    font-family: var(--font-oswald--);
}

.section .Uncategorized-btn {
    font-weight: 700;
    color: var(--black-color--);
    font-family: var(--font-body--);
}