body{
background-color: black;
margin: 0px;
overflow-x: hidden;
}

a{
text-decoration: none;
}


/* Header */
/* Header */
/* Header */

header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 100px 25px 20px;
}

.HeaderOne,.HeaderTwo{
display: flex;
}

.HeaderTwo{
gap: 40px;
}

.HeaderText,.HeaderLogoText{
font-family: "Oswald", sans-serif;
font-weight: 700;
font-size: 1.35rem;
color: white;
margin: 0px;
}

.HeaderText{
cursor: pointer;
}

.HeaderText:hover{
color: red;
}

.HeaderText:active{
color: rgb(200, 0, 0);
}

.SpanLogoText{
color: red;
font-size: 1.2rem;
}


/* Main */
/* Main */
/* Main */

.MainTitleText{
display: flex;
justify-content: center;
gap: 15px;
color: white;
font-family: "Bebas Neue", sans-serif;
font-size: 5rem;
font-weight: 500;
letter-spacing: 2px;
margin: 0px;
padding: 20px 0px 0px 0px;
text-align: center;
}

.TitleSpanText{
color: red;
}

main{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding: 30px 200px 30px 200px;
gap: 30px;
}

.MainCard{
display: flex;
flex-direction: column;
padding: 30px;
border: 2px solid white;
border-radius: 20px;
}

.CardSectionOne{
display: flex;
flex-direction: column;
align-items: center;
}

.CardSectionTwo,.CardSectionThree,.CardSectionFour{
display: flex;
align-items: center;
gap: 5px;
margin: 20px 0px 0px 0px;
}

.UpperImage{
width: 100px;
height: auto;
}

.MainCardTitle{
font-family: "Oswald", sans-serif;
font-weight: 700;
font-size: 2rem;
color: white;
margin: 6px 0px 0px 0px;
text-align: center;
}

.SubText{
font-family: "Inter", sans-serif;
font-weight: 600;
font-size: 1rem;
color: red;
margin: 4px 0px 0px 0px;
text-align: center;
}

.CalendarImg{
width: 50px;
height: auto;
}

.DropInImg{
width: 50px;
height: auto;
}

.LowerSectionText{
color: white;
margin: 0px;
font-size: 1.5rem;
font-family: "Inter", sans-serif;
font-weight: 700;
}

.CostText{
color: red;
font-size: 1.5rem;
font-family: "Oswald", sans-serif;
font-weight: 700;
letter-spacing: 2px;
margin-left: auto;
}

.CostTextOne,
.CostTextTwo,
.CostTextThree,
.CostTextFour,
.CostTextFive,
.CostTextSix,
.CostTextSeven{
margin-right: 0px;
}

.RedBooking{
display: flex;
width: fit-content;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
background-color: transparent;
border-radius: 10px;
border: red solid 3px;
color: red;
font-family: "Oswald", sans-serif;
font-weight: 600;
font-size: 1.3rem;
padding: 20px;
cursor: pointer;
box-shadow: 0 0 6px 1px rgba(255, 100, 100, 0.4), 0 10px 12px rgba(255, 70, 70, 0.25);
}

.RedBooking:hover{
filter: brightness(80%);
}

.RedBooking:active{
transform: translateY(3px);
filter: brightness(60%);
}


/* Footer */
/* Footer */
/* Footer */

footer{
display: flex;
padding: 35px;
border-top: solid 1px rgb(110, 110, 110);
margin: 25px 0px 0px 0px;
}

.FootSectionOne{
display: flex;
}

.FootSectionOne,.FootSectionTwo{
border-right: solid 1px rgb(110, 110, 110);
}

.FootSectionOne{
align-items: center;
padding: 0px 30px 0px 0px;
}

.LionIcon{
width: 150px;
height: auto;
flex-shrink: 0;
}

.InstaIcon{
width: 30px;
height: auto;
}

.SectionOneText{
color: white;
font-family: "Inter", sans-serif;
font-size: 1.3rem;
font-weight: 500;
margin: 0px;
}

.FootSectionTwo{
padding: 10px 120px 0px 20px;
}

.QuickLinkText{
color: white;
font-family: "Inter", sans-serif;
font-size: 1.4rem;
font-weight: 600;
margin: 0px;
}

.SectionTwoText{
color: white;
font-family: "Inter", sans-serif;
font-size: 1rem;
font-weight: 500;
margin: 3px 0px 0px 0px;
}

.FootSectionThree{
padding: 10px 0px 0px 20px;
}

.ContactText{
color: white;
font-family: "Inter", sans-serif;
font-size: 1rem;
font-weight: 500;
margin: 3px 0px 0px 0px;
overflow-wrap: anywhere;
}

.ContactUsText{
color: white;
font-family: "Inter", sans-serif;
font-size: 1.4rem;
font-weight: 700;
margin: 0px;
}

.MailImg,.PhoneImg,.LocImg{
width: 30px;
height: auto;
flex-shrink: 0;
}

.InnerSection{
display: flex;
align-items: center;
gap: 10px;
padding: 10px 0px 0px 0px;
}


/* Laptop */
/* Laptop */
/* Laptop */

@media(max-width: 1200px){

header{
padding: 25px 35px 25px 20px;
}

.HeaderTwo{
gap: 24px;
}

main{
padding: 30px 70px;
gap: 25px;
}

.MainCard{
padding: 25px;
}

.FootSectionTwo{
padding: 10px 60px 0px 20px;
}

}


/* Tablet */
/* Tablet */
/* Tablet */

@media(max-width: 900px){

header{
flex-direction: column;
justify-content: center;
align-items: center;
padding: 22px 20px;
gap: 18px;
}

.HeaderOne{
justify-content: center;
text-align: center;
}

.HeaderTwo{
width: 100%;
justify-content: center;
flex-wrap: wrap;
gap: 14px 28px;
}

.HeaderText{
font-size: 1.1rem;
}

.MainTitleText{
font-size: 4rem;
padding: 25px 20px 0px 20px;
}

main{
grid-template-columns: 1fr 1fr;
padding: 30px 40px;
gap: 25px;
}

.MainCard:last-child{
grid-column: 1 / -1;
width: calc(50% - 12.5px);
justify-self: center;
box-sizing: border-box;
}

footer{
flex-direction: column;
padding: 30px 25px;
}

.FootSectionOne,.FootSectionTwo{
border-right: none;
border-bottom: solid 1px rgb(110, 110, 110);
}

.FootSectionOne{
padding: 0px 0px 25px 0px;
}

.FootSectionTwo{
padding: 25px 0px;
}

.FootSectionThree{
padding: 25px 0px 0px 0px;
}

}


/* Mobile */
/* Mobile */
/* Mobile */

@media(max-width: 600px){

header{
padding: 20px 15px;
}

.HeaderLogoText{
font-size: 1.15rem;
}

.SpanLogoText{
font-size: 1rem;
}

.HeaderTwo{
gap: 10px 18px;
}

.HeaderText{
font-size: 0.95rem;
}

.MainTitleText{
display: block;
text-align: center;
font-size: 3rem;
line-height: 1.1;
padding: 35px 15px 20px 15px;
}

.TitleSpanText{
display: block;
margin-top: 5px;
}

main{
grid-template-columns: 1fr;
padding: 20px 18px 30px 18px;
gap: 22px;
}

.MainCard{
width: 100%;
box-sizing: border-box;
padding: 28px 24px;
}

.MainCard:last-child{
grid-column: auto;
width: 100%;
justify-self: stretch;
}

.UpperImage{
width: 90px;
}

.MainCardTitle{
font-size: 1.8rem;
}

.SubText{
font-size: 0.95rem;
}

.CardSectionTwo,.CardSectionThree,.CardSectionFour{
width: 100%;
}

.LowerSectionText{
font-size: 1.25rem;
}

.CostText{
font-size: 1.35rem;
margin-left: auto;
}

.CalendarImg,.DropInImg{
width: 43px;
}

.RedBooking{
font-size: 1.1rem;
padding: 16px 20px;
margin-top: 20px;
}

footer{
padding: 25px 18px;
}

.FootSectionOne{
flex-direction: column;
align-items: flex-start;
gap: 15px;
}

.LionIcon{
width: 120px;
}

.SectionOneText{
font-size: 1rem;
line-height: 1.55;
}

.QuickLinkText,.ContactUsText{
font-size: 1.2rem;
}

.SectionTwoText,.ContactText{
font-size: 0.95rem;
}

}


/* Small Mobile */
/* Small Mobile */
/* Small Mobile */

@media(max-width: 400px){

.HeaderTwo{
gap: 9px 14px;
}

.HeaderText{
font-size: 0.88rem;
}

.MainTitleText{
font-size: 2.7rem;
padding-left: 12px;
padding-right: 12px;
}

main{
padding-left: 14px;
padding-right: 14px;
}

.MainCard{
padding: 25px 20px;
}

.MainCardTitle{
font-size: 1.65rem;
}

.LowerSectionText{
font-size: 1.15rem;
}

.CostText{
font-size: 1.25rem;
}

}