/*------------------------------------------------------------
# Global classes
------------------------------------------------------------*/
.flex {
    display: flex;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: hsl(0, 0%, 90%);
}

@font-face {
    font-family: "mountains";
    src: url(fonts/beyond_the_mountains.ttf);
    src: url(fonts/beyond_the_mountains.otf);
    font-weight: 400;
}

.d-col-n {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

/*------------------------------------------------------------
# site-header
------------------------------------------------------------*/
.home-page {
    background: url(images/middle-cover.jpg) no-repeat center center; /* Center the image */
    background-size: cover; /* Scale the image to cover the entire area */
    width: 100%; /* Full width */
    height: 100vh; /* Full viewport height */
    position: relative; /* Ensure proper stacking context */
}

.site-header {
    position: relative;
    width: 100%;
}

.site-header figure {
    margin: 0;
    padding: 0;
}

.site-header figure img {
    max-width: 100%;
}

/*------------------------------------------------------------
## header-bar
------------------------------------------------------------*/
.site-header .header-bar {
    position: absolute;
    top: 0;
    bottom:0px
    left: 0;
    z-index: 99;
    width: 100%;
    padding: 40px 0;
}

.header-bar .site-branding {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 800;
}

.header-bar .site-branding a {
    color: hsla(180, 100%, 2%, 0.741);
    text-decoration: none;
}

/*------------------------------------------------------------
### site-navigation
------------------------------------------------------------*/
/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu {
    position: relative;
    width: 100%;
    max-width: 24px;
    height: 22px;
    margin-left: auto;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #090101;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
    top: 10px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.site-navigation {
    position: absolute;
    top: -11px;
    right: 15px;
    z-index: 9999;
    width: 100%;
    height: 22px;
    overflow: hidden;
    list-style: none;
    transition: all .35s;
    color: hsl(0, 100%, 2%);
}

.site-navigation.show {
    height: auto;
}

.site-navigation ul {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 9999;
    width: 320px;
    height: 100vh;
    overflow-x: scroll;
    padding: 30px;
    margin: 0;
    background: #050505;
    transition: all 0.35s;
}

.site-navigation.show ul {
    left: 0;
}

.site-navigation ul li {
    display: block;
    padding: 15px 0;
}

.site-navigation ul li a {
    display: block;
    color: #0a0000;
    transition: all 0.35s;
    text-decoration: none;
    font-size: 14px;
    padding-left: 40px;
}

@media screen and (min-width: 992px) {
    .header-bar .site-branding {
        margin-left: 35px;
    }

    .site-navigation {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        padding-right: 35px;
        background: transparent;
    }

    .site-navigation ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: auto;
        background: transparent;
    }

    .site-navigation ul li {
        padding: 0;
    }

    .site-navigation ul li:nth-last-of-type(1) {
        padding-left: 2px;
    }

    .site-navigation ul li a {
        color: #070000;
    }
}

/*------------------------------------------------------------
# hero
-----------------------------------------------------------*/
.hero-content {
    padding: 220px 0;
    background: url("images/new.jpg") no-repeat;
    background-size: cover;
}

@media screen and (min-width:410px) and (max-width:750px) {
    .hero-content {
        background: url("images/new.jpg") no-repeat;
        background-size: auto;
        
    }
}

.hero-content .entry-header {
    position: relative;
    text-align: center;
}

.hero-content .entry-header h2 {
    padding: 50px;
    margin: 0;
    font-family: mountains;
    font-size:120px;
    background: -webkit-linear-gradient(#e51c1c, #01140c);
    -webkit-background-clip: text;
   /* -webkit-text-fill-color: transparent;*/
}

.hero-content .entry-header .entry-meta-date {
    position: absolute;
    width: 100%;
    top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: hsl(0, 0%, 90%);
    text-align: center;
}

@media screen and (min-width: 992px) {
    .hero-content .entry-header h2 {
        font-size: 90px;
    }

    .hero-content .entry-header .entry-meta-date {
        top: 60px;
    }
}

/*------------------------------------------------------------
## countdown
------------------------------------------------------------
.countdown {
    margin-top: 40px;
}

.countdown-holder {
    min-width: 150px;
    margin-bottom: 30px;
}

.countdown-holder .dday,
.countdown-holder .dhour,
.countdown-holder .dmin,
.countdown-holder .dsec {
    display: block;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    color: hsl(0, 0%, 100%);
}

.countdown-holder label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}*/

/*------------------------------------------------------------
## hero-content entry-footer
------------------------------------------------------------*/
.hero-content .entry-footer {
    margin-top: 125px;
    text-align: center;
}

.hero-content .entry-footer .btn {
    background: hsl(0, 0%, 100%);
    padding: 16px 40px;
    border-radius: 0;
    margin-right: 20px;
    color: hsl(0, 0%, 17%);
    font-weight: 600;
}

.hero-content .entry-footer a:hover, .hero-content .entry-footer .current {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    color: hsl(0, 0%, 0%);
}

/*------------------------------------------------------------
# The Lineup Artists - Headliners
------------------------------------------------------------*/
.content-section {
    width: 100%;
    padding-bottom: 120px;
    background: url("images/newRed2.png") no-repeat;
    background-size: 100% auto;
}

@media  screen and (min-width:410px) and (max-width:750px) {
    .content-section {
        width: 100%;
        height: auto;
        background: url("images/newRed2.png") no-repeat;
    }
    
}

/* Base styles */
.content-section {
    width: 100%;
    height: auto;
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center;
    background-repeat: no-repeat;
}

/* Small devices (phones) */
@media screen and (max-width: 409px) {
    .content-section {
        background-image: url("images/newRed2.png");
    }
}

/* Medium devices (small tablets) */
@media screen and (min-width: 410px) and (max-width: 750px) {
    .content-section {
        background-image: url("images/newRed2.png");
    }
}

/* Large devices (large tablets and desktops) */
@media screen and (min-width: 751px) and (max-width: 1200px) {
    .content-section {
        background-image: url("images/newRed2.png");
    }
}

/* Extra large devices (large desktops) */
@media screen and (min-width: 1201px) {
    .content-section {
        background-image: url("images/newRed2.png");
    }
}

.content-section .middle-cover {
    margin: 0;
    padding: 0;
    position: relative;
}

.content-section .middle-cover img {
    max-width: 100%;
}

/*------------------------------------------------------------
## lineup-artists-headline
------------------------------------------------------------*/
.lineup-artists-headline {
    margin-top: 115px;
}

.lineup-artists-headline .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 48%);
}

.lineup-artists-headline .entry-title h2 {
    width: 100%;
    font-size: 48px;
    font-weight: 600;
}

/*------------------------------------------------------------
## lineup-artists
------------------------------------------------------------*/
.lineup-artists {
    padding-top: 80px;
}

.lineup-artists .featured-image {
    margin: 0;
    padding: 0;
}

.lineup-artists .featured-image {
    width: 100%;
}

.lineup-artists .featured-image img {
    width: 100%;
    max-width: 100%;
}

/*------------------------------------------------------------
### lineup-artists-wrap
------------------------------------------------------------*/
.lineup-artists .lineup-artists-wrap {
    margin-top: 80px;
}

.lineup-artists .lineup-artists-wrap .lineup-artists-description {
    position: relative;
    width: 100%;
}

.lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
    position: relative;
    padding: 30px;
    background: hsl(0, 0%, 100%);
    box-shadow: 50px 40px 115px rgba(0, 0, 0, 0.1);
}

.lineup-artists-description .entry-title {
    font-size: 30px;
    font-weight: 600;
    color: hsl(0, 0%, 9%);
}

.lineup-artists-description .entry-content {
    margin-top: 20px;
    font-size: 15px;
    color: hsl(0, 0%, 60%);
    line-height: 2;
}

.lineup-artists-wrap .box-link {
    position: absolute;
    margin: 0;
    padding: 0;
    top: -24px;
    right: 50px;
    z-index: 999;
}

/* Responsive Background Images */
@media (max-width: 1200px) {
    .hero-content {
        padding: 150px 0;
        background-position: center center;
        background-size: cover;
    }

    .hero-content .entry-header h2 {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 100px 0;
        background-position: center center;
        background-size: cover;
    }

    .hero-content .entry-header h2 {
        font-size: 60px;
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .header-bar .site-branding {
        font-size: 24px;
    }

    .hero-content {
        padding: 70px 0;
        background-position: center center;
        background-size: cover;
    }

    .hero-content .entry-header h2 {
        font-size: 40px;
    }

    .lineup-artists .featured-image {
        max-width: 100%;
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description {
        width: 100%;
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .header-bar {
        padding: 20px 0;
    }

    .hero-content {
        padding: 50px 0;
        background-position: center center;
        background-size: cover;
    }

    .hero-content .entry-header h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 10px;
        margin: 15px 0;
    }

    .contact-form .form-control {
        margin-bottom: 8px;
    }
}

@media screen and (min-width: 768px) {
    .lineup-artists .lineup-artists-wrap {
        margin-top: 30px;
    }

    .lineup-artists .featured-image {
        max-width: 360px;
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description {
        width: calc(100% - 360px);
    }

    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        position: absolute;
        z-index: 99;
        top: 140px;
        left: -75px;
        width: calc(100% + 75px);
    }

    .lineup-artists .lineup-artists-wrap:nth-of-type(even) .lineup-artists-description-container {
        right: -75px;
        left: auto;
    }

    .lineup-artists .lineup-artists-wrap:nth-of-type(even) .box-link {
        right: auto;
        left: 50px;
    }
}

@media screen and (min-width: 992px) {
    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        padding: 50px;
    }
}


@media screen and (min-width: 1200px) {
    .lineup-artists .lineup-artists-wrap .lineup-artists-description-container {
        max-width: 660px;
    }

    .lineup-artists .lineup-artists-wrap:nth-last-of-type(1) {
        margin-left: 80px;
    }
}

/*------------------------------------------------------------
# the-complete-lineup
------------------------------------------------------------*/
.the-complete-lineup {
    margin-top: 115px;
}

.the-complete-lineup .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 48%);
}

.the-complete-lineup .entry-title h2 {
    width: 100%;
    margin: 0;
    font-size: 48px;
    font-weight: 600;
}

/*------------------------------------------------------------
## the-complete-lineup-artists
------------------------------------------------------------*/
.the-complete-lineup-artists {
    position: relative;
    margin-top: 110px;
    height: auto;
}

.the-complete-lineup-artists .artist-single {
    margin-bottom: 0px;
}

.the-complete-lineup-artists .artist-single:nth-of-type(even) {
    margin-top: 120px;
}

.the-complete-lineup-artists .artist-single figure {
    margin: 0;
    padding: 0;
    width: 100%;
}

.the-complete-lineup-artists .artist-single .box-link {
    position: absolute;
    top: 15px;
    left: 232px;
    cursor: pointer;
}

.the-complete-lineup-artists .artist-single .featured-image img {
    max-width: 100%;
    height: auto;
    width: 255px;
}

.the-complete-lineup-artists .artist-single .featured-image a {
    display: block;
}

.the-complete-lineup-artists .artist-single h2 {
    margin-top: 38px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .the-complete-lineup-artists .artist-single:nth-child(6) {
        margin-top: 0;
    }
}


@media screen and (min-width: 1200px) {
    .the-complete-lineup-artists .artist-single:nth-child(1) {
        margin-top: 2px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(2) {
        margin-top: 90px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(3) {
        margin-top: 48px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(4) {
        margin-top: 0;
    }

    .the-complete-lineup-artists .artist-single:nth-child(5) {
        margin-top: 75px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(6) {
        margin-top: 165px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(7) {
        margin-top: 25px;
    }

    .the-complete-lineup-artists .artist-single:nth-child(8) {
        margin-top: 75px;
    }
}

/*------------------------------------------------------------
# see the-complete-lineup button
------------------------------------------------------------*/
.see-complete-lineup {
    margin-top: 105px
}

.see-complete-lineup .entry-footer .btn {
    padding: 15px 35px;
    border-radius: 0;
    margin-right: 20px;
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    font-weight: 500;
}

.see-complete-lineup .entry-footer a {
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

/*------------------------------------------------------------
# homepage-next-events
------------------------------------------------------------*/
.homepage-next-events {
    margin-top: 100px;
}

.homepage-next-events .entry-title p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: hsl(0, 0%, 48%);
}

.homepage-next-events .entry-title h2 {
    width: 100%;
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #000000;
}

/*------------------------------------------------------------
## .next-event-slider
------------------------------------------------------------*/
.next-event-slider-wrap {
    position: relative;
}

.next-event-slider {
    margin-top: 110px;
}

.next-event-slider .featured-image {
    display: block;
    margin: 0;
    position: relative;
}

.next-event-slider .featured-image img {
    display: block;
    width: 100%;
}

.next-event-slider .entry-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,.75);
    text-decoration: none;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.next-event-slider .featured-image:hover .entry-content {
    opacity: 1;
    visibility: visible;
}

.next-event-slider .entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

.next-event-slider .entry-content p {
    font-size: 14px;
    color: hsl(0, 0%, 100%);
}

.next-event-slider-wrap .swiper-button-next {
    top: auto;
    bottom: -21px;
    right: auto;
    left: 50%;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    background: transparent;
}

.next-event-slider-wrap .swiper-button-next img {
    width: 100%;
}

@media screen and (min-width: 768px){
    .next-event-slider-wrap .swiper-button-next {
        bottom: -42px;
        width: 84px;
        height: 84px;
        margin-left: -42px;
    }
}













/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
  }
  
  #footer .footer-top {
    background: #151515;
    border-bottom: 1px solid #222222;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  #footer .footer-top .footer-info h3 span {
    color: #ff5151;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    font-size: 25px;
    display: inline-block;
    background: #292929;
    color: #fff;
    line-height: 1;
    padding: 12px 0;
    margin-right: 4px;
    margin-left: 40px;
    border-radius: 5px;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    margin-top:71px;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #e30000;
    color: #151515;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 35px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ff5151;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #ff5151;
  }
  
  
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  
  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }

  .whatsapp-button {
    position: fixed;
    bottom: 75px;
    right: 25px;
    z-index: 100;
    background-color: #25d366;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    animation: effect 5s infinite ease-in;
  }
  
  .whatsapp-button img {
    width: 50px;
    height: 50px;
    object-fit: cover;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 50%;
    margin: 11px auto;
    margin-left: 200px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 60px;
  }
  
  @media screen and (min-width:410px) and (max-width:750px) {
    .contact-form{
        margin-left: 54px;
    }
  }
  .control-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    border: 2px solid red;
    border-radius: 51px;
    
    display: block;
    width: 120%;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #202425;
    background-color: #ffffff;
  }
  
  .form-control:focus {
    outline: none;
    box-shadow: 0 0 2px 1px #fff;
  }
  
  .btn {
    background-color:red;
    color: #333;
    border: none;
    border-radius: 51px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 92px;
    margin-left: 3px;
  }
  
  .btn:hover {
    background-color: #333;
    color: #fff;
  }
  
  .help-block {
    color: #red;
    font-size : 12px;
    margin-top : 5px;
  }


  .call-button {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 23px; /* Adjust as needed */
    background-color: #ff5151;
    color: white;
    padding: 10px 24px;
    padding-right: 26px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 3.5%;
    z-index: 999; /* Ensure it's above other elements */
  }
  
  .call-button:hover {
    background-color: #0056b3;
  }
  
  #typed-text {
    border-right: .1em solid #000;
    white-space: nowrap;
    overflow: hidden;
    animation: caret 0.75s step-end infinite;
}

@media (max-width:760px) and (min-width:400px){
    #typed-text{
        size:auto;
    }
}
@keyframes caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: rgba(255, 255, 255, 0);
    }
}
/*------new------*/
body {
    font-family: Arial, sans-serif;
}

.site-header {
    margin-bottom: 30px;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(1, 1, 1, 0.52);
    max-width: 600px;
    margin: 0 auto; /* Center the form */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.contact-form .control-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    width: 100%; /* Ensure the inputs take the full width of their container */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 25px; /* Make inputs rounded */
}

.contact-form .button-wrapper {
    text-align: center; /* Center the button container */
    margin-top: 20px; /* Add margin for spacing */
}

.contact-form button {
    width: auto; /* Allow the button to size itself */
    max-width: 150px; /* Limit the max width of the button */
    padding: 8px 30px; /* Smaller padding for the button */
    font-size: 14px; /* Slightly smaller font size */
    background-color: #ff0000; /* Red background color */
    color: #fff;
    border: none;
    border-radius: 25px; /* Make button rounded */
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #cc0000; /* Darker red on hover */
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form .form-control {
        font-size: 14px;
        padding: 8px;
    }

    .contact-form button {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 15px;
    }

    .contact-form .form-control {
        font-size: 14px;
        padding: 8px;
    }

    .contact-form button {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 10px;
    }

    .contact-form .form-control {
        font-size: 12px;
        padding: 6px;
    }

    .contact-form button {
        font-size: 12px;
        padding: 6px;
    }
}

@media (max-width: 420px) {
    .contact-form {
        padding: 10px;
        margin-left: 10px; /* Adjust margin to ensure it fits smaller screens */
        margin-right: 10px; /* Adjust margin to ensure it fits smaller screens */
    }

    .contact-form .form-control {
        font-size: 12px;
        padding: 6px;
    }

    .contact-form button {
        font-size: 12px;
        padding: 6px;
    }
}

@media (max-width: 300px) {
    .contact-form {
        padding: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-form .form-control {
        font-size: 10px;
        padding: 4px;
    }

    .contact-form button {
        font-size: 10px;
        padding: 4px;
    }
}

.site-footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 30px;
}

.site-footer p {
    margin: 0;
}







