@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #6B6969;
}

.container {
  width: 90%;
  margin: auto;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Common Styles Ends here */

.coming-soon-video-div video{
    width: 100%;
    height: 100vh;
  object-fit: cover;
}

.desktop-video{
    display: block;
}

.mobile-video{
    display: none;
}


/* Footer Styles */

.footer-address-card-flex {
    display: flex;
    justify-content: space-between;
    background-color: #E8E8E8;
    padding: 3rem 5rem;
    align-items: center;
}

.footer-card{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-card img{
    width: 100%;
}

.footer-card p{
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: var(--black);
}

.footer-copyrights{
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 5rem;
    background-color: #DBDBDB;
}

.footer-card a{
    font-size: 24px;
    font-weight: 600;
}

.footer-copyrights p{
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
}