/* ---------------------------------------- MultiWebMarketing Style ---------------------------------------- */
/*== == Generic == == */
body {
    margin: 0px;
    --flint: #9ea4ad;
    --blue: #4480d4;
    --royal: #154180;
    --navy: #091f4e;
    --ink: #0c1c45;
}

.menu-toggle {
    display: none !important;
}

img {
    max-width: 100%;
    display: block;
}

.title {
    display: block;
    font-size: 50px;
    line-height: 58px;
    text-transform: uppercase;
    font-family: 'Times New Roman';
    font-weight: 400;
    letter-spacing: 2px;
}

.subtitle {
    display: block;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px 15px 0px;
}

p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 10px 0px;
    color: var(--flint);
    font-family: 'Poppins';
}

.row-container {
    margin: 0px auto;
    max-width: 1380px;
}

a {
    text-decoration: none !important;
}

.readmore {
    display: block;
    width: 200px;
    padding: 10px 10px;
    color: white;
    box-sizing: border-box;
    font-size: 22px;
    text-align: center;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    border: 0px;
    margin-top: 20px;
    transition:
        all 300ms ease;
    position: relative;
    text-transform: uppercase;
    background: none;
    cursor: pointer;
    font-family: 'Poppins';
    font-weight: 400;
    letter-spacing: 2px;
}
.readmore::before, .readmore-back::before {
    content: '';
    background: rgb(1,13,39);
    background: linear-gradient(45deg, rgb(11 33 81) 0%, rgba(3, 93, 218, 1) 100%);
    color: white;
    box-sizing: border-box;
    transition:
        all 300ms ease;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    border-radius: 30px;
    opacity: 1;
}
.readmore:hover::before,
.readmore-back:hover::before{
    opacity: 0;
}
.readmore::after, 
.readmore-back::after{
    content: '';
    background: rgb(1,13,39);
    background: linear-gradient(215deg, rgba(1,13,39,1) 0%, rgba(3,93,218,1) 100%);
    color: white;
    box-sizing: border-box;
    transition:
        all 300ms ease;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    border-radius: 30px;
    opacity: 0;
}
.readmore:hover::after,
.readmore-back:hover::after{
    opacity: 1;
}
.readmore-back {
    position: relative;
    width: fit-content;
}

/*HIDES BADGE*/
.grecaptcha-badge {
    visibility: hidden;
}

/* == == Generic END == == */
/* == == HEADER == == */

ul#left-menu li a, ul#right-menu li a {
    border-style: solid;
    border-right: none;
    border-left: none;
    border-top: none;
    border-color: transparent;
    transition: all .3s ease;
}

ul#left-menu li, ul#right-menu li {
    flex: 0 0 auto;
    position: relative;
}

div.logo {
    float: none;
    width: 250px;
    flex: 0 0 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    height: 100px;
    transform: 
		translatey(-15px);
    height: 100px;
}

div.logo * {
    object-fit: contain;
    display: block;
    height: 100%;
}

#page {
    overflow: hidden;
    padding-top: 90px;
}
.contact-page #page {padding-top: 120px;}

#masthead {
    padding: 20px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all .3s ease;
}
#masthead::before {
	background: var(--navy);
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
#masthead.navbar-fixed-top::before {
	opacity: .5;
}

#masthead > .row-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 20px;
}

#masthead > .row-container::before, #masthead > .row-container::after {
    content: unset;
}

#masthead #site-navigation {
    max-width: 767px;
    margin-right: 0px;
    margin-left: auto;
}

#masthead #site-navigation {
    display: flex;
    max-width: unset;
    justify-content: center;
}

header#masthead.navbar-fixed-top {
    padding: 10px 0px;
    transition: all .3s ease;
    padding-top: 7.5px;
    background: #020e2891;
}

.navbar-fixed-top div.logo {
    transform: scale(0.85);
    transform-origin: top;
    transition: all .3s ease;
    height: 80px;
    flex: 0 0 15%;
}

.menu-menu-1-container, .menu-menu-2-container {
    display: flex;
    align-items: center;
    flex: 0 0 42.5%;
    justify-content: center;
}

ul#left-menu, ul#right-menu{
    display: flex;
    padding: 0px;
    list-style: none;
    width: 100%;
    justify-content: space-around;
}

ul#left-menu li a, ul#right-menu li a {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-family: 'Poppins';
	text-transform: uppercase;
}
ul#left-menu li a:hover, 
ul#right-menu li a:hover {
    opacity: 0.7;
}

ul#left-menu li ul.sub-menu a, ul#right-menu li ul.sub-menu  a {
    color: white;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

div#right-menu {
    display: flex;
    align-items: center;
    flex: 0 0 33%;
    justify-content: center;
}

.menu-right {
    width: 100%;
    position: relative;
}

#masthead li.menu-item ul.sub-menu {
    position: absolute;
    left: 0;
    top: 50%;
    opacity: 0;
    transition: all .5s ease;
    pointer-events: none;
    display: flex;
    width: 325px;
    z-index: 9999;
    background: var(--ink);
    justify-content: space-between;
    padding: 12.5px;
    border-style: ridge;
    border-color: white;
    list-style: none;
    row-gap: 15px;
    flex-direction: column;
    border: none;
}
ul#left-menu li ul.sub-menu a::before, ul#right-menu li ul.sub-menu a::before {
    content: '\f631';
    font-family: 'Font Awesome 6 Pro';
    opacity: .5;
    font-weight: 900;
    font-size: 12px;
}

#masthead ul.sub-menu::after {
    content: '';
    position: absolute;
    height: calc(100% - 20px);
    width: 1px;
    right: 10px;
    background: var(--flint);
    top: 10px;
}

li.menu-item ul.sub-menu {
    box-shadow: 2px 2px 10px 2px #ffffff33;
}

#masthead li.menu-item:hover > ul.sub-menu {
    top: calc(100% - 0px);
    opacity: 1;
    pointer-events: all;
}

.services-list {
    padding: 0px;
    margin-bottom: 0px;
    padding-left: 20px;
}

/* == == HEADER END == == */
/*== eBook Form ==*/
.ebook-image {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.ebook-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.7);
    transform-origin: center;
}

.ebook-form-text .subtitle {
    margin-bottom: 0px;
    color: var(--blue);
}

#ebook-fold .ebook-form-text .title ~ p {
    margin-bottom: 10px;
}

input.readmore {
    margin: 0px;
}

.ebook-form-fields ~ .privacy-text {
    margin-bottom: 10px;
}

.privacy-text p {
    font-size: 16px;
    line-height: 1.4;
}

div#ebook-fold .ebook-form input.wpcf7-text {
    background: var(--ink);
    border: none;
    padding: 10px;
    border-radius: 7px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 18px;
    color: white;
}

div#ebook-fold .ebook-form input.wpcf7-text::placeholder {
    font-size: 18px;
    line-height: 18px;
}

div#ebook-fold .ebook-form .ebook-form-fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span.wpcf7-spinner {
    position: absolute;
}

div#ebook-fold .ebook-form .ebook-form-fields > span {
    flex: 0 0 48%;
}

.ebook-form-text .title {
    color: white;
}

div#ebook-fold {
    padding: 150px 0px;
    width: 100%;
    overflow: hidden;
    background: none;
    position: relative;
    z-index: 3;
}
div#ebook-fold::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url('/wp-content/uploads/2022/11/ebook-fold.jpg.webp');
    z-index: -1;
    background-size: 100% 100%;
}

.ebook-fold-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    z-index: 5;
    gap: 40px;
}

.ebook-fold-inner .ebook-image, .ebook-fold-inner .ebook-form {
    flex: 0 0 calc(50% - 20px);
}

.sub-btn {
    position: relative;
}

.sub-btn::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(/wp-content/uploads/2021/06/icon-button.png) no-repeat center / contain;
    top: 0;
    left: -3px;
    z-index: 3;
}

.sgpb-main-html-content-wrapper .sub-btn::before {
    display: none;
}

.privacy-text a {
    color: var(--blue);
}

.brochure div#ebook-fold {
    margin-top: 0px;
}

/*== eBook Form END ==*/
/* == == FOOTER BLOCK == == */
.footer-block {
    padding: 30px 0;
    position: relative;
    background: var(--ink);
    width: 100%;
    clear: both;
}

.footer-block .row-container {
    display: flex;
    align-items: flex-start;
}

div#phone {
    width: 23%;
}

div#address {
    width: 43%;
}

div#opening {
    width: 33.3%;
}

.footer-block .footer-block-item {
    width: 30%;
    margin-right: 5%;
    position: relative;
    z-index: 2;
}

.footer-block .footer-block-item#middle {
    width: 55%;
    margin-right: 10%;
}

.footer-block .footer-block-item h5 {
    font-size: 36px;
    line-height: 36px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 400;
}

.footer-block-item h6 {
    font-size: 24px;
    color: white;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-block .footer-block-item#middle li {
    float: left;
    width: 50%;
    padding: 8.2px 0px;
    font-size: 17px;
    list-style-type: none;
    font-family: 'Poppins';
}

.footer-block .footer-block-item#middle li a {
    color: #fff;
    list-style-type: none;
    position: relative;
    transition:
        all .33s ease;
}

.footer-block .footer-block-item#middle li a::before {
    content: "\f054";
    position: absolute;
    top: 50%;
    transform:
        translateY(-50%);
    -webkit-transform:
        translateY(-50%);
    left: -20px;
    color: var(--blue);
    font-size: 12px;
    font-family: fontawesome;
}

.footer-block .footer-block-item#middle li:hover a {
    letter-spacing: 1px;
    color: #fff;
}

.footer-block .footer-block-item:last-of-type {
    margin-right: 0;
}

.footer-block .footer-block-item h5 {
    font-size: 36px;
    line-height: 36px;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 400;
}

.footer-block .footer-block-item p {
    color: #eee;
    margin-bottom: 0px;
    line-height: 28px;
}

.footer-block .readmore {
}

.footer-block ul {
    margin: 0 0 1.5em 0em;
    float: left;
    width: 100%;
    padding-left: 20px;
}

/* == == FOOTER BLOCK END == ==*/
/* == == == MWM FOOTER == == == */
#footer {
    padding: 30px 0;
    box-sizing: border-box;
    position: relative;
    background: #02091b;
    clear: both;
}

#footer > .row-container {
    position: relative;
}

#footer-multi-web {
    float: none;
    text-align: center;
    margin: 0px auto;
    max-width: 350px;
}

#footer-multi-web p {
    font-size: 13px !important;
    padding-bottom: 0px;
    margin-top: 0px;
    z-index: 20;
    position: relative;
    margin-bottom: 10px;
    color: white;
}

#footer-multi-web p:last-of-type {
    margin-bottom: 0px;
}

#footer a {
    color: white;
    font-family: 'Poppins';
}

span#footer-highlight {
    position: relative;
    font-weight: bold;
    z-index: -4;
    text-shadow: 0px 0px 2px black;
}

span#footer-highlight::before {
    content: "";
    background: url(/wp-content/uploads/2021/01/multiwebmarketing-facebook-globe-small.png) no-repeat 50% 50% / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 70px;
    z-index: -1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.privacy-site.moduletable {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    text-align: right;
}

.date-sitename {
    position: absolute;
    left: 0px;
    top: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    text-align: left;
    margin: 0px;
    font-size: 16px;
}

#footer .row-container > p, .privacy-site.moduletable {
    width: 30%;
    color: white;
}

#footer .privacy-text, #footer .socials {
    float: right;
}

#footer .privacy-text {
    position: absolute;
    left: 0px;
    top: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-size: 14px;
    line-height: 14px;
}

#footer .socials a {
    display: block;
    float: left;
}

#footer .socials i {
    font-size: 40px;
    margin-left: 15px;
}

#footer i.fa-brands.fa-facebook-f {
    font-size: 36px;
}

/* == == == == MWM FOOTER END == == == == */
section.error-404.not-found {
    padding: 100px 0px;
}

/*== == Contact Page == ==*/
.contact-fold2-wrapper {
    clear: both;
    position: relative;
}

.contact-section {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 80px 0px;
}

.address-wrap {
    width: 30%;
}

.contact-card {
    width: 65%;
}

.wpcf7-not-valid-tip {
    margin-top: 15px;
}

.address-wrap ul li {
    list-style-type: none;
    color: var(--flint);
    font-family: 'Poppins';
}

.address-wrap h1, h3.contact-title {
    font-size: 37px;
    color: white;
    margin-bottom: 0px;
    letter-spacing: 2px;
}

.address-wrap ul {
    box-sizing: border-box;
    margin: 20px 0px;
    position: relative;
    padding-left: 50px;
}

.address-wrap ul::before {
    content: "\f041";
    font-family: 'fontawesome';
    left: 10px;
    position: absolute;
    top: 0px;
    color: var(--blue);
    font-size: 30px;
}

.address-wrap ul.phone::before {
    content: "\f095";
    top: 10px !important;
    line-height: 0px !important;
}

.address-wrap ul.email::before {
    content: "\f0e0";
    top: -5px;
}

.form-name, .form-email {
    width: 49%;
    margin-bottom: 0px;
    float: left;
    line-height: 0;
}

.form-name {
    margin-right: 2%;
}

.form-phone {
    width: 100%;
    margin-bottom: 10px;
    float: left;
    line-height: 1;
}

.form-name input.wpcf7-form-control.wpcf7-text, .form-email input.wpcf7-form-control.wpcf7-text, .form-phone input.wpcf7-form-control.wpcf7-text, .wpcf7 textarea {
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    border-style: solid;
    border-color: transparent;
    border-width: 2px;
    font-size: 18px;
    box-sizing: border-box;
    margin-top: 15px;
    background: var(--flint);
    font-family: 'Poppins';
    color: white;
}

.contact-card input.wpcf7-form-control.wpcf7-submit {
    margin-top: 0px;
    width: 250px;
}

.contact-card .sub-btn {
    float: right;
}

.contact-card input.wpcf7-form-control.wpcf7-submit {
    margin: 10px 0px;
}

/*== == Contact Page END == ==*/
/*== == == CONTACT FORM == == ==*/
body {
    position: relative;
    background: var(--navy);
}

.popup-confirmation {
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5000;
    background: rgba(0,0,0,0.3);
    transition: 
        all .25s ease .25s;
}

.popup-confirmation.popup-open {
    opacity: 1;
    pointer-events: all;
    transition: 
        all .25s ease 0s;
}

.popup-confirmation-inner {
    position: absolute;
    top: 150%;
    left: 50%;
    width: 100%;
    max-width: 500px;
    background: #03be68;
    transform: 
        translate(-50%, -50%);
    -webkit-transform: 
        translate(-50%, -50%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-radius: 25px;
    transition: 
        all .25s ease 0s;
}

.popup-confirmation.popup-open .popup-confirmation-inner {
    top: 50%;
    transition:
        all .25s ease .25s;
}

p.popup-small {
    font-size: 18px;
    line-height: 24px;
    max-width: 400px;
    margin: 20px auto;
    color: white;
}

p.popup-large {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin: 20px 0px;
    color: white;
}

.popup-confirmation-icon i {
    font-size: 250px;
}

a.popup-readmore {
    font-weight: 100;
    color: white;
    font-size: 24px;
    border: solid 2px white;
    padding: 5px 10px;
    border-radius: 25px;
    width: 150px;
    display: block;
    margin: 0px auto;
    transition:
        all .33s ease;
    cursor: pointer;
}

a.popup-readmore:hover {
    background: white;
    color: #03be68;
}

.wpcf7-response-output {
    display: none !important;
}

.wpcf7-form p:last-of-type {
    margin-bottom: 0;
}

#sgpb-popup-dialog-main-div input, #sgpb-popup-dialog-main-div textarea, .sgpb-gdpr-info, .sgpb-gdpr-label-wrapper {
    width: 100% !important;
    background: var(--flint);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0px 0px 2px 0px var(--navy);
    display: block;
    font-size: 18px;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 100%;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
    border: solid 0px black;
    box-sizing: border-box;
    font-family: inhrerit;
    font-family: 'Poppins';
    color: white;
}

input::placeholder, textarea::placeholder {
    color: white;
}

.contact-form-fields {
    padding: 0px 20px 20px;
    border-radius: 20px;
}

.sgpb-main-html-content-wrapper > p {
    margin: 0px !important;
}

.form-field {
    margin-bottom: 10px;
    flex: 0 0 100%;
}

.form-field.half {
    flex: 0 0 calc(50% - 5px);
}

.contact-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

p.privacy-details {
    font-size: 14px;
    line-height: 18px;
    margin: 0px;
}

p.privacy-details a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: var(--flint);
}

#sgpb-popup-dialog-main-div h3 {
    font-weight: 600;
    text-align: center;
    margin: 0px auto 30px;
    font-size: 32px;
    line-height: 40px;
    color: white;
    padding: 25px 0px 30px;
    background: var(--royal);
}

#sgpb-popup-dialog-main-div h3 span {
    color: white;
    display: block;
    font-weight: 300;
}

.sgpb-theme-1-content {
    box-shadow: none !important;
    border-radius: 10px !important;
    padding: 0px 0px !important;
    box-sizing: border-box !important;
    border: solid 5px var(--navy) !important;
}

.sgpb-popup-dialog-main-div-theme-wrapper-1 {
    border: solid 0px #bd1819;
    border-radius: 0px;
}

.sgpb-popup-dialog-main-div-theme-wrapper-1::before {
    width: 50px;
    height: 50px;
    background: var(--royal);
    content: 'x';
    color: white;
    text-align: center;
    top: 0px;
    position: absolute;
    right: 0px;
    -webkit-transform:
        translate(50%, -50%);
    transform:
        translate(50%, -50%);
    z-index: 1000000;
    line-height: 45px;
    font-size: 30px;
    box-shadow: 0px 0px 10px 0px black !important;
    border-radius: 50%;
    pointer-events: none;
}

#sgpb-popup-dialog-main-div textarea {
    max-height: 150px;
}

.contact-form-wrapper ~ p:nth-of-type(0n+1) {
    margin: 0px;
}

.sgpb-popup-close-button-1 {
    bottom: unset !important;
    top: 0 !important;
    right: 0 !important;
    width: 20px !important;
    height: 20px !important;
    -webkit-transform:
        translate(50%, -50%);
    transform:
        translate(50%, -50%);
}

.sgpb-popup-close-button-1:hover {
    opacity: 0;
}

form.wpcf7-form > p {
    margin: 0px;
}

#sgpb-popup-dialog-main-div input.wpcf7-submit {
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box !important;
    color: white;
    font-size: 24px;
    text-transform: capitalize;
    -webkit-transition: 
        all 0.5s ease;
    transition:
        all 0.5s ease;
    background: var(--navy) !important;
    font-weight: 400;
    border: solid 1px var(--navy) !important;
    box-shadow: none !important;
    text-shadow: none;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-appearance: inherit;
    font-family: 'Poppins';
    text-align: left;
}

.wpcf7 form.sent .wpcf7-response-output {
    margin-top: 0 !important;
}

.wpcf7 textarea {
    width: 100%;
    height: 150px;
}

.contact-card label {
    font-size: 18px;
    color: white;
    font-family: 'Poppins';
}

/*== == == CONTACT FORM END == == ==*/
/*== == System Pages == ==*/
.policy-wrapper h5, .policy-wrapper h6 {
    font-size: 22px;
}
header.page-header {
    color: var(--flint);
}

section.error-404.not-found {
    padding: 100px 0px;
}
.policy-wrapper {
    color: var(--flint);
    margin-top: 50px;
}
.policy-wrapper a {
    color: white;
}
ul.service-list a {
    color: white;
    font-family: 'Poppins';
}
ul.service-list li::marker {
    color: var(--flint);
}

/*== == System Pages END == ==*/
