/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Open+Sans:wght@400;600&display=swap');

/* Importing Conthrax SemiBold font */
@font-face {
    font-family: 'Conthrax SemiBold';
    src: url('../fonts/conthraxsemibold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply fonts to different text elements */
h1 {
    font-family: 'Conthrax SemiBold', sans-serif;
}

h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

body {
    font-family: 'Open Sans', sans-serif;
}

/* Color Palette */
:root {
    --primary-color: #FF0000; /* Red */
    --secondary-color: #870005; /* Dark Red */
    --second-secondary-color: #000000; /* Black */
    --main-bg-color: #FFFFFF; /* White */
}


/* Header */
.header {
    position: relative;
    height: 20vh;
}

.header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%);*/
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* To make changes to Header Background Image*/
.header .diamond-plate-header {
    width: 100vw;
    height: 20vh; /*160*/
    object-fit: cover;
    user-select: none;
}

/* To make changes to Logo
.header .logo {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 15.5vw;
    height: auto;
    z-index: 2;
    min-width: 230px;
}*/

.header .logo {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translate(-50%, -50%);
    width: clamp(8rem, 22vw, 18rem);
    height: auto;
    max-width: 90vw;
    max-height: 90%;
    z-index: 2;
}

/* To make changes to Positions of Navigation Links */
.header .nav-links-container {
    position: absolute;
    top: 60%;
    right: 10%;
    z-index: 2;
}

.header .nav-links {
    display: flex;
    gap: 10px;
}


/* To make changes to Button of Navigation Links */
.header .nav-links a {
    color: black;
    border: none;
    text-decoration: none;
    margin-left: 15px;
}

/* To make changes to Hover Effect of Button */
.header .nav-links a:hover {
    color: var(--primary-color);
}

/* To make changes to Units Available Now Button */
.header .units-available-container {
    position: absolute;
    top: 20%;
    right: 9%;
    padding: 5px 15px;
    border-radius: 19px;
    color: white;
    z-index: 2;
}

.header .units-available {
    background-color: var(--primary-color);
    color: var(--main-bg-color);
    border: none;
    border-radius: 12px;
    padding: 5px 15px;
}

.header .units-available:hover {
    background-color: var(--secondary-color);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-label {
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.dropdown-menu-1 {
    display: none;
    position: absolute;
    background-color: lightgrey;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 20px 0;
    margin: 0;
    z-index: 1000;
    width: 200px;
    margin-top: 5px;
}

.dropdown-menu-1 li {
    padding: 5px 20px;
}

.dropdown-menu-1 li a {
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown-menu-1 li a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu-1 {
    display: block;
}

.dropdown-label i {
    margin-left: 5px;
    font-size: 15px; /* Adjust size as needed */
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-label i {
    transform: rotate(180deg); /* Optional: Rotate icon on hover */
}

.dropdown.active .dropdown-menu-1 {
    display: block;
}

/* Section with Two Columns */
/*.two-column-section {
    display: flex;
    margin-bottom: 365px;
}*/

/* To make changes to Left Column */
.column-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    color: white;
    height: 300px;
}

.column-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1b1f25, rgba(255,0,0,0.65));
    z-index: 1;
}

.column-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: right;*/
    z-index: 0;
    position: absolute;
    filter: blur(5px);
}

/* To make changes to Left Overlay  */
.overlay-text {
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: var(--main-bg-color);
    font-weight: bold;
    text-align: center;*/

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    color: var(--main-bg-color);
    font-weight: bold;
    text-align: center;
    width: 100%;
    left: -6%;
    padding: 0 20px;
}

.overlay-text .overlay-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.overlay-text h3 {
    font-size: 55px;
    margin-bottom: 25px;
}

.overlay-text h4 {
    font-size: 30px;
    color: var(--main-bg-color);
    text-decoration: none;
    margin: 0;
}

.overlay-text h4 a {
    /*font-size: 30px;*/
    color: var(--main-bg-color);
    text-decoration: none;
}

.overlay-text h4 a:hover {
    /*color: var(--primary-color);*/
    text-decoration: underline;
}

.overlay-text button1 {
    /*background-color: var(--primary-color);*/
    /*border: none;*/
    /*padding: 5px 15px;*/
    margin-left: 50px;
    /*border-radius: 12px;*/
}

.overlay-text button1 a {
    color: var(--main-bg-color);
    text-decoration: none;
    font-size: 28px;
}

.overlay-text .containers {
    flex: 1;
    margin: 0;
    display: flex;
    justify-content: space-between;
    margin-left: -4%;

}

/* To make changes to Container */
.containers {
    /*display: flex;*/
    /*margin-top: 40px;*/
    /*justify-content: space-between;*/
    /*border: 2px solid var(--main-bg-color);*/
    /*width: 150%;*/
    /*margin-left: -25%;*/
}

/*.containers h4 {
    font-size: 35px;
    font-weight: semi-bold;
    text-decoration: underline;
}*/

/* .column-left, .column-right {
    flex: 1;
    padding-top: 20px; /* Adjust as needed
}*/

/* To make changes to Container's Left Column */
.column-left {
    display: flex;
    /*flex-direction: row;*/
    text-align: left;
    /*border: 2px solid var(--main-bg-color);*/
    /*margin-bottom: 20px;*/
}

.column-left-0, .column-left-1, .column-left-2 {
    flex: 1;
    /*padding: 0px 60px 0 0;*/
}

.column-left-0 {
    border-right: 2px solid var(--main-bg-color);
    padding-right: 50px;
}

.column-left-1 {
    /*border-right: 2px solid var(--main-bg-color);*/
    padding-left: 30px;
    padding-right: 30px;
}

.column-left-2 {
    /*text-align: right;*/
    /*border-left: 2px solid var(--main-bg-color);*/
    padding-left: 25px;
}

/*.column-left-1 h4 {
    font-size: 35px;
    font-weight: semi-bold;
    margin-bottom: 40px;
}*/

.column-left h5 {
    margin-bottom: 20px;
    font-size: 30px;
    white-space: nowrap;
}

.column-left p {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--main-bg-color);
    text-decoration: none;
}

.column-left p a {
    color: var(--main-bg-color);
    text-decoration: none;
}

.column-left p a:hover {
    text-decoration: underline;
}

/* To make changes to Container's Right Column */
.column-right {
    /*text-align: right;*/
    display: flex;
    justify-content: center;
    /*border: 2px solid var(--main-bg-color);*/
}

/* To make changes to Social Icons in Container's Right Column  */
.social-icon-right {
    display: inline;
    list-style-type: none;
}

.social-icon-right li {
    margin-bottom: 10px;
}

.social-icon-right .text {
    text-decoration: none;
    color: var(--main-bg-color);
}

.social-icon-right .icons {
    color: var(--main-bg-color);
    display: inline-block;
    border: 4px solid var(--main-bg-color);
    font-size: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icon-right li:nth-child(1) i {
    padding-top: 10px;
    /*padding-bottom: 15px;*/
    padding-left: 13px;
    /*padding-right: 15px;*/
    background-color: #4b56ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.social-icon-right li:nth-child(2) i {
    padding-top: 10px;
    /*padding-bottom: 15px;*/
    padding-left: 11px;
    /*padding-right: 21px;*/
    background-color: #ff336e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.social-icon-right li:nth-child(3) i {
    padding-top: 10px;
    /*padding-bottom: 15px;*/
    padding-left: 9px;
    /*padding-right: 17px;*/
    background-color: #c52222;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* To make changes to Right Column */
/* .column-2 {
    position: relative;
    width: 50%;
}

.column-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.83), rgba(0,0,0,0.83));
    z-index: 1;
}

.column-2 img {
    width: 100%;
    height: 190%;
    object-fit: cover;
    z-index: 0;
}

/* To make changes to Right Overlay
.overlay {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: var(--main-bg-color);
    text-align: center;
}

.overlay img {
    width: 80%;
    margin-bottom: 30px;
}

.overlay button {
    background-color: var(--primary-color);
    border: none;
    padding: 5px 15px;
}

.overlay a {
    color: var(--main-bg-color);
    text-decoration: none;
    font-size: 25px;
}

.overlay button:hover {
    background-color: darkred;
} */


/* Footer
.footer {
    clear: both;
    z-index: 2;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 1;
}

/* To make changes to Footer Background Image
.footer img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    user-select: none;
}

.footer-content {
    position: absolute;
    top: 20%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--second-secondary-color);
    text-align: center;
    z-index: 2;
}

.footer-left {
    flex: 0.57;
    text-align: center;
}

.footer-right {
    position: absolute;
    display: flex;
    align-items: center;
    left: 60%;
    text-align: center;
}

.footer-right a {
    color: var(--second-secondary-color);
    text-decoration: none;
}

.footer-right a:hover {
    color: var(--primary-color);
}

.footer .social-icons {
    position: absolute;
    right: 20%;
    gap: 5px;
    align-items: center;
}

.social-icons a {
    color: var(--main-bg-color);
    background-color: var(--primary-color);
    padding: 7px;
    border-radius: 5px;
}*/

.nav-links.dropdown-menu {
    display: none;
}
.nav-links.dropdown-menu.active {
    display: block;
}

.footer {
    position: relative;
    width: 100%;
    background-image: linear-gradient(180deg, #000000 10%, rgba(255, 0, 0, 0.65) 100%), url('/static/images/Footer Image.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4% 0 0 0;
    border-bottom: 2px solid #0077FF;
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 2;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.footer-left {
    /*flex: 0.5;*/
    text-align: left;
}

.footer-left .logo {
    /*width: 50vh;
    max-width: 100%;
    height: auto;
    margin-left: 15%;
    margin-top: 10%;*/
    width: clamp(120px, 28vw, 320px);
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: 15%;
    margin-top: 10%;
    line-height: 0;
    position: relative;
}

.footer-right {
    /*flex: 1.5;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-right: 10%;
    margin-top: -1.5%;
    /*border: 2px solid #0077FF;*/
}

.footer-columns {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.footer-column {
    min-width: 180px;
}

.footer-column h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-column .under-header {
    margin-top: 20%;
}

.footer-column p,
.footer-column a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

/*.footer-column a:hover {
    color: #0077FF;
    text-decoration: underline;
}*/

.social-icons {
    display: flex;
    gap: 3%;
    margin: 28% 0 0 0;
    align-items: center;
    justify-content: center;
    /*border: 2px solid #0077FF;*/
    width: 100%;
}

.social-icons a img {
    width: 30%;
    height: 30%;
    border-radius: 6px;
    transition: box-shadow 0.2s;
}

/*.social-icons a:hover img {
    box-shadow: 0 0 8px #0077FF;
}*/

/*************************************************** Media Queries ****************************************************/
img {
    max-width: 100%;
    height: auto;
}

.burger-icon {
    display: none;
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 6.5vh;
    right: 15%;
    z-index: 3;
    color: var(--primary-color);
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    top: 12.5vh;
    right: 15%;
    background-color: var(--main-bg-color);
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 3;
    margin-right: 0;
}


.dropdown-toggle {
    background: var(--main-bg-color);
    border: none;
}


/* Media Queries for different screen sizes */
@media (max-width: 1251px) {

    .burger-icon {
        display: block;
    }

    .nav-links-container {
        display: none;
    }

    .header .logo {
        width: 30vw;
        min-width: 230px;
        height: auto;
        left: 25%;
    }

    .header .diamond-plate-header {
        height: 17vh;
    }

    .header .units-available-container {
        top: 38%;
        right: 20%;
        /*display: none;*/
    }

    .header .dropdown-menu a {
        margin-bottom: 10px;
        right: 0;
    }

    /*.overlay-text {
        left: -6%;
        /*padding: 0 20px;
    }

    .overlay-text h3 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .overlay-text .overlay-header h4 {
        font-size: 20px;
        margin: 0;
        /*margin-left: -20px;
    }

    .overlay-text button1 a {
        font-size: 20px;
    }

    .overlay-text .containers {
        margin-left: -2%;
        /*border: 2px solid var(--main-bg-color);
    }

    .column-left-0 {
        padding-right: 20px;
    }

    .column-left-0 h4 {
        font-size: 20px;
    }

    .column-left-1 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .column-left-2 {
        padding-left: 10px;
        /*border-left: 2px solid var(--main-bg-color);
    }

    .column-left h5 {
        font-size: 20px;
        white-space: nowrap;
    }

    .column-left p {
        font-size: 14px;
    }

    .column-left p a {
        font-size: 14px;
    }

    .social-icon-right .text {
        font-size: 14px;
        margin-right: 10px;
    }

    .social-icon-right .icons {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .social-icon-right li:nth-child(1) i {
        padding: 10px 0px 0px 10px;
        width: 32px;
        height: 32px;
        line-height: 12px;
    }

    .social-icon-right li:nth-child(2) i {
        padding: 10px 0px 0px 8px;
        width: 32px;
        height: 32px;
        line-height: 12px;
    }

    .social-icon-right li:nth-child(3) i {
        padding: 10px 0px 0px 6px;
        width: 32px;
        height: 32px;
        line-height: 12px;
    }*/
}


/************************************** Media Queries for larger screens **********************************************/
@media (min-width: 1251px) and (max-width: 1532px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255, 255, 255, 0.8);
    }

    .header .logo {
        width: 20vw;
        min-width: 230px;
        height: auto;
    }

    .header .diamond-plate-header {
        height: 17vh;
    }

    .header .units-available-container {
        top: 10%;
        right: 9%;
    }

    /*.overlay-text {
        left: -2%;
    }

    .overlay-text h3 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .overlay-text h4 {
        font-size: 25px;
        margin: 0;
    }

    .overlay-text button1 a {
        font-size: 25px;
    }

    .overlay-text .containers {
        margin-left: -2%;
        /*border: 2px solid var(--main-bg-color);
    }

    .column-left-0 {
        padding-right: 20px;
    }

    .column-left-0 h4 {
        font-size: 25px;
    }

    .column-left-1 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .column-left-2 {
        padding-left: 10px;
        /*border-left: 2px solid var(--main-bg-color);
    }

    .column-left h5 {
        font-size: 25px;
        white-space: nowrap;
    }

    .column-left p {
        font-size: 17px;
    }

    .column-left p a {
        font-size: 17px;
    }

    .social-icon-right .text {
        font-size: 17px;
        margin-right: 10px;
    }

    .social-icon-right .icons {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .social-icon-right li:nth-child(1) i {
        padding: 10px 0px 0px 10px;
        width: 33px;
        height: 33px;
        line-height: 13px;
    }

    .social-icon-right li:nth-child(2) i {
        padding: 10px 0px 0px 8px;
        width: 33px;
        height: 33px;
        line-height: 13px;
    }

    .social-icon-right li:nth-child(3) i {
        padding: 10px 0px 0px 6px;
        width: 33px;
        height: 33px;
        line-height: 13px;
    }*/
}


/****************************************** Media Queries for medium screens part-1 ***********************************/
@media (min-width: 451px) and (max-width: 800px) {
    .header .logo {
        width: 20vw;
        min-width: 230px;
        height: auto;
        left: 30%;
    }

    .header .diamond-plate-header {
        height: 17vh;
    }

    /*.column-1 {
        height: 550px;
    }

    .overlay-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        top: 2%;
        left: 0%;
    }

    .overlay-text .overlay-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .overlay-text h3 {
        font-size: 40px;
        margin-bottom: 12px;
        text-align: center;
    }

    .overlay-text h4 a {
        font-size: 20px;
        margin: 0 0px;
        text-align: center;
    }

    .overlay-text .containers {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        border: none;
    }

    .column-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .column-left-0, .column-left-1, .column-left-2 {
        width: 100%;
        padding: 10px 0;
        border: none;
    }

    .column-left-0 h4 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .column-left h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .column-left p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .column-left p a {
        font-size: 16px;
    }

    .social-icon-right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .social-icon-right li {
        margin: 0 5px;
    }

    .social-icon-right .icons {
        font-size: 2.8vh;
        width: 5vh;
        height: 5vh;
    }

    .social-icon-right .text {
        font-size: 16px;
    }

    .social-icon-right li:nth-child(1) i {
        padding: 10px 2px 0px 0px;
        width: 4.2vh;
        height: 4.2vh;
        line-height: 20px;
    }

    .social-icon-right li:nth-child(2) i {
        padding: 10px 0px 0px 0px;
        width: 4.2vh;
        height: 4.2vh;
        line-height: 20px;
    }

    .social-icon-right li:nth-child(3) i {
        padding: 10px 0px 0px 0px;
        width: 4.2vh;
        height: 4.2vh;
        line-height: 20px;
    }

    .footer {
        position: relative;
        height: 22vh;
    }

    .footer img {
        width: 100%;
        height: 22vh;
        object-fit: cover;
        user-select: none;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-content .footer-right {
        position: absolute;
        display: flex;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        margin-top: 5vh
    }

    .footer-content .social-icons {
        display: flex;
        margin-top: 9vh;
        align-items: center;
        left: 40vw;

        gap: 10px;
    }*/
}

@media (min-width: 451.5px) and (max-width: 620px) {
    .header .logo {
        width: 50vw;
        left: 50%;
        transform: translateX(-50%);
        top: 4vh;
    }

    .header {
        height: 30vh; /*25vh*/
    }

    .dropdown-menu {
        top: 31.5vh; /*24.5vh*/
        right: 30%; /**All ways use this to move dropdwon menu left or right**/
    }

    .header .dropdown-menu a {
        margin-bottom: 10px;
        right: 0;
    }

    .burger-icon {
        display: block;
        position: absolute;
        top: 25vh; /*18vh*/
        left: 58%;
        transform: translateX(-50%);
        margin-top: 5px;
    }

    .header .units-available-container {
        position: absolute;
        top: 70%;             /* distance from bottom of header */
        left: 45%;               /* align center horizontally */
        transform: translateX(-40%); /* perfectly center it */
        white-space: nowrap;
    }
}


/****************************************** Media Queries for medium screens part-2 ***********************************/
@media (min-width: 800px) and (max-width: 992px) {
    .header .logo {
        width: 30vw;
        min-width: 230px;
        height: auto;
        left: 25%;
    }

    .header .diamond-plate-header {
        height: 17vh;
    }

    .header .units-available-container {
        top: 38%;
        /*right: 25%;*/
    }


    /*.column-1 {
        height: 550px;
    }

    .overlay-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        top: 2%;
        left: 0%;
    }

    .overlay-text .overlay-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .overlay-text h3 {
        font-size: 43px;
        margin-bottom: 12px;
        text-align: center;
    }

    .overlay-text h4 a {
        font-size: 23px;
        margin: 0 0px;
        text-align: center;
    }

    .overlay-text .containers {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        border: none;
    }

    .column-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .column-left-0, .column-left-1, .column-left-2 {
        width: 100%;
        padding: 10px 0;
        border: none;
    }

    .column-left-0 h4 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .column-left h5 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .column-left p {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .column-left p a {
        font-size: 17px;
    }

    .social-icon-right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .social-icon-right li {
        margin: 0 5px;
    }

    .social-icon-right .icons {
        font-size: 2.8vh;
        width: 5vh;
        height: 5vh;
    }

    .social-icon-right .text {
        font-size: 18px;
    }

    .social-icon-right li:nth-child(1) i {
        padding: 10px 2px 0px 0px;
        width: 4.2vh;
        height: 4.2vh;
        line-height: 20px;
    }

    .social-icon-right li:nth-child(2) i {
        padding: 10px 0px 0px 0px;
        width: 4.2vh;
        height: 4.2vh;
        line-height: 20px;
    }

    .social-icon-right li:nth-child(3) i {
        padding: 10px 0px 0px 0px;
        width: 4.2vh;
        height: 4.2vh;
        line-height: 20px;
    }

    .footer {
        position: relative;
        height: 22vh;
    }

    .footer img {
        width: 100%;
        height: 22vh;
        object-fit: cover;
        user-select: none;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-content .footer-right {
        position: absolute;
        display: flex;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        margin-top: 5vh
    }

    .footer-content .social-icons {
        display: flex;
        margin-top: 9vh;
        align-items: center;
        left: 45vw;

        gap: 10px;
    }*/
}

/****************************************** Media Queries for medium screens part-3 ***********************************/
@media (min-width: 992.1px) and (max-width: 1044px) {
    .header .logo {
        width: 30vw;
        min-width: 230px;
        height: auto;
        left: 25%;
    }

    .header .diamond-plate-header {
        height: 17vh;
    }

    .header .units-available-container {
        top: 38%;
        /*right: 25%;*/
    }

/*.overlay-text {
        left: -6%;
        /*padding: 0 20px;
    }

    .overlay-text h3 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .overlay-text .overlay-header h4 {
        font-size: 20px;
        margin: 0;
        /*margin-left: -20px;
    }

    .overlay-text button1 a {
        font-size: 20px;
    }

    .overlay-text .containers {
        margin-left: -2%;
        /*border: 2px solid var(--main-bg-color);
    }

    .column-left-0 {
        padding-right: 10px;
    }

    .column-left-0 h4 {
        font-size: 20px;
    }

    .column-left-1 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .column-left-2 {
        padding-left: 10px;
        /*border-left: 2px solid var(--main-bg-color);
    }

    .column-left h5 {
        font-size: 20px;
        white-space: nowrap;
    }

    .column-left p {
        font-size: 14px;
    }

    .column-left p a {
        font-size: 14px;
    }

    .column-left-0 {
        padding-right: 2px;
    }

    .social-icon-right .text {
        font-size: 14px;
        /*margin-right: 10px;
    }

    .social-icon-right .icons {
        font-size: 15px;
        width: 30px;
        height: 30px;
    }

    .social-icon-right li:nth-child(1) i {
        padding: 10px 0px 0px 6px;
        width: 22px;
        height: 22px;
        line-height: 3px;
    }

    .social-icon-right li:nth-child(2) i {
        padding: 10px 0px 0px 5px;
        width: 22px;
        height: 22px;
        line-height: 3px;
    }

    .social-icon-right li:nth-child(3) i {
        padding: 10px 0px 0px 2.5px;
        width: 22px;
        height: 22px;
        line-height: 3px;
    }*/

}
/***************************************** Media Queries for smaller screens ******************************************/
@media (max-width: 451px) {
    .header .logo {
        width: 50vw;
        left: 50%;
        transform: translateX(-50%);
        top: 4vh;
    }

    .header {
        height: 30vh; /*25vh*/
    }

    .dropdown-menu {
        top: 31.5vh; /*24.5vh*/
        right: 30%; /**All ways use this to move dropdwon menu left or right**/
    }

    .header .dropdown-menu a {
        margin-bottom: 10px;
        right: 0;
    }

    .burger-icon {
        display: block;
        position: absolute;
        top: 25vh; /*18vh*/
        left: 58%;
        transform: translateX(-50%);
        margin-top: 5px;
    }

    .header .units-available-container {
        top: 70%;
        right: 25%;
        /*display: none;*/
    }

    /*.column-1 {
        height: 500px;
    }

    .overlay-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        top: 2%;
        left: 0%;
    }

    .overlay-text .overlay-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .overlay-text h3 {
        font-size: 25px;
        margin-bottom: 10px;
        text-align: center;
    }

    .overlay-text h4 {
        font-size: 15px;
        margin: 0;
        text-align: center;
    }

    .overlay-text h4 a {
        font-size: 15px;
        margin: 0 2px;
    }

    .overlay-text .containers {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        border: none;
    }

    .column-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .column-left-0, .column-left-1, .column-left-2 {
        width: 100%;
        padding: 10px 0;
        border: none;
    }

    .column-left-0 h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .column-left h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .column-left p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .social-icon-right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .social-icon-right li {
        margin: 0 5px;
    }

    .social-icon-right .icons {
        font-size: 13px;
        width: 30px;
        height: 30px;
    }

    .social-icon-right .text {
        font-size: 14px;
    }

    .social-icon-right li:nth-child(1) i {
        padding: 10px 0px 0px 0px;
        width: 22px;
        height: 22px;
        line-height: 4px;
    }

    .social-icon-right li:nth-child(2) i {
        padding: 10px 0px 0px 1px;
        width: 22px;
        height: 22px;
        line-height: 3px;
    }

    .social-icon-right li:nth-child(3) i {
        padding: 10px 0px 0px 1px;
        width: 22px;
        height: 22px;
        line-height: 3px;
    }

    .footer {
        position: relative;
        height: 22vh;
    }

    .footer img {
        width: 100%;
        height: 22vh;
        object-fit: cover;
        user-select: none;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-content .footer-right {
        position: absolute;
        display: flex;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        margin-top: 5vh
    }

    .footer-content .social-icons {
        position: absolute;
        display: flex;
        margin-top: 9vh;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        gap: 10px;
    }*/
}

@media (min-width: 1500px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255, 255, 255, 0.8);
    }

    .nav-links h5{
        font-size: 25px;
    }
}

/***

/* Styles for screens larger than 1200px /
@media (min-width: 1200px) {
    /* Your styles for large screens /
}

/* Styles for screens between 768px and 1200px /
@media (min-width: 768px) and (max-width: 1200px) {
    /* Your styles for medium screens /
}

/* Styles for screens smaller than 768px /
@media (max-width: 768px) {
    /* Your styles for small screens /
}

**/

/** New Footer Media Queries **/
/* Phone view: max-width 400px */
@media (max-width: 425.5px) {
    .footer-content {
        flex-direction: column;
        align-items: left;
    }
    .footer-left {
        margin-bottom: 16px;
        text-align: center;
    }
    .footer-left .logo {
        width: clamp(90%, 50vw, 220vw);
        margin: 5% auto 12% auto;
    }
    .footer-right {
        width: 100%;
        /*align-items: left;
        text-align: left;*/
        margin-top: 0;
        margin-right: 0;
        /*border: 2px solid #0077FF;*/
    }
    .footer-columns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .footer-column {
        min-width: 0;
        width: 100%;
    }

    .footer-column h1 {
        font-size: 30px;
    }

    .footer-column .under-header {
        margin-top: 10%;
        margin-bottom: 10%;
    }

    .footer-column p,
    .footer-column a {
        font-size: 18px;
    }
    .social-icons {
        margin-top: 12px;
        gap: 10%;
        /*border: 2px solid #0077FF;*/
    }
    .social-icons a img {
        width: 24%;
        height: 24%;
    }
    .footer-right h6 {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* Tablet view: min-width 400px and max-width 980px */
@media (min-width: 425.5px) and (max-width: 980px) {
    .footer-content {
        flex-direction: column;
        align-items: left;
        padding: 0 0 0 10%;
    }

    .footer-left {
        margin-bottom: 20px;
        text-align: left;
    }
    .footer-left .logo {
        width: clamp(40vw, 50vw, 50vw);
        margin: 5% auto 12% auto;
    }

    .footer-right {
        /*align-items: center;
        text-align: center;
        margin-right: 0;
        margin-top: 0;
        border: none;*/

        width: 100%;
        /*align-items: left;
        text-align: left;*/
        margin-top: 0;
        margin-right: 0;
        /*border: 2px solid #0077FF;*/
    }

    .footer-columns {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .footer-column {
        min-width: 0;
        width: 100%;
    }

    .footer-column h1 {
        font-size: 30px;
    }

    .footer-column .under-header {
        margin-top: 5%;
        margin-bottom: 3%;
    }

    .footer-column p,
    .footer-column a {
        font-size: 18px;
    }

    .footer-column .under-header br {
        display: none;
    }

    .social-icons {
        margin-top: 18px;
        gap: 5%;
        border: none;
    }
    .social-icons a img {
        width: 28%;
        height: 28%;
    }
    .footer-right h6 {
        font-size: 13px;
        margin-top: 12px;
    }
}

@media (min-width: 980.5px) and (max-width: 1250px) {
    .footer-content {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 20px;
    }
    .footer-left {
        text-align: left;
        margin-bottom: 0;
    }
    .footer-right {
        align-items: center;
        text-align: left;
        margin-right: 6%;
        margin-top: 0;
        width: auto;
    }
    .footer-columns {
        flex-direction: row;
        gap: 28px;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .footer-column {
        min-width: 160px;
        width: auto;
    }
    .footer-column h1 {
        font-size: 28px;
    }
    .footer-column p,
    .footer-column a {
        font-size: 16px;
    }
    .social-icons {
        gap: 18px;
        margin-top: 18%;
    }
    .social-icons a img {
        width: 26%;
        height: 26%;
    }
    .footer-right h6 {
        font-size: 13px;
        margin-top: 10px;
    }
}