
.footer-container {
    /* margin-top: 60px; */
    background-color: #051E52;
    padding-top: 60px;
    text-align:left;
    position: relative;
    bottom: 0px;
}

 iframe { 
    width: 95%;
    height: 300px;
 }

.footer-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 0px;
    font-family: var(--font-family-secondary);
    color: var(--color-text);
   
}


.gemstone_content , .diamond_content { 
    position: absolute;
    width: 200px;
    background-color: #f8f5f5;
    padding: 5px;
    border-radius: 5px;
    top: 12rem;
    left: 35rem;
}

.gemstone_content a, .diamond_content a{ 
  color:#051E52;
  font-size: 12px;
}


#gemstonelink:hover .gemstone_content {
 
  display: grid;
}


#diamondlink:hover .diamond_content {
  display: grid;
}






.footer-links {
    font-family: var(--font-family-secondary);
    font-weight: 300;
}

.footer-links h3 {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    text-transform: uppercase;
}

.footer-links ul {
    width: 250px;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.footer-links ul li {
    font-size: 14px;
    font-weight: 300;
    color: #f8f5f5;
    list-style: none;
    margin: 0;
    line-height: 40px;
    transition: 0.2s;
}
#overtext ul li:hover {
    color: #051e52;
    cursor: pointer;
    font-size: 16px;
}
/* .footer-links ul a li:hover {
    color:orange;
    cursor: pointer;
    font-size: 16px;
} */
.footer-links ul li:hover {
    color:orange;
    cursor: pointer;
    font-size: 13px;
}
.social-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 5px;
}

.social-icon a i {
    color: var(--color-text);
    font-size: 24px;
}

.social-icon a:hover {
    cursor: pointer;
}

.footer-links p {
    color: var(--color-text);
    font-size: 14px;
}

.footer-links input {
    border: 0;
    border-bottom: 1px solid var(--color-text);
    width: 100%;
    margin-top: 40px;
    outline: none;
    background-color: transparent;
}

.footer-links input::placeholder {
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-family-secondary);
    color: var(--color-text);
}

.footer-btn {
    background-color: transparent;
    border: 1px solid var(--color-text);
    border-radius: 6px;
    color: var(--color-text);
    font-family: var(--font-family-secondary);
    font-size: 16px;
    font-weight: 300;
    padding: 10px 26px;
    margin-top: 30px;
    transition: 0.2s;
}

.footer-btn:hover {
    cursor: pointer;
    transform: scale(1.09);
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.10);
}

.footer-divider {
    border-top: 1px solid #f8f5f5;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-family: var(--font-family-secondary);
    color: black;
    margin: 0px auto;
}

.footer-info h3 {
    color: #f8f5f5;
    font-size: 16px;
    font-weight: 300;
}

@media only screen and (max-width:1000px) {
    .footer-links ul {
        width: 200px;
    }
}

@media only screen and (max-width:500px) {
    .footer-info {
        flex-direction: column;
        margin-bottom: 0;
    }

    .footer-contents {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 10px;
        gap: 40px;
        margin-left: 0px;
        padding-left: 40px;
    }

    .footer-links h3 {
        font-size: 18px;
    }
    
    .footer-info h3 {
        font-size: 16px;
        padding-left: 110px;
    }
}