@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;600&display=swap');

body, html {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 15px;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1550px;
    }
}

/* NAVIGATION */
.navbar-light {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.navbar .navbar-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
}
.navbar .nav-item > .nav-link {
    font-weight: 600;
    color: #fff;
    padding: 1rem 1.25rem;
    transition: 0.15s ease all;
    position: relative;
}
.navbar .nav-item > .nav-link:before {
    width: 0%;
    height: 2px;
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #e10d1b;
    content: ' ';
    transition: 0.15s ease all;
    opacity: 0;
}
.navbar .nav-item.active > .nav-link,
.navbar .nav-item > .nav-link:hover,
.navbar .nav-item > .nav-link:focus {
    color: #fff;
}
.navbar .nav-item.active > .nav-link:before,
.navbar .nav-item > .nav-link:hover:before {
    width: calc(100% - 2.5rem);
    opacity: 1;
}
.navbar .nav-item > .nav-link:active {
    color: #e10d1b;
    transform: scale(0.95);
}
.navbar .nav-item > .nav-link.btn.btn-primary {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 10px;
    background: #e10d1b;
    border-color: #e10d1b;
    color: #fff;
}
.navbar .nav-item > .nav-link.btn.btn-primary:focus,
.navbar .nav-item > .nav-link.btn.btn-primary:active {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px;
}
.navbar-dark {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.navbar.navbar-dark .navbar-brand img {
    filter: none;
}
@media (min-width: 768px) {
    .navbar.navbar-dark .nav-item > .nav-link {
        color: #1f1f1f;
    }
    .navbar.navbar-dark .nav-item > .nav-link:active {
        color: #e10d1b;
        transform: scale(0.95);
    }
    .navbar.navbar-dark .nav-item > .nav-link.btn.btn-primary:active {
        color: #fff;
    }
}

/* MAIN */
.main {
    width: 100%;
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/bg-2.jpg') center no-repeat;
    background-size: cover;
}
.main:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.5;
    content: ' ';
    z-index: 0;
}
.main .container {
    position: relative;
    z-index: 2;
}
.main h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    margin: 0;
    color: #fff;
}
.main p {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 1rem 0 0 0;
    color: #fff;
}
.main.v2 {
    background: url('../img/bg-3.jpg') center no-repeat;
    background-size: cover;
}
.main.v3 {
    background: url('../img/bg-1.jpg') center bottom no-repeat;
    background-size: cover;
    min-height: auto;
    padding: 200px 0 100px 0;
}
.main.v4 {
    background: url('../img/bg-4.jpg') center no-repeat;
    background-size: cover;
}
.main.v4 h1 {
    font-size: 4rem;
}
.main.v4 p {
    font-size: 1.15rem;
}
.main.v4 p.small {
    font-size: 1rem;
    opacity: 0.5;
    line-height: 1.55;
}
.main.v4 p img {
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}
.main.v5 {
    background: url('../img/bg-5.jpg') center no-repeat;
    background-size: cover;
}

/* FEATURES */
.features {
    padding: 1px 0 1px 0;
}
.features .feature-box {
    display: block;
    position: relative;
    padding: 4rem 3rem;
    background: url('../img/box-bg.jpg') center no-repeat;
    background-size: cover;
    border: 40px solid #fff;
    margin-top: -60px;
    box-shadow: rgba(10,10,10,0.1) 0 5px 20px;
    text-align: center;
    height: calc(100% + 60px);
}
.features .feature-box img {
    width: 72px;
    height: 72px;
}
.features .feature-box h3 {
    font-weight: 700;
    font-family: 'Playfair Display', sans-serif;
    font-size: 2rem;
    color: #1f1f1f;
    margin: 1rem 0 0.5rem 0;
}
.features .feature-box p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* ABOUT US */
.about-us {
    padding: 100px 0;
    position: relative;
}
.about-us .about-img {
    position: relative;
    white-space: nowrap;
}
.about-us .about-img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    content: ' ';
    border-radius: 50%;
    transform: scale(0.85);
    border: 5px solid #e10d1b;
    z-index: 2;
}
.about-us .about-img img {
    pointer-events: none;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    width: 60%;
    z-index: 1;
    position: relative;
}
.about-us .about-img img:last-child {
    margin-left: -25%;
    z-index: 0;
}
.about-us h3 {
    font-size: 3rem;
    font-family: 'Playfair Display', sans-serif;
    color: #1f1f1f;
    font-weight: 400;
}
.about-us p {
    margin-bottom: 0;
}
.about-us p + p {
    margin-top: 0.5rem;
}
.about-us .line-effect {
    margin-bottom: 2rem;
}
.about-us hr {
    margin: 2.5rem 0 2rem 0;
    border-color: #ddd;
}
.about-us .ceo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.about-us .ceo strong {
    display: block;
    font-weight: 700;
    color: #1f1f1f;
}
.about-us .ceo span {
    display: block;
    font-weight: 400;
    color: #333;
    font-size: 0.8rem;
}
.about-us .signature {
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    margin-left: 50px;
}
.about-us.v2:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url("../img/about-bg-1.jpg") center no-repeat;
    background-size: cover;
    content: ' ';
}

/* STATS */
.stats {
    display: block;
    position: relative;
    padding: 30px 0 90px 0;
    background: #f2f3f4;
}
.stats .stats-item {
    display: block;
    text-align: center;
    margin-top: 30px;
    position: relative;
    color: #1f1f1f;
}
.stats .stats-item:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background: #1f1f1f;
    content: ' ';
    opacity: 0.1;
}
.stats .col-md-3:last-child .stats-item:after {
    display: none;
}
.stats .stats-item strong {
    display: block;
    font-size: 3rem;
}
.stats .stats-item span {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: 'Playfair Display', sans-serif;
    display: block;
    margin-top: -5px;
}

/* PRICING BOXES */
.pricing-boxes {
    display: block;
    padding: 1px 0;
}
.pricing-boxes .pricing-box {
    display: block;
    position: relative;
    margin-top: -30px;
    background: #fff;
    border-radius: 0;
    box-shadow: rgba(10,10,10,0.1) 0 3px 10px;
    z-index: 1;
    height: calc(100% + 30px);
}
.pricing-boxes .pricing-box.v2 {
    padding-bottom: 70px;
}
.pricing-boxes .pricing-box .pricing-header {
    display: block;
    position: relative;
    padding: 2rem;
}
.pricing-boxes .pricing-box .pricing-header span {
    display: block;
    color: #333;
}
.pricing-boxes .pricing-box .pricing-header strong {
    display: block;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    font-size: 2rem;
}
.pricing-boxes .pricing-box .pricing-features {
    display: block;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
    list-style: none;
}
.pricing-boxes .pricing-box .pricing-features li {
    display: block;
    position: relative;
    padding-left: 25px;
}
.pricing-boxes .pricing-box .pricing-features li + li {
    margin-top: 15px;
}
.pricing-boxes .pricing-box .pricing-features li strong {
    display: block;
}
.pricing-boxes .pricing-box .pricing-features li span {
    display: block;
    color: #999;
    font-size: 0.8rem;
}
.pricing-boxes .pricing-box .pricing-features li.yes:before {
    content: ' ';
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #e10d1b;
    border-left: 2px solid #e10d1b;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.pricing-boxes .pricing-box .pricing-features li.no {
    opacity: 0.5;
}
.pricing-boxes .pricing-box .pricing-features li.no:before {
    content: ' ';
    width: 1px;
    height: 12px;
    background: #1f1f1f;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto;
}
.pricing-boxes .pricing-box .pricing-features li.no:after {
    content: ' ';
    width: 1px;
    height: 12px;
    background: #1f1f1f;
    transform-origin: center;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto;
}
.pricing-boxes .pricing-box.v2 .pricing-features li strong {
    font-size: 0.85rem;
}
.pricing-boxes .pricing-box.v2 .pricing-features li span {
    font-size: 0.7rem;
}
.pricing-boxes .pricing-box .pricing-button {
    padding: 0 2rem 1rem 2rem;
}
.pricing-boxes .pricing-box.v2 .pricing-button {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}
.pricing-boxes .pricing-box .pricing-button .btn.btn-primary {
    background: #e10d1b;
    border-color: #e10d1b;
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
    font-weight: 600;
    transition: 0.15s ease all;
}
.pricing-boxes .pricing-box .pricing-button .btn.btn-primary:focus {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px;
    background: #e10d1b;
    border-color: #e10d1b;
}
.pricing-boxes .pricing-box .pricing-button .btn.btn-primary:active {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px;
    background: #e10d1b;
    border-color: #e10d1b;
    transform: scale(0.95);
}
.pricing-boxes .pricing-box .pricing-button .btn.btn-secondary {
    background: #444;
    border-color: #444;
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
    font-weight: 600;
    transition: 0.15s ease all;
}
.pricing-boxes .pricing-box .pricing-button .btn.btn-secondary:hover,
.pricing-boxes .pricing-box .pricing-button .btn.btn-secondary:focus {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px;
    background: #2f2f2f;
    border-color: #2f2f2f;
}
.pricing-boxes .pricing-box .pricing-button .btn.btn-secondary:active {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px;
    background: #2f2f2f;
    border-color: #2f2f2f;
    transform: scale(0.95);
}
.pricing-boxes .pricing-box .pricing-notes {
    font-size: 0.6rem;
    color: #aaa;
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

/* PARTNERS */
.partners {
    padding: 80px 0;
    text-align: center;
}
.partners.v2 {
    padding: 150px 0 100px 0;
}
.partners.v2 h3 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    color: #1f1f1f;
    margin-bottom: 30px;
}
.partners img {
    filter: brightness(0);
    display: inline-block;
    vertical-align: middle;
    max-height: 40px;
    max-width: 200px;
    margin: 0 25px;
    opacity: 0.5;
}
.partners.v2 img {
    max-width: 240px;
    max-height: 70px;
    margin: 15px 25px;
    transition: 0.15s ease all;
}
.partners.v2 img:hover {
    cursor: pointer;
    opacity: 1;
}

/* GALLERY */
.gallery {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
}
.gallery img {
    width: calc(100% / 6);
    height: 250px;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}
.gallery.v2 img {
    width: calc(100% / 5);
}

/* FOOTER */
footer.footer {
    padding: 80px 0;
    text-align: center;
    background: url('../img/box-bg.jpg') center repeat;
}
footer.footer .logo {
    filter: grayscale(1);
}
footer.footer .logo img {
    height: 60px;
}
footer.footer ul.links {
    display: block;
    list-style: none;
    margin: 0;
    padding: 40px 0;
}
footer.footer ul.links li {
    display: inline-block;
    vertical-align: middle;
}
footer.footer ul.links li a {
    font-weight: 600;
    color: #1f1f1f;
    position: relative;
    margin: 0 1rem;
    text-decoration: none;
    transition: 0.15s ease all;
}
footer.footer ul.links li a:hover {
    color: #e10d1b;
}
footer.footer ul.social {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0 0 40px 0;
}
footer.footer ul.social li {
    display: inline-block;
    vertical-align: middle;
}
footer.footer ul.social li a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #fff;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: 0.15s ease all;
}
footer.footer ul.social li a:hover {
    box-shadow: rgba(10,10,10,0.1) 0 3px 6px;
}
footer.footer ul.social li a img {
    width: 16px;
    height: 16px;
    filter: brightness(0);
    opacity: 0.75;
}
footer.footer p.copyright {
    font-size: 0.8rem;
    color: #999;
}

/* BEFORE DANCING */
.before-dancing {
    display: block;
    position: relative;
    padding: 90px 0 90px 0;
    background: #f2f3f4;
}
.before-dancing h3 {
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-left: 4rem;
    padding-right: 4rem;
    margin: 0;
}
.before-dancing h3:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 4rem;
    height: 4rem;
    background: url("../img/line.png") center no-repeat;
    background-size: contain;
    content: ' ';
}
.before-dancing h3:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 4rem;
    height: 4rem;
    background: url("../img/line.png") center no-repeat;
    background-size: contain;
    content: ' ';
}
.before-dancing .item {
    display: block;
    text-align: center;
    margin-top: 30px;
    position: relative;
    color: #1f1f1f;
}
.before-dancing .item:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background: #1f1f1f;
    content: ' ';
    opacity: 0.1;
}
.before-dancing .col-md-3:last-child .item:after {
    display: none;
}
.before-dancing .item img {
    width: 64px;
    height: 64px;
    display: block;
    margin: auto;
}
.before-dancing .item h4 {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
    padding: 0 10%;
    margin-top: 10px;
}
.before-dancing .item p {
    font-size: 0.85rem;
    display: block;
    color: #999;
    margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
    display: block;
    position: relative;
    padding: 60px 0 0 0;
}
.testimonials h3 {
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}
.testimonial-box {
    display: block;
    position: relative;
}
.testimonial-box + .testimonial-box {
    margin-top: 60px;
}
.testimonial-box .video-thumb {
    width: 100%;
    position: relative;
    cursor: pointer;
    transition: 0.15s ease all;
}
.testimonial-box .video-thumb:hover {
    box-shadow: rgba(10,10,10,0.25) 0 5px 25px;
}
.testimonial-box .video-thumb:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    content: ' ';
    border-radius: 50%;
    margin: auto;
    z-index: 1;
    box-shadow: rgba(10,10,10,0.1) 0 3px 6px;
}
.testimonial-box .video-thumb:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    right: 0;
    border-left: 30px solid #1f1f1f;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    content: ' ';
    width: 30px;
    height: 30px;
    margin: auto;
    z-index: 2;
}
.testimonial-box .video-thumb img {
    position: relative;
    z-index: 0;
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(10,10,10,0.1) 0 3px 6px;
}
.testimonial-box h4 {
    font-size: 1.5rem;
    color: #1f1f1f;
}
.testimonial-box h4 strong {
    display: block;
    font-family: 'Playfair Display', sans-serif;
    font-size: 3rem;
    font-weight: bold;
}
.testimonial-box h4 span {
    display: block;
    font-weight: bold;
    color: #e10d1b;
    margin-top: 10px;
}

/* SOUND LIGHTING */
.sound-lighting {
    display: block;
    padding: 100px 0;
}
.sound-lighting.v2 {
    padding-bottom: 150px;
    border-top: 1px solid #ddd;
}
.sound-lighting h3 {
    color: #1f1f1f;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    font-size: 3rem;
    margin: 0;
}
.sound-lighting .item {
    display: block;
    margin-top: 30px;
}
.sound-lighting .item img {
    width: 64px;
    height: 64px;
}
.sound-lighting .item strong {
    display: block;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    font-size: 3rem;
    color: #e10d1b;
}
.sound-lighting .item span {
    display: block;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    font-size: 1.75rem;
    line-height: 1.25;
    color: #1f1f1f;
}
.sound-lighting .item p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding-right: 15%;
    color: #999;
}
.sound-lighting .item img {
    width: 70%;
    height: auto;
}

/* SMOKE MACHINE */
.smoke-machine {
    padding: 1px 0;
}
.smoke-machine .box {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: -50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(10,10,10,0.1) 0 3px 6px;
    padding: 45px;
    overflow: hidden;
}
.smoke-machine .box img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}
.smoke-machine .box h3 {
    font-size: 3rem;
    font-family: 'Playfair Display', sans-serif;
    color: #1f1f1f;
    font-weight: 400;
    margin-bottom: 1rem;
}
.smoke-machine .box p {
    margin-bottom: 0;
}
.smoke-machine .box p + p {
    margin-top: 1rem;
}

/* LOCATION FEATURES */
.location-features {
    display: block;
    padding: 80px 0;
}
.location-features h3 {
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    color: #1f1f1f;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    text-align: center;
}
.location-features .mini-feature {
    display: block;
    margin-top: 1rem;
    position: relative;
    text-align: center;
}
.location-features .mini-feature strong {
    display: block;
    color: #e10d1b;
    font-size: 1.5rem;
    font-weight: bold;
}

/* LOCATION OFFERS */
.location-offers {
    display: block;
    position: relative;
}
.location-offers .box {
    border: 1px solid #eee;
    background: #fff;
    padding: 45px;
    position: relative;
    border-radius: 10px;
    box-shadow: rgba(10,10,10,0.1) 0 4px 8px;
    z-index: 1;
    overflow: hidden;
}
.location-offers .box .wrapper-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    pointer-events: none;
    clip-path: polygon(50% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 15% 50%, 0 0);
}
.location-offers .box h3 {
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    color: #1f1f1f;
    font-size: 2rem;
    margin: 1rem 0 0.5rem 0;
}
.location-offers .feature {
    display: block;
    margin-top: 30px;
}
.location-offers .feature .icon img {
    width: 64px;
    height: 64px;
    filter: grayscale(1);
    opacity: 0.5;
}
.location-offers .feature .info h4 {
    display: block;
    font-family: 'Playfair Display', sans-serif;
    color: #1f1f1f;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem 0;
}
.location-offers .feature .info p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

/* LOCATION MORE */
.location-more {
    display: block;
    padding: 130px 0 80px 0;
    background: #333;
    color: #fff;
    margin-top: -50px;
}
.location-more h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}
.location-more p {
    margin: 1rem 0 0 0;
    color: rgba(255,255,255,0.75);
}
.location-more .btn.btn-primary {
    background: #e10d1b;
    border-color: #e10d1b;
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
    font-weight: 600;
    transition: 0.15s ease all;
}
.location-more .btn.btn-primary:focus {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px !important;
    background: #e10d1b;
    border-color: #e10d1b;
}
.location-more .btn.btn-primary:active {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px !important;
    background: #e10d1b;
    border-color: #e10d1b;
    transform: scale(0.95);
}

/* CONTACT */
.contact-page {
    padding: 150px 0 100px 0;
}
.contact-page h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}
.contact-page .map img {
    border-radius: 10px;
    box-shadow: rgba(10,10,10,0.1) 0 3px 6px;
}
.contact-page .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f1f1f;
    margin: 0 0 3px 0;
    user-select: none;
}
.contact-page .form-group .form-control {
    padding: 15px;
    height: auto;
    border: 1px solid #ddd;
    font-size: 1rem;
}
.contact-page .form-group .form-control:focus {
    box-shadow: rgba(10,10,10,0.1) 0 3px 6px;
    border-color: #ddd;
}
.contact-page .form-group textarea.form-control {
    min-height: 140px;
}
.contact-page .btn.btn-primary {
    background: #e10d1b;
    border-color: #e10d1b;
    color: #fff;
    border-radius: 10px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: 0.15s ease all;
}
.contact-page .btn.btn-primary:focus {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px !important;
    background: #e10d1b;
    border-color: #e10d1b;
}
.contact-page .btn.btn-primary:active {
    box-shadow: rgba(10,10,10,0.15) 0 3px 6px !important;
    background: #e10d1b;
    border-color: #e10d1b;
    transform: scale(0.95);
}
.contact-page .contact-item {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.contact-page .contact-item img {
    width: 48px;
    flex-shrink: 0;
}
.contact-page .contact-item .info {
    width: calc(100% - 48px);
    flex-shrink: 0;
    padding-left: 20px;
}
.contact-page .contact-item .info span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}
.contact-page .contact-item .info strong {
    display: block;
    color: #1f1f1f;
    font-size: 1.25rem;
    line-height: 1.25;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    html, body {
        font-size: 13px;
    }
    .navbar .nav-item > .nav-link {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar .nav-item > .nav-link.btn.btn-primary {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .gallery img {
        height: 150px;
    }
    .partners img {
        max-height: 30px;
        max-width: 150px;
    }
    .partners.v2 img {
        max-height: 40px;
        max-width: 200px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    html, body {
        font-size: 12px;
    }
    .navbar .navbar-brand img {
        height: 45px;
    }
    .navbar .nav-item > .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .navbar .nav-item > .nav-link.btn.btn-primary {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .main {
        padding: 250px 0 200px 0;
        min-height: auto;
    }
    .main h1 {
        font-size: 4rem;
    }
    .features .feature-box {
        border-width: 20px;
        padding: 3rem 2rem;
    }
    .pricing-boxes .pricing-box {
        margin-bottom: 60px;
        height: calc(100% + 30px - 60px);
    }
    .pricing-boxes + .partners,
    .pricing-boxes + .testimonials {
        padding-top: 0;
    }
    .partners {
        padding: 60px 0;
    }
    .gallery {
        flex-wrap: wrap;
    }
    .gallery img,
    .gallery.v2 img {
        width: calc(100% / 3);
        height: 200px;
    }
    .gallery.v2 img:nth-child(4),
    .gallery.v2 img:nth-child(5) {
        width: calc(100% / 2);
    }
    .partners img {
        max-height: 30px;
        max-width: 100px;
    }
    .partners.v2 img {
        max-height: 40px;
        max-width: 200px;
    }
    .sound-lighting {
        padding: 60px 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        font-size: 12px;
    }
    .navbar .navbar-brand img {
        height: 35px;
    }
    .navbar .nav-item > .nav-link {
        padding-left: 0.45rem;
        padding-right: 0.45rem;
        font-size: 0.9rem;
    }
    .navbar .nav-item.active > .nav-link:before, .navbar .nav-item > .nav-link:hover:before {
        width: calc(100% - 0.9rem);
    }
    .navbar .nav-item > .nav-link.btn.btn-primary {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        display: none;
    }
    .main {
        padding: 250px 0 200px 0;
        min-height: auto;
    }
    .main h1 {
        font-size: 4rem;
    }
    .features .feature-box {
        border-width: 10px;
        padding: 2rem 1rem;
    }
    .stats .stats-item span {
        font-size: 1rem;
        font-weight: bold;
    }
    .pricing-boxes .pricing-box {
        margin-bottom: 60px;
        height: calc(100% + 30px - 60px);
    }
    .pricing-boxes + .partners,
    .pricing-boxes + .testimonials {
        padding-top: 0;
    }
    .partners {
        padding: 60px 0;
    }
    .gallery {
        flex-wrap: wrap;
    }
    .gallery img,
    .gallery.v2 img {
        width: calc(100% / 3);
        height: 200px;
    }
    .gallery.v2 img:nth-child(4),
    .gallery.v2 img:nth-child(5) {
        width: calc(100% / 2);
    }
    .partners img {
        max-height: 40px;
        max-width: 120px;
        margin: 15px 25px;
    }
    .partners.v2 img {
        max-height: 40px;
        max-width: 200px;
    }
    .sound-lighting {
        padding: 60px 0;
    }
    footer.footer ul.links li a {
        margin: 1rem;
        display: block;
    }
}
@media (max-width: 767px) {
    .navbar-light .navbar-toggler {
        border-color: transparent;
        outline: none;
        box-shadow: none;
        font-size: 0.95rem;
        filter: brightness(0) invert(1);
    }
    .navbar-collapse {
        background: #1f1f1f;
        padding: 2rem;
        border-radius: 10px;
    }
    .navbar .nav-item > .nav-link {
        text-align: center;
        border-radius: 10px;
    }
    .navbar .nav-item > .nav-link:active {
        background: rgba(255,255,255,0.1);
    }
    .navbar .nav-item > .nav-link:before {
        display: none;
    }
    .navbar .nav-item > .nav-link.btn.btn-primary {
        margin-top: 1rem;
    }
    .main {
        padding: 150px 0 100px 0;
        min-height: auto;
        text-align: center;
    }
    .main h1 {
        font-size: 3rem;
    }
    .main p {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    .features {
        margin-top: -50px;
    }
    .features .feature-box {
        border-width: 10px;
        padding: 3rem 2rem;
        height: auto;
        margin-top: 20px;
    }
    .about-us {
        padding: 60px 0;
        text-align: center;
    }
    .about-us h3 {
        font-size: 2rem;
        padding-top: 25px;
    }
    .stats .stats-item:after {
        display: none;
    }
    .stats .stats-item strong {
        font-size: 2rem;
    }
    .stats .stats-item span {
        font-size: 1rem;
    }
    .pricing-boxes {
        margin-top: -50px;
    }
    .pricing-boxes .pricing-box {
        height: auto;
        margin-top: 15px;
    }
    .partners {
        padding: 50px 0;
    }
    .partners img {
        margin: 15px;
    }
    .gallery {
        flex-wrap: wrap;
    }
    .gallery img {
        width: 100%;
    }
    footer.footer ul.links li a {
        margin: 0.5rem;
        display: block;
    }
    .about-us.v2 {
        padding-bottom: 300px;
    }
    .about-us.v2:after {
        width: 100%;
        height: 250px;
        top: auto;
        bottom: 0;
    }
    .about-us.v2 h3 {
        padding-top: 0;
    }
    .before-dancing {
        padding: 50px 0;
    }
    .before-dancing h3 {
        font-size: 1.5rem;
        padding-left: 0;
        padding-right: 0;
    }
    .before-dancing h3:after,
    .before-dancing h3:before {
        display: none;
    }
    .before-dancing .item h4 {
        font-weight: 400;
        font-size: 1rem;
    }
    .before-dancing .item:after {
        display: none;
    }
    .testimonial-box h4 {
        font-size: 1rem;
        padding-top: 1.5rem;
    }
    .testimonial-box h4 strong {
        font-size: 2rem;
    }
    .testimonial-box + .testimonial-box {
        margin-top: 30px;
    }
    .gallery.v2 img {
        width: 100%;
    }
    .location-offers .box {
        padding: 230px 30px 30px 30px;
    }
    .location-offers .box .wrapper-img {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 200px;
        bottom: auto;
        clip-path: none;
    }
    .sound-lighting {
        text-align: center;
        padding: 50px 0;
    }
    .sound-lighting h3 {
        font-size: 2rem;
    }
    .smoke-machine .box {
        padding: 230px 30px 30px 30px;
    }
    .smoke-machine .box img {
        width: 100%;
        height: 200px;
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
    }
    .smoke-machine .box h3 {
        font-weight: 600;
        font-size: 2rem;
    }
    .main.v4 h1 {
        font-size: 3rem;
    }
    .main.v4 p.small {
        font-size: 0.8rem;
    }
    .location-features {
        padding: 50px 0;
    }
    .location-features .mini-feature strong {
        font-size: 1rem;
    }
    .location-features .mini-feature span {
        font-size: 0.8rem;
        color: #999;
    }
    .location-more .btn.btn-primary {
        margin-top: 50px;
    }
    .partners.v2 h3 {
        font-size: 2rem;
    }
    .partners.v2 img {
        max-width: 150px;
        max-height: 40px;
    }
    .navbar-dark .navbar-toggler {
        filter: brightness(0);
        border-color: transparent;
        outline: none;
    }
    .contact-page {
        padding: 120px 0 80px 0;
    }
    .contact-page .map img {
        margin-top: 30px;
    }
}