/* animations */
@media (min-width: 1055px) {
	html.js #home-header-menu .service {
		opacity: 0;
		transform: translate(0, 100%);
	}

	/* animate-init */
	html.js #home-header-menu.animate-init .service {
		opacity: 0.9;
        transform: translate(0, 0);
        transition: opacity 1s, transform 1s;
	}
	html.js #home-header-menu.animate-init .service:nth-child(1) { transition-delay: 0s; }
	html.js #home-header-menu.animate-init .service:nth-child(2) { transition-delay: 0.05s; }
	html.js #home-header-menu.animate-init .service:nth-child(3) { transition-delay: 0.1s; }
	html.js #home-header-menu.animate-init .service:nth-child(4) { transition-delay: 0.15s; }
	html.js #home-header-menu.animate-init .service:nth-child(5) { transition-delay: 0.2s; }
	html.js #home-header-menu.animate-init .service:nth-child(6) { transition-delay: 0.25s; }
}
/* HOME HURRICANE POPUP */
#closeIcon, #screenMask {
    position: absolute;
}

#screenMask {
    display: none;
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 500px;
    top: 0px;
    left: 0px;
    z-index: 9999;
}

#signup-popup {
    height: 575px;
    width: 90%;
    max-width: 600px;
    margin: auto;
    margin-top: 150px;
    background-color: #f2f2f2;
    border-radius: 3px;
    position: relative;
}

#signup-popup:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url(../img/bg-hurricane-preparedness-popup.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.popup-images {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #183151;
}

.popup-figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-img {
    width: 85px;
}

.popup-figure-caption {
    text-align: center;
    font: normal normal bold 16px/18px Roboto Condensed;
    white-space: nowrap;
    padding-top: 8px;
}
.popup-submit-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.popup-submit {
    display: flex;
    background-color: #C8333C;
    padding: 20px 30px;
    color: #fff;
    font: normal normal normal 20px/24px Roboto Condensed;
    height: 50px;
    align-items: center;
    border-radius: 3px;
    justify-content: space-between;
    margin-top: 17px;
}

.popup-btn-arrow {
    display: none;
}
.popup-submit:hover, .popup-submit:focus {
    background-color: #97272d;
    color: white;
    text-decoration: none;
}

#sp-inner {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 48px;
}

#sp-inner h2 {
    text-transform: uppercase;
    padding-top: 48px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 17px;
    font: normal normal bold 28px/30px Roboto Condensed;
    text-align: left;
}

#closeIcon {
    text-indent: -9999px;
    background: transparent
    url(../img/icon-close.png) scroll
    no-repeat right top;
    height: 34px;
    width: 34px;
    right: 5px;
    top: 5px;
    z-index: 99;
    filter: brightness(0.5);
    transition: .2s ease;
}

#closeIcon:hover {
    filter: brightness(0.8);
}

.popup-info {
    padding-bottom: 17px;
    border-bottom: 1px solid #183151;

    text-align: left;
    margin-bottom: 0;
}

.popup-info h3 {
    color: #222C36;
    font: normal normal normal 20px/28px Roboto Condensed;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
}

@media (min-width: 650px) {
    #signup-popup {
        height: 493px;
    }
    #sp-inner h2 {
        font: normal normal bold 40px/47px Roboto Condensed;
    }
    .popup-images {
        gap: 52px;
    }
    .popup-img {
        width: 100px;
    }
    .popup-figure-caption {
        text-align: center;
        font: normal normal bold 20px/28px Roboto Condensed;
        white-space: nowrap;
    }
    .popup-submit-wrapper {
        flex-direction: row;
    }
    .popup-submit {
        height: 60px;
        margin-top: 25px;
    }
    #popup-submit-1 {
        width: 60%;
        display: inline-flex;
        margin-right: 10px;
    }
    #popup-submit-2 {
        width: 35%;
        display: inline-flex;
    }
    .popup-btn-arrow {
        display: block;
    }
}

@media (min-width: 768px) {
    .popup-info {
        margin-bottom: 15px;
    }
    #closeIcon {
        height: 34px;
        width: 34px;
        right: 10px;
        top: 10px;
    }
}

@media(min-width: 1080px) {
    #signup-popup {
        max-width: 600px;
        height: 500px;
        margin-top: 125px;
    }
    .popup-info h2 {
        margin-bottom: 15px;
    }
}
@media (min-width: 1200px) {
    .popup-images {
        gap: 0;
    }
}
@media(min-width: 1500px) {
    #signup-popup {
        max-width: 600px;
        margin-top: 150px;
    }
    .popup-info h2 {
        margin-bottom: 15px;
    }
}
/* END HOME HURRICANE POPUP */
