@font-face {
    font-family: orator-std;
    src: url(../../fonts/Orator-Std-Font.woff),
    url(../../fonts/Orator-Std-Font.ttf),
    url(../../fonts/Orator-Std-Font.woff2);
  }

  @font-face {
    font-family: FrutigerLTStd-Black;
    src: url(../../fonts/frutiger/webFonts/FrutigerLTStd-Black/font.woff),
    url(../../fonts/frutiger/webFonts/FrutigerLTStd-Black/font.woff2)
  }

  @font-face {
    font-family: FrutigerLTStd-Roman;
    src: url(../../fonts/frutiger/webFonts/FrutigerLTStd-Roman/font.woff),
    url(../../fonts/frutiger/webFonts/FrutigerLTStd-Roman/font.woff2)
  }

  @font-face {
    font-family: FrutigerLTStd-Bold;
    src: url(../../fonts/frutiger/webFonts/FrutigerLTStd-Bold/font.woff),
    url(../../fonts/frutiger/webFonts/FrutigerLTStd-Bold/font.woff2)
  }

footer {
    background-color: #241D72;
    color: #FFFFFF;
    margin: 0;
    padding: 45px 0;
    position: relative;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.3;
    /* overflow: hidden; */
}

footer::before{
    content: "";
    position: absolute;
    height: calc(var(--section-gap) / 2);
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8978057775844713) 20%, rgba(255,255,255,0.7465452733827906) 40%, rgba(255,255,255,0.39920633780856096) 60%, rgba(255,255,255,0.09948644985337884) 80%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8978057775844713) 20%, rgba(255,255,255,0.7465452733827906) 40%, rgba(255,255,255,0.39920633780856096) 60%, rgba(255,255,255,0.09948644985337884) 80%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8978057775844713) 20%, rgba(255,255,255,0.7465452733827906) 40%, rgba(255,255,255,0.39920633780856096) 60%, rgba(255,255,255,0.09948644985337884) 80%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#241d72",endColorstr="#241d72",GradientType=1); 
}

footer a,
footer a:link,
footer a:active,
footer a:visited {
    text-decoration: none;
    color: #FFFFFF;
}

footer a span.at-sign {
    display: inline-block;
    padding: 0 3px;
}

footer .left,
footer .middle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .address {
    margin-bottom: 30px;
}

footer .member img {
    height: 20px;
}

footer .text-right .member {
    display: none;
}

footer .middle {
    min-height: 400px;
}

footer .newsletter {
    display: flex;
    justify-content: center;
}

footer .newsletter a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    max-width: 100%;
}

footer .newsletter svg,
footer .newsletter span {
    display: inline-block;
}

footer .newsletter span {
    font-size: 2.3vw;
    letter-spacing: 1.6px;
    line-height: 1.15;
    text-transform: none;
    text-align: center;
    font-family: "FrutigerLTStd-Roman", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

footer .newsletter svg {
    height: 50px;
    margin-bottom: 15px;
}

footer .social-media {
    display: flex;
    justify-content: center;
}

footer .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 80px;
    height: 80px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

footer .social-media > a + a {
    margin-left: 30px;
}

footer .social-media a:hover {
    background-color: #FFFFFF;
}

footer .social-media a:hover i {
    color: #241D72;
}

footer .social-media i {
    font-size: 35px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

footer ul {
    list-style-type: none;
    text-align: center;
}

footer ul li a {
    display: block;
    padding: 10px 0;
    font-size: 24px;
    text-transform: uppercase;
}

footer nav > ul > li:first-of-type > a {
    padding-top: 0;
}

footer nav > ul > li:last-of-type > a {
    padding-bottom: 0;
}

#newsletter-modal {
    padding: 0 !important;
}

#newsletter-modal a {
    color: white;
    text-decoration: underline;
}

#newsletter-modal a:hover {
    color: #00B7E5;
}

#newsletter-modal .modal-dialog {
    max-width: unset !important;
    margin: 0 !important;
    height: 100%;
    transform: none;
}

#newsletter-modal .modal-content {
    height: 100%;
    background-color: #241D72;
    border-radius: unset;
    border: none;
    color: #FFFFFF;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}

#newsletter-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px;
}

#newsletter-modal svg {
    height: 50px;
}

#newsletter-modal h5 {
    color: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 45px;
    font-family: "FrutigerLTStd-Roman", sans-serif;
    font-size: 42px;
    letter-spacing: 1.6px;
    line-height: 1.15;
    text-transform: none;
    max-width: 400px;
    text-align: center;
}

#newsletter-modal p {
    margin-bottom: 25px;
    font-size: 20px;
}

#newsletter-modal input {
    background-color: #1D1763;
    border-radius: unset;
    border: none;
    text-align: center;
    color: #FFFFFF;
    font-size: 20px;
}

#newsletter-modal .frm_submit button {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    border-radius: unset;
    font-weight: 400;
    width: 100%;
    font-size: 20px;
}

#newsletter-modal .frm_submit button:hover,
#newsletter-modal .frm_submit button:focus,
#newsletter-modal .frm_submit button:active {
    background-color: #FFFFFF;
    color: #1D1763;
}

#newsletter-modal .frm_forms {
    min-width: 600px;
}

#newsletter-modal .frm_form_field {
    position: relative;
}

#newsletter-modal .frm_error {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 0 auto;
    left: 0;
    text-align: center;
}

#newsletter-modal .frm_message {
    background-color: #241D72;
    padding: 15px;
    width: 600px;
    max-width: 100%;
}

#newsletter-modal .frm_message p {
    margin-bottom: 0;
}

#newsletter-modal input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.9);
    opacity: 1; /* Firefox */
}

#newsletter-modal input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.9);
}

#newsletter-modal input::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.9);
}

#newsletter-modal .x {
    position: absolute;
    top: 45px;
    right: 45px;
    width: 40px;
    height: 22px;
    background-color: unset;
    border: none;
    border-radius: unset;
    outline: none;
}

#newsletter-modal .x::before,
#newsletter-modal .x::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #FFFFFF;
    width: 40px;
    height: 1px;
}

#newsletter-modal .x::before {
    transform: rotate(30deg);
}

#newsletter-modal .x::after {
    transform: rotate(-30deg);
}


#frm_field_11_container > div.frm_opt_container {
    display: flex;
    margin-bottom: 0;
}

#field_w38dn_label {
    font-weight: normal;
    color: #FFFFFF;
    font-size: 20px;
}

.frm_scale input[type="radio"] + span::before, .frm_radio input[type="radio"] + span::before {
    border: 2px solid #FFFFFF !important;
}

.frm_scale input[type="radio"] + span::after, .frm_radio input[type="radio"] + span::after {
    background-color: #FFFFFF !important;
}

.frm_scale input[type="radio"] + span, .frm_radio input[type="radio"] + span {
    width: 28px !important;
}

.frm_checkbox label input[type="checkbox"]:checked ~ span {
    background-color: #1D1763 !important;
}

.frm_checkbox span {
    height: 18px !important;
    width: 18px !important;
    background-color: transparent !important;
    border: 2px solid #FFFFFF !important;
}

.frm_checkbox label span::after {
    left: 5px !important;
    top: 1px !important;
    width: 5px !important;
    height: 10px !important;
}

.frm_checkbox label {
    padding: 0 0 0 28px !important;
}

#frm_field_12_container,
#frm_field_12_container .frm_opt_container {
    margin-top: 0 !important;
}

#frm_field_12_container .frm_opt_container {
    margin-bottom: 0;
}

#frm_field_12_container {
    margin-bottom: 30px;
}

#frm_checkbox_12-0 label {
    display: block !important;
}

#frm_error_field_12 {
    right: unset !important;
    margin: 0 !important;
}

/* Added Styles */

footer{
    margin-top: var(--section-gap);
    z-index: 2;
}

footer *{
    color: #ffffff;
    font-family: "orator-std", sans-serif;
}

footer .row{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.frm_scale label, .frm_radio label, label{
    color: #fff
}

@media only screen and (max-width: 1200px){
    footer ul{
        padding-left: 0px;
    }
}

@media only screen and (max-width: 1024px){
    footer .social-media{
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 991.98px) {
    footer .social-media i {
        font-size: 30px;
    }

    footer .social-media a {
        width: 70px;
        height: 70px;
    }

    footer .row{
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767.98px) {

    footer .member img {
        margin-top: 30px;
        height: 12px;
    }

    footer .left .member {
        display: none;
    }

    footer .text-right .member {
        display: flex;
        justify-content: center;
    }

    footer .middle {
        min-height: unset;
    }

    footer .newsletter svg {
        height: 45px;
    }

    footer .newsletter a {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    footer .social-media {
        margin-bottom: 30px;
        padding-bottom: unset;
    }

    footer {
        text-align: center;
        padding: 60px 0 75px 0;
    }

    footer .logo {
        width: 100%;
        display: block;
        text-align: center;
    }

    footer .scroller {
        display: none;
    }

    footer .newsletter span {
        font-size: 26px;
    }

}

@media only screen and (max-width: 575.98px) {
    footer .text-right {
        text-align: center !important;
    }
}

@media only screen and (max-width: 499.98px) {
    footer .social-media i {
        font-size: 20px;
    }

    footer .social-media a {
        height: 50px;
        width: 50px;
    }

    footer .newsletter svg {
        height: 32px;
    }

    footer,
    footer ul li a {
        font-size: 20px;
    }

    footer .newsletter span {
        font-size: 18px;
        letter-spacing: 1px;
    }
}