* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;
}

img {
    width: 100%;
}

.header-contact-info {
/*    background-color: rgba(237, 227, 39, 0.5);*/
background-color: #fff;
    font-size: .8rem;
}

.header-contact-info .col {
    padding-left: 0px !important;
}

.navbar-brand {
    display: inline-block;
    margin-inline: .25em;
}

.email-alert {
    inset: 0;
    max-height: 80px;
    z-index: 999;
}

/*privacy page*/
.privacy-section {
    padding-block: 8em;
}
.privacy-section .text-content {
    max-width: 800px;
    margin-inline: auto;
}

.privacy-section .text-content span {
    display: inline-block;
    margin-bottom: 3em;
}

.privacy-section .text-content h2 {
        margin-top: 1em;
}

.bg-col {
    display: grid;
    place-content: center;
    background-image: linear-gradient(45deg, #7cd49c, #ede327, transparent);
}

.modal .close, 
.request-quote-btn {
    cursor: pointer;
    transition: opacity .2s ease;
}

.modal .close:hover,
.request-quote-btn:hover {
    opacity: 0.5;
}

/*ad popup*/
.ad-popup-container {
    text-align: center;
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 4em 2em;
    min-height: 100vh;
    z-index: 1000;
}

.ad-popup-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.ad-popup-container .container {
    position: relative;
    max-width: 600px;
}

.ad-popup-container img {
    width: 100%;
    /*max-width: 600px;*/
    border-radius: 1em;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.ad-popup-container .ad-close-btn {
    font-size: 1.5rem;
    color: #000;
    position: absolute;
    top: 20px;
    right: 30px;
    border: 2px solid #08c95b;
    border-radius: 50%;
    cursor: pointer;
    transition: all 500ms ease;
}

.ad-popup-container .ad-close-btn:hover {
    border: #fff;
    color: #08c95b;
}
 
.newsletter button {
    background-color: yellow;
}



