/* GENERAL */
html, body {
    overflow-x: hidden;
    scroll-padding-top: 145px;
}
iframe {
  max-width: 100%;
}
p, li, a {
    font-size: 18px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
a {
    color: #2d5ba7;
}

li {
    padding-bottom: 5px;
}
a:hover {
    color: #ef8339;
}
.text-blue {
    color: #2d5ba7;
}
b, strong {
    font-family: inherit;
    font-weight: 700;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.orange-text {
    color: #ef8339;
}
/* NAV CSS START */
#top-header {
    background-color: #fff;
}
#top-header .top-bar {
    padding: 5px 0;
}
.top-bar ul {
    padding-inline-start: 0;
}
.top-bar ul li {
    list-style: none;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
}
.top-bar a.red-btn {
    background-color: #ef8339;
    color: #fff;
    width: 175px;
    padding: 10px 15px;
    border: 1px solid #ef8339;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 1s ease all;
    text-transform: uppercase;
    display: block;
    text-align: center;
}
.top-bar a.red-btn:hover {
    background-color: transparent;
    color: #ef8339;
}
#navigation {
    position: relative;
    width: 100%;
    height: auto;
    transition: all 0.5s;
    z-index: 99;
    background-color: #2d5ba7;
    display: flex;
    align-items: center;
}
#navigation .main-nav {
    height: 100px;
}
#navigation .main-nav .col-md-12 {
    display: flex;
    justify-content: center;
}
.nav-menu, .nav-menu * {
    list-style: none;
    padding-inline-start: 0px;
}
.nav-menu > ul {
    margin-bottom: 0;
}
.nav-menu > ul > li {
    position: relative;
    margin-right: 0px;
    white-space: nowrap;
    float: left;
}
.nav-menu a, .nav-menu p {
    font-size: 16px !important;
    line-height: 3.75rem;
    border-radius: 3px;
    padding: 0 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    text-decoration: underline;
}
.nav-menu a.active, .drop-down.active {
    background-color: #3366cc;
    color: #fff !important;
}
.nav-menu a.active {
    background-color: #3366cc;
    color: #fff !important;
    border-left: 3px solid #fda703;
}
.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    margin-top: 30px;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}
.nav-menu .drop-down:hover > ul {
    opacity: 1;
    visibility: visible;
    border-top: 3px solid #ef8339;
    border-radius: 5px;
}
.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
    padding: 0 5px;
}
.nav-menu .drop-down li:hover {
    background-color: #2d5ba7;
    width: 100%;
    border-left: 3px solid #ef8339;
}
.nav-menu .drop-down ul a {
    padding: 5px 10px;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase !important;
    color: black !important;
    text-transform: uppercase;
}
.nav-menu .drop-down.parent.active ul a.active, .nav-menu .drop-down.parent.active ul li:hover, .nav-menu .drop-down.parent.active ul li a:hover, .nav-menu .drop-down ul li:hover, .nav-menu .drop-down ul li a:hover {
    color: #fff !important;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #fff !important;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -300px;
    width: 300px;
    padding-top: 18px;
    background: #3366cc;
    transition: 0.4s;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a, .mobile-nav p {
    display: block;
    position: relative;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
.mobile-nav .get-started a {
    background: #eb5d1e;
    color: #fff;
    border-radius: 50px;
    margin: 15px;
    padding: 10px 25px;
}
.mobile-nav .get-started a:hover {
    background: #ee7843;
    color: #fff;
}
.mobile-nav .drop-down > a:after, .mobile-nav .drop-down > p:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
    content: "\eaa0";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
.mobile-nav-toggle i {
    color: #3366cc;
    background-color: #fff;
    padding: 10px;
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: #3366cc;
    opacity: 1;
    overflow: hidden;
    display: none;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
    top: 20px;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
    background-color: transparent;
}

/* STICKy NAVIGATION */
.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    background-color: #fff !important;
    background-image: none !important;
}
/*.sticky .nav-menu a {
    color: #000;
}*/
.sticky .parent.active a {
    color: #fff;
    font-weight: 700;
}
.sticky + .content {
    padding-top: 102px;
}
.dropdown-menu {
    border: 0px;
    border-top: 3px solid;
    border-radius: 0;
    position: absolute;
    z-index: 1000;
    float: left;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}
/* NAV CSS END */

/* body css */
/* Slider */
.mySlides {
    display: none;
}
/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}
.slide-1 {
    background-image: url(../images/Chair-Lift-Installation.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.slide-1 h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 0;
}
.slide-1 h2.orange-text {
    font-size: 55px;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
    color: #ef8339;
    padding-left: 85px;
}
.slide-1 h3 {
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    background-image: url(../images/slide-1-text-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.slide-1 h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}
.slide-1 .red-btn,.slide-2 .red-btn,.slide-3 .red-btn {
    background-color: #ef8339;
    color: #fff;
    width: max-content;
    padding: 15px 37px;
    border: 1px solid #ef8339;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 1s ease all;
}
.slide-1 .red-btn:hover,.slide-2 .red-btn:hover,.slide-3 .red-btn:hover {
    background-color: transparent;
}
.slide-2 {
    background-image: url(../images/slide-2-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.slide-2 h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    position: relative;
}
.slide-2 .text-right {
    margin-right: 25%;
}
.slide-2 .text-left {
    position: relative;
}
.slide-2 .text-left:before {
    content: "";
    background-image: url(../images/slide-2-start-quote.png);
    display: block;
    width: 82px;
    height: 60px;
    position: absolute;
    top: -50%;
    left: 0;
}
.slide-2 .text-left:after {
    content: "";
    background-image: url(../images/slide-2-close-quote.png);
    display: block;
    width: 82px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 75%;
}
.slide-3 {
    background-image: url(../images/slide-3-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 0;
}
.slide-3 h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
}
.slide-3 h2.orange-text {
    font-size: 55px;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
    color: #ef8339;
}
.slide-3 h5.text-black {
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}
/* slider nav arrows */
.prev,.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-size: 48px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover,.next:hover {
    color: rgba(0, 0, 0, 0.8);
}
/* slider nav arrows */
/*#hero {
    background-image: url(../images/header-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    top: 155px;
}
.hero-text h1 {
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 48px;
    line-height: 60px;
}
.hero-text h4 {
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    text-transform: inherit;
    margin-bottom: 25px;
}
.hero-form.text-center {
    background-color: #ef8339;
    padding: 10px;
}
.hero-form.text-center h4 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
}
#hero .bg-white {
    box-shadow: 0px 2px 2px 2px rgb(0 0 0 / 30%);
}
#hero .bg-white h5 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
}*/
h2.sec-title {
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
}
.ylw-txt.img-title {
    background-color: #2d5ba7;
    padding: 5px;
    color: #fbe22e;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 30px;
}
#home-3 .red-btn,#home-2 .red-btn,#footer .red-btn {
    background-color: #ef8339;
    color: #fff;
    width: max-content;
    padding: 15px 37px;
    border: 1px solid #ef8339;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 1s ease all;
}
#home-2 .red-btn:hover,#footer .red-btn:hover {
    background-color: transparent;
    color: #fff;
    width: max-content;
}
#home-3 .red-btn:hover {
    background-color: transparent;
    color: #ef8339;
    width: max-content;
}
.ylw-txt {
    color: #fbe22e;
}
#home-4 .red-btn {
    background-color: #ef8339;
    color: #fff;
    width: max-content;
    padding: 10px 25px;
    border: 1px solid #ef8339;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 1s ease all;
}
#home-4 .red-btn:hover {
    background-color: transparent;
}
hr {
    color: #fbe22e;
    opacity: 1;
}
.question h5 {
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    color: #fff;
    flex: 1;
    text-transform: uppercase;
    font-size: 20px;
}
.question p {
    margin: 0;
    color: #fff;
}
#home-6 {
    background-image: linear-gradient(to bottom,rgba(8, 89, 158, 0.2) 0%,rgba(8, 89, 158, 0.2) 0%,white 25%,white 100%);
}
#home-6 .home-blog-title a,#blog-arc .home-blog-title a {
    text-decoration: none;
}
#home-6 .home-blog-title a h3,#blog-arc .home-blog-title a h3 {
    color: #000;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    min-height: 105px;
}
#home-6 .red-btn,#blog-arc .red-btn {
    background-color: #ef8339;
    color: #fff;
    width: max-content;
    padding: 10px 25px;
    border: 1px solid #ef8339;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 1s ease all;
}
#home-6 .red-btn:hover,#blog-arc .red-btn:hover {
    background-color: transparent;
    color: #ef8339;
    width: max-content;
}
#footer {
    background-color: #313233;
}
#footer .footer-form {
    background-color: #2d5ba7;
}
#footer .footer-form input {
    width: 100%;
}
#footer label {
    color: #fff;
}
.footer-form input.button.red-btn {
    background-color: #ef8339;
    color: #fff;
    width: max-content;
    padding: 5px 15px;
    border: none;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
}
.footer-form .form-txt {
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 35px;
}
.footer-form .form-txt span {
    text-decoration: underline;
    text-decoration-color: #ef8339;
    text-underline-offset: 5px;
}
#footer .quick-links {
    padding-inline-start: 0;
}
#footer li {
    list-style: none;
}
#footer li a  {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
#foo-copyright {
    background-color: #000;
}
#foo-copyright a {
    text-decoration: none;
    color: #fff;
}
#inner-pg-hero {
    background-image: linear-gradient(to bottom,#2d5ba7 0%,#2d5ba7 80%,#fff 80%,#fff 100%);
}
.breadcrumbs ul {
    padding-inline-start: 0;
}
.breadcrumbs ul li {
    list-style: none;
    display: inline-flex;
    justify-content: left;
}
.breadcrumbs ul li a {
    color: #fff;
    text-decoration: none;
}
#inner-pg-hero .pg-title h1 {
    color: #fff;
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
}

#abt-1 ul li,#abt-3 ul li,.custom-bullet-blue li {
    list-style-image: url(../images/blue-bullet.png);
}
.custom-bullet-white li {
    list-style-image: url(../images/white-bullet.png);
}
.bg-blue {
    background-color: #2d5ba7;
}
#abt-2 ul li {
    list-style-image: url(../images/home-5-bullet.png);
}
/* NEW HEADER */
body > header > .wrap {
    padding-left: 1rem;
    padding-right: 1rem;
}
.menu {
    display: none;
}
.mobileOnly {
    display: none !important;
}
#mainnav {
    overflow: visible;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #2d5ba7;
    border-bottom: 2px solid #ef8339;
    z-index: 999;
}
#mainnav:after {
    height: calc(100% - 129px);
}
#mainnav .megamenu,#mainnav:after {
    transition: z-index 0s linear 1.4s, top 0s linear 1.5s,
    opacity 0.5s ease-out 1s;
}
#mainnav:after {
    content: "";
    position: fixed;
    bottom: -200vh;
    opacity: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    width: 100vw;
    height: calc(100% - 162px);
    background: rgba(2, 21, 37, 0.8);
    -webkit-backdrop-filter: blur(0.25em);
    backdrop-filter: blur(0.25em);
}
#mainnav ul {
    text-align: center;
    overflow: visible;
    margin: 0;
    padding: 0;
}
#mainnav li {
    list-style: none;
    line-height: 5.25rem;
    display: inline-block;
    transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    padding-bottom: 0;
}
#mainnav a {
    font-size: 16px !important;
    line-height: 3.75rem;
    border-radius: 3px;
    padding: 0 15px;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.125em;
    color: #fff;
    text-transform: uppercase;
}
#mainnav .megamenu,#mainnav:after {
    transition: z-index 0s linear 1.4s, top 0s linear 1.5s,opacity 0.5s ease-out 1s;
}
#mainnav .megamenu {
    padding: 0;
    position: absolute;
    left: 0;
    width: 100%;
    background: #08589d;
    z-index: -1;
    top: -100vh;
    opacity: 0;
}
#mainnav li:focus .megamenu,#mainnav li:hover .megamenu,#mainnav:hover:after {
    transition: z-index 0s linear 0.5s, top 0s linear 0.5s,opacity 0.5s ease-in 0.5s;
    padding-bottom: 25px;
}
#mainnav li:hover .megamenu,#mainnav li:focus-within .megamenu {
    z-index: 1;
    top: 100%;
    opacity: 1;
}
#mainnav .megamenu.category-megamenu .wrap .category-brief {
    width: 33.33%;
    text-align: left;
    line-height: 1.25em;
}
#mainnav .megamenu.category-megamenu .wrap .category-brief .category-title {
    display: block;
    line-height: 1.25em;
    margin-bottom: 0.25em;
    font-weight: 700;
    font-size: 2.25rem;
    color: #fbe22e;
}
#mainnav .megamenu.category-megamenu .wrap .category-brief p {
    font-size: 18px !important;
    margin-bottom: 1.75em;
    color: #fff;
    line-height: 28px;
}
#mainnav .megamenu.category-megamenu .wrap .category-brief .button {
    color: #fff;
    line-height: 1em;
    padding: 1.1em 2.2em;
    background-color: #ef8339;
}
#mainnav .megamenu ul { 
    position: relative;
    width: 30%;
    margin-left: 1em;
    padding: 0;
    text-align: left;
    background: 0 0;
    top: auto;
    visibility: visible;
    z-index: 1;
    opacity: 1;
}
#mainnav li ul {
    z-index: 1;
    width: 200px;
    padding: 1em 0;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    overflow: auto;
    height: auto;
    top: -200vh;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: ease 200ms opacity 0.5s;
}
#mainnav .megamenu li {
    padding: 0;
    width: auto;
    float: none;
    line-height: 1.25em;
    margin-bottom: 5px;
}
#mainnav li ul li {
    width: 100%;
    display: block;
    float: left;
}
#mainnav .megamenu.category-megamenu .wrap ul li a {
    font-weight: 700;
    position: relative;
    width: 100%;
    padding: 10px 25px;
    font-size: 1.1875rem;
    color: #fff;
    line-height: 1.8125rem;
    background: #06477f;
    border-radius: 5px;
    text-transform: uppercase;
}
#mainnav .megamenu ul li a {
    color: #114f80;
    line-height: 1.25em;
    width: auto;
    float: none;
}
#mainnav .megamenu.category-megamenu .wrap ul li a:before {
    content: "\ea94";
    font-family: icofont;
    transition: ease all 200ms;
    display: block;
    height: 1.25em;
    width: 1.25em;
    position: absolute;
    top: 0.5rem;
    right: 0.625rem;
}
#mainnav .megamenu.category-megamenu .wrap .category-image {
    width: 33.33%;
    margin-left: 1em;
    min-height: 17.75em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
header .wrap {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    padding-top: 2.8125rem;
    padding-bottom: 0;
    margin: 0 auto;
    background: #08589d;
    max-width: 72.75em;
    position: static;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
body > * > .wrap {
    width: 100%;
    max-width: 74rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.inner-pg #testi-1 .col-md-10 {
    display: flex;
    align-items: center;
    position: relative;
}
.inner-pg #testi-1 .col-md-10 .testi-content {
    width: 90%;
    padding-right: 20px;
}
.text-ylw {
    color: #fbe22e;
    font-weight: 700;
}
#img-gal-1 img {
    margin-bottom: 24px;
}
#img-gal-1 .seven {
    margin-right: 9px;
}
#fihc-2 .offset-md-1.col-md-10 {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
#fihc-2 input {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
}
#fihc-2 ::placeholder {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #5c5c5c;
}
#fihc-2 .red-btn {
    background-color: #c81517;
    color: #fff;
    width: max-content;
    padding: 10px 25px;
    border: 1px solid #c81517;
    font-family: roboto condensed, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}
#fihc-2 .red-btn:hover {
    background-color: transparent;
    color: #c81517;
}
#contact-pg-3 .gradient-bg {
    background-image: linear-gradient(to right,#dbc31e 0%,#dbc31e 0%,#b81d24 9%,#b81d24 33.33%,#dbc31e 33.33%,#dbc31e 33.33%,#b81d24 42.33%,#b81d24 66.66%,#dbc31e 66.66%,#dbc31e 66.66%,#b81d24 75.66%,#b81d24 100%);
}
#contact-pg-3 .col-md-4 ul {
    padding-inline-start: 0;
}
#contact-pg-3 .col-md-4 li {
    list-style: none;
}
#contact-pg-3 .col-md-4 li p {
    padding-inline-start: 90px;
}
#contact-pg-3 .col-md-4 ul img {
    display: inline-block;
    float: left;
}
#map .shadow-bg {
    box-shadow: 10px 15px 0px 0px #fbe22e;
    padding: 0;
}