:root {
    --white: #fff;
    --black: #000;
    --red-color: #f00;
    --grey: #999;
    --heading-font: "Roboto", sans-serif;
}
body {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    background-color: var(--black);
}
body *:last-child {
    margin-bottom: 0;
}
a {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    line-height: normal;
    text-transform: capitalize;
    transition: all 0.3s ease;
}
a:hover {
    color: #AF1E23;
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}
p.medium {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--heading-font);
    text-align: center;
}
p.large {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/* COMING SOON PAGE STYPE */
.coming-soon-bg {
    background-image: url(../img/coming-soon-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.coming-soon-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    padding: 32px 0;
    gap: 32px;
}
.coming-soon-bg  a.logo {
    max-width: 311px;
}
.coming-soon-bg  a.location {
    padding: 2px 8px 2px 2px;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 44px;
    background: rgba(255, 255, 255, 0.05);
}
.coming-soon-bg  a.location img {
    margin-right: 12px;
}
nav.navmenu {
    width: 100%;
}
nav.navmenu ul {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
nav.navmenu ul li a {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.5;
    padding: 8px;
    cursor: pointer;
    text-transform: uppercase;
}
.coming-soon-bg h1 {
    font-size: 128px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}
.coming-soon-bg h1 span {
    color: #AF1E23;
}
.coming-soon-bg .large-heading-area a {
    border-radius: 1px;
    border: 1px solid #FFF;
    padding: 3px 7px;
    margin-left: 8px;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 500;
}
.coming-soon-bg .large-heading-area a:hover {
    border-color: #AF1E23;
}
.coming-soon-bg .large-heading-area p {
    display: inline-block;
    padding: 4px 8px;
}
.coming-soon-bg .right-embed-area {
    display: flex;
    flex-direction: column;
    max-width: max-content;
    margin-left: auto;
}
.coming-soon-content .video-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 24px;
    margin-top: 12px;
}
.coming-soon-content .single-embed-video {
    position: relative;
    border-radius: 8px;
    background: #333;
    box-shadow: 8px 16px 24px 0 rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: inline-block;
}
.coming-soon-content .single-embed-video a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    line-height: 0;
    padding: 8px;
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.50);
    cursor: pointer;
    border: none;
}
.coming-soon-content .video-container .img-with-play-btn a svg {
    width: 30px;
    height: 30px;
    transform: translateX(3px);
}
