@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Black Az.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Black Italic Az.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Bold Az.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Bold Italic Az.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro ExtraLight Az.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro ExtraLight Italic Az.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Light Az.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Light Italic Az.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Medium Az.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Medium Italic Az.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Regular Az.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Regular Italic Az.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Semi Bold Az.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro Semi Bold Italic Az.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro UltraLight Az.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Sofia Pro";
    src: url("../fonts/Sofia Pro UltraLight Italic Az.otf") format("opentype");
    font-weight: 100;
    font-style: italic;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
    overflow: initial;
    background-color: rgb(255, 255, 255);
    background-image: url(../images/bg-1.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: "Sofia Pro";
    height: 100vh;
}
body.clean {
    background-image: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem auto;
    min-width: 280px;
    max-width: 720px;
}
body.about {
    background-image: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem auto;
    width: 100%;
    height: auto;
    padding: 40px;
}
body.skillet {
    background-image: url(../images/recipe-bg-eggs-skillet.png);
}
.padding-40 {
    padding: 40px;
}
.gray {
    color: #333;
}

.loader-small {
    display: none;
    border-radius: 50%;
    border: 5px solid #f3f3f3;
    margin-left: auto;
    margin-right: auto;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    width: 30px;
    height: 30px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.modal-content {
    position: relative;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    min-height: 16.42857143px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    text-align: center;
    position: relative;
    padding: 0 2.5rem 2rem;
    background-color: #ffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 1);
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
.clickable {
    cursor: pointer;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
    visibility: hidden;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.hidden {
    display: none !important;
}
.affix {
    position: fixed;
}
.img-responsive-height {
    display: block;
    width: auto;
    max-height: 100%;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.ebook {
    height: auto;
    width: 250px;
    text-align: center;
    padding: 0;
    margin-top: -45px;
    margin-bottom: 24px;
}
h1 {
    color: #000;
    font-size: 2rem;
    margin-top: -0.5rem;
    font-weight: 600;
    line-height: 2rem;
}
h1 strong{
    font-weight: 600;
    color: #119177;
}
p {
    font-size: 1.1rem;
    margin: 1rem 0 1rem 0;
    color: #000;
    font-weight: 500;
    line-height: 1.7rem;
    text-align: left;
}
.info {
    color: rgb(0 0 0 / 80%);
    font-size: 15px;
    line-height: 1.2rem;
    margin: 2rem 0 1rem 0;
    font-weight: 500;
}
input[type="email"] {
    box-shadow: unset !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important;
    padding: 14px 18px !important;
    margin: 0 !important;
    display: block !important;
    border: 0 !important;
    height: 70px !important;
    text-align: center !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}
button {
    height: 70px;
}
.sendlane-form * {
    max-width: 100% !important;
    border-radius: 12px !important;
}
.sendlane-form form,
.sendlane-form div div {
    background-color: transparent !important;
    padding: 0 !important;
}
.cta-btn {
    background: #d27805;
    border-radius: 50px;
    width: 100%;
    max-width: 350px;
    border: 0;
    font-size: 16px;
    padding: 10px;
    color: #fff;
    font-weight: 400;
    margin: 0 auto 1rem;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.cta-btn:hover {
    background: #f1961d;
}
.cta-btn a {
    text-decoration: none;
    color: #fff;
}

.sub-btn {
    background-color: #02d29a;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    border: none;
    font-size: 1.3rem;
    padding: 10px;
    color: #fff;
    font-weight: 400;
    margin: 0 auto 1rem;
}
.sub-btn a {
    text-decoration: none;
    color: #fff;
}

#loader {
    width: 40%;
    margin: 20px auto;
}
.modal-footer {
    width: fit-content;
    margin: auto;
    margin-top: 24px;
}
ul.modal-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
ul.modal-footer-menu li a {
    text-decoration: unset;
    color: #000;
}
ul.modal-footer-menu li:not(:last-of-type):after {
    content: '-';
    margin: 0 8px;
}

.content-col p {
    color: #000;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 0;
}
.content-col p  span {
    color: #eb212e;
}
.loading-bar {
    display: flex;
    background: #f3f3f3;
    width: 100%;
    margin:30px 0;
    padding: 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 21px;
    position: relative;
}
.loading-bar .bar {
    background: #9fd8cc;
    width: 0%;
    border-radius: 50px;
    transition: 0.3s;
    height: 50px;
    animation: load 9s forwards;
}
.loading-bar .bar span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: calc(100% - 32px);
}
h1.heading {
    color: #2c2c2c;
    font-size: 2.5rem;
    text-align: center;
    line-height: 100%;
    margin: 24px 0;
}
h1.heading strong {
    color: #ec2f3b;
}
body.inner {
    background-image: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem auto;
}
.content-heading {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content-row {
    background-image: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem auto;
    min-width: 280px;
    max-width: 720px;
}
.menu a {
    color: #b1b1b1;
    text-decoration: unset;
}
.menu {
    text-align: center;
    margin: 24px 0;
    color: #b1b1b1;
}
.sendlane-form > div > div {
    background-color: transparent !important;
}
footer .menu, footer .menu a {
    text-align: center;
    color: #6e7b7e;
    margin-top: 24px;
    text-decoration: unset;
}
@keyframes load {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        width: 550px;
        margin: 0px auto;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}
@media (max-width: 414px) {
    .ebook {
        height: auto;
        width: 200px;
    }
    .modal-dialog {
        margin: 0px;
    }
    .modal-body {
        padding: 0 1rem 2rem;
    }
    p {
        font-size: 1rem;
        margin: 1rem 0 1rem 0;
        color: #fff;
        font-weight: 500;
        line-height: 1.7rem;
    }
    h1 {
        color: #fff;
        font-size: 1.5rem;
        margin-top: -0.5rem;
        font-weight: 500;
        line-height: 1.8rem;
    }
}
@media (max-width: 320px) {
    .ebook {
        margin-top: -40px;
        height: auto;
        width: 140px;
    }
    .modal-dialog {
        margin: 0px;
    }
    .modal-body {
        padding: 0 14px 2rem;
    }
    p {
        font-size: 0.9rem;
        margin: 1rem 0 1rem 0;
        color: #fff;
        font-weight: 500;
        line-height: 1.4rem;
    }
    h1 {
        color: #fff;
        font-size: 1.3rem;
        margin-top: -0.5rem;
        font-weight: 500;
        line-height: 1.8rem;
    }
    .info {
        margin: 1rem 0 1rem 0;
    }
}
