.cta-header{
  display: inline-block;
  background-color: red;
  border-radius: 40px;
  padding: 3px 12px;
  color: #fff;
}

.bg-pulse,
.button-pulse {
  position: absolute;
  height: 35px;
  width: 120px;
  padding: 2px 12px;
  margin-top: 5px;
  border-radius: 40px;
  margin-right: 10px;
}

.bg-pulse {
  animation: pulse 1.2s ease infinite;
  background: #e81a1a;
}

.button-pulse {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 99;
  border: none;
  background: #e81a1a;
  background-size: 18px;
  cursor: pointer;
  outline: none;
}

.button-pulse a {
  position: absolute;
  color: #FFF;
  font-size: 17px;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  max-height: 380px;
  overflow: hidden;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body,
html {
  font-family: "Open Sans";
}

*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

*:hover {
  text-decoration: none !important;
}

ul {
  font-size: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.clearfix {
  clear: both;
}

.container {
  max-width: 1650px;
}

.pclr {
  color: #293E92 !important;
}

.sclr {
  color: #E5001B !important;
}

p {
  font-size: 16px;
  line-height: 24px;
  color: #484848;
  font-weight: 100;
}

p strong {
  font-weight: 700;
}

p big {
  font-size: 19.2px;
  /*23px*/
}

p small {
  font-size: 19.2px;
}

p.phrase {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 48px;
  /*48*/
  line-height: 48px;
  /*48*/
  margin-bottom: 65px;
}

p.phrase.light {
  font-size: 30px;
  /*30*/
  font-weight: 400;
  margin: 0;
}

/** Novas Melhorias ::: 10/02/2020 **/

.header-top-social{
  display: block;
  width: 100%;
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #f4f4f4;
}

.header-top-social ul {
  max-width: 97%;
}

.header-top-social ul li{
  display: inline-block;
  list-style: none;
}

.header-top-social ul li img{
  max-width: 12px;
}

.main-menu{
  padding-top: 0;
  padding-bottom: 0;
}

.whatsapp-icon{
  font-size: 21px;
}

.main-footer{
  padding-top: 45px;
  background: #00000003;
}

.service-item{
  max-width: 90%;
}

.fix-col-padding{
  padding-left: 40px;
  padding-right: 40px;
}

.index-video {
    height: 100%;
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    z-index: -100;
    right: 0;
    bottom: 0;
    background: url(../img/index-image.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

nav ul#mainmenu li.hasflag {
  margin-right: 0px!important;
}

nav ul#mainmenu li.hasflag img {
  max-width: 40px;
}

.hd_logo{
  border-radius: 8px;
}

@media only screen and (max-width: 640px) {
  p.phrase {
    font-size: 32px;
    /*24*/
    line-height: 40px;
    /*40*/
  }

  .service-item{
    max-width: 100%;
  }

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto";
  color: #293E92;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  /*48*/
  line-height: 64px;
  /*64*/
}

h2 {
  font-size: 32px;
  /*32*/
  line-height: 40px;
  /*40*/
}

h3 {
  font-size: 25.6px;
  /*25*/
  line-height: 32px;
  /*32*/
}

a.link {
  font-family: "Roboto";
  font-size: 25.6px;
  /*25*/
  font-weight: 700;
  color: #E5001B;
}

.btn {
  font-family: "Open Sans";
  font-size: 19.2px;
  font-weight: 400;
  background-color: #9c9c9c;
  border: 1px solid #9c9c9c !important;
  color: white;
  padding: 20px 50px !important;
  border-radius: 50px;
  -ms-box-shadow: 0px 5px 10px 0px rgba(229, 0, 27, 0.5);
  -o-box-shadow: 0px 5px 10px 0px rgba(229, 0, 27, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(229, 0, 27, 0.5);
}

.btn:hover,
.btn:focus {
  color: white;
  background-color: #505050 !important;
  border: 1px solid #505050 !important;
}

.btn.btn-full {
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .btn {
    padding: 20px 30px !important;
  }
}

.btn.btn-primary {
  background-color: #293E92 !important;
  border: 1px solid #293E92 !important;
  color: white;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #182556 !important;
  border: 1px solid #182556 !important;
}

.btn.btn-secondary {
  background-color: #E5001B !important;
  border: 1px solid #E5001B !important;
  color: white;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background-color: #990012 !important;
  border: 1px solid #990012 !important;
}

@media only screen and (max-width: 640px) {
  .hmb {
    display: none;
  }
}

header {
  padding-top: 30px;
  padding-bottom: 30px;
}

header .hd_logo {
  width: 100%;
  max-width: 310px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

header .opmm {
  display: none;
}

header .opmm i {
  font-size: 32px;
  color: #293E92;
  margin-right: 15px;
  margin-top: 15px;
}

@media only screen and (max-width: 640px) {
  header .opmm {
    display: block;
  }
}

nav {
  padding-top: 25px;
}

nav ul#mainmenu {
  font-size: 24px;
  /*24*/
  color: #484848;
}

nav ul#mainmenu li {
  display: inline-block;
  margin-right: 30px;
}

nav ul#mainmenu li.lessmargin {
  margin-right: 15px;
}

nav ul#mainmenu li.inmob {
  display: none;
}

@media only screen and (max-width: 640px) {
  nav ul#mainmenu li.inmob {
    display: inline-block;
  }
}

@media only screen and (max-width: 640px) {
  nav ul#mainmenu li.indesk {
    display: none;
  }
}

nav ul#mainmenu li a {
  color: inherit;
  transition: 0.4s all ease;
}

nav ul#mainmenu li a:hover,
nav ul#mainmenu li a.active {
  color: #E5001B;
}

@media only screen and (max-width: 1400px) {
  nav ul {
    font-size: 16px !important;
    /*16*/
  }
}

@media only screen and (max-width: 640px) {
  nav {
    display: none;
    background-color: #293E92;
    margin-top: 30px;
    padding-bottom: 35px;
  }

  nav ul#mainmenu {
    text-align: center;
  }

  nav ul#mainmenu li {
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }

  nav ul#mainmenu li a {
    color: white;
  }

  nav ul#mainmenu li a:hover,
  nav ul#mainmenu li a.active {
    color: white;
    background-color: #E5001B;
  }

  nav ul#mainmenu li.hasflag {
    display: none;
  }
}

footer {
  padding-top: 100px;
}

footer ul#social {
  width: 100%;
  margin-top: 30px;
}

footer ul#social li {
  display: inline-block;
  margin-right: 10px;
}

footer ul#social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 55px;
  text-align: center;
  border: 1px solid #191919;
  color: #191919;
  transition: 0.2s all ease;
  border-radius: 50%;
}

footer ul#social li a i {
  font-size: 26px;
}

footer ul#social li a:hover {
  color: white;
  border: 1px solid #E5001B;
  background-color: #E5001B;
}

@media only screen and (max-width: 640px) {
  footer ul#social {
    margin-bottom: 30px;
  }

  footer ul#social li {
    margin-right: 10px;
  }

  footer ul#social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

footer ul#footmenu {
  font-size: 16px;
  width: 100%;
}

footer ul#footmenu li {
  width: 100%;
  margin-bottom: 20px;
}

footer ul#footmenu li a {
  color: #484848;
  transition: 0.2s all ease;
}

footer ul#footmenu li a:hover,
footer ul#footmenu li a.active {
  color: #E5001B;
}

footer .copyright {
  border-top: 1px solid #1919191f; /* #191919 */
  padding-top: 40px;
  padding-bottom: 20px;
  margin-top: 30px;
}

footer .copyright .logosorocabacom {
  float: right;
  display: block;
}

@media only screen and (max-width: 640px) {
  footer .copyright .logosorocabacom {
    float: none;
    margin: 0 auto;
  }
}

footer .copyright p {
  font-size: 16px;
}

@media only screen and (max-width: 640px) {
  footer .copyright p {
    text-align: center !important;
  }
}

@media only screen and (max-width: 640px) {
  footer {
    padding-top: 30px;
  }
}

.form-control {
  border: none;
  border-bottom: 2px solid #293E92;
  border-radius: 0;
  color: #484848;
  padding-left: 0;
  padding-right: 0;
}

label {
  font-size: 16px;
  color: #293E92;
}

label.error {
  font-size: 13.3333333333px;
  color: white;
  background-color: #E5001B;
  padding: 5px 10px;
}

.form-group {
  margin-bottom: 60px;
}

.form-group-fix{
  margin-bottom: 25px;
}

.mb-5, .my-5 {
    margin-bottom: 1rem!important;
}

@media only screen and (max-width: 640px) {
  .form-group {
    margin-bottom: 40px;
  }
}

.rangeinput {
  width: 100%;
  padding-top: 15px;
  position: relative;
}

.rangeinput .slider {
  -webkit-appearance: none;
  /* Override default CSS styles */
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 2px;
  background: #293E92;
  outline: none;
  position: relative;
  transition: 0.2s all ease;
}

.rangeinput ::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: white;
  border: 2px solid #E5001B;
  cursor: pointer;
  border-radius: 50%;
}

.rangeinput ::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #4CAF50;
  cursor: pointer;
}

.rangeinput .minrange,
.rangeinput .maxrange {
  font-size: 13.3333333333px;
  color: #484848;
  position: absolute;
  bottom: 30px;
  z-index: 1;
}

.rangeinput .minrange {
  left: 0;
}

.rangeinput .maxrange {
  right: 0;
}

.rangeinput .getrange {
  color: white;
  text-align: color;
  width: 35px;
  height: 35px;
  margin: 20px auto 0 auto;
  line-height: 35px;
  background-color: #E5001B;
  border-radius: 50%;
}

#response {
  display: none;
}

.hideselect {
  display: none;
}

.owlhome {
  margin-bottom: 65px;
}

.owlhome .item {
  height: 100%;
  max-height: 450px; /* 900px */
  overflow: hidden;
}

.owlmsgs {
  margin-top: 130px;
}

@media only screen and (max-width: 640px) {
  .owlmsgs .m_info {
    text-align: center;
  }
}

.owlmsgs .item {
  background-color: #F6F6F6;
  padding: 40px 60px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.owlmsgs .item img {
  border-radius: 50%;
}

.owlmsgs .item i {
  font-size: 12.3076923077px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.owlmsgs .item i.fas {
  color: #E5001B;
}

.head {
  padding-top: 190px;
  padding-bottom: 190px;
  margin-bottom: 65px;
  background-color: #293E92;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.head-why-fabulous{
  background-position: top center;
  background-attachment: inherit!important;
}

.head h1 {
  color: white;
  text-shadow: 2px 2px 2px #0000008f;
  text-shadow: 2px 2px 2px #0000008f;
}

@media only screen and (max-width: 640px) {
  .head {
    padding-top: 65px;
    padding-bottom: 65px;
    margin-bottom: 30px;
  }
}

#fabulous {
  position: relative;
  z-index: 98;
}

#fabulous #usaflag {
  width: 827px;
  height: 597px;
  position: absolute;
  top: -190px;
  right: 0;
  z-index: 98;
  background-image: url("https://fabulouscleaners.us/homologacao/assets/images/usa_flag.png");
  background-repeat: no-repeat;
  background-position: center center;
}

@media only screen and (max-width: 640px) {
  #fabulous #usaflag {
    width: 100%;
    height: 500px;
    top: -75px;
    background-size: cover;
  }
}

.s_row {
  margin-bottom: 65px;
}

.s_row p{
  text-align: justify !important;
}

.s_row .s_content {
  padding-top: 55px;
}

@media only screen and (max-width: 640px) {
  .s_row {
    margin-bottom: 40px;
  }

  .s_row .s_content {
    padding-top: 20px;
  }

  .quotes{
    padding: 50px 0!important;
  }

  .quotes:before {
    top: 0px!important;
  }

  .quotes:after {
    bottom: 0px!important;
  }

  .killoffet-1{
    margin: 0!important;
  }


}

.quotes {
  background-color: #f6f6f6;
  position: relative;
  margin-bottom: 40px; /* 130px */
  padding: 30px 0; /* 60px 0 */
}

.quotes:before{
  content: "";
  width: 40px;
  height: 33px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-image: url("https://fabulouscleaners.us/homologacao/assets/images/quotes.png");
}

.quotes:after {
  content: "";
  width: 40px;
  height: 33px;
  position: absolute;
  z-index: 1;
  background-image: url("https://fabulouscleaners.us/homologacao/assets/images/quotes-right.png");
}


.quotes:before {
  top: 30px;
  left: 30px;
}

.quotes:after {
  bottom: 30px;
  right: 30px;
}

.q_alert {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.q_alert .alert-success {
  text-align: center;
  padding: 75px 0;
  border-radius: 0px;
}

.video {
  overflow: hidden;
  position: relative;
  margin-top: 70px;
  margin-bottom: 30px;
  transition: 0.2s all ease;
}

.video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 62, 146, 0.9);
}

.video.off:after {
  content: none;
}

.video .v_play {
  text-align: center;
  width: 140px;
  height: 140px;
  line-height: 100%;
  vertical-align: middle;
  position: absolute;
  padding: 50px;
  top: 50%;
  margin-top: -70px;
  left: 50%;
  margin-left: -70px;
  z-index: 2;
  background-color: #293E92;
  cursor: pointer;
  opacity: 0.8;
  border-radius: 50%;
  transition: 0.2s all ease;
}

.video .v_play i {
  font-size: 32px;
  color: white;
  padding: 0;
  margin: 0;
}

.video .v_play:hover {
  width: 180px;
  height: 180px;
  margin-top: -90px;
  margin-left: -90px;
  padding: 70px;
  opacity: 1;
  background-color: #E5001B;
}

@media only screen and (max-width: 640px) {
  .video .v_play {
    width: 70px;
    height: 70px;
  }
}

.c_row {
  margin-bottom: 30px; /* 130px */
  position: relative;
  z-index: 99;
}

.ic_row {
  margin-bottom: 30px; /* 100px */
}

@media only screen and (max-width: 640px) {
  .ic_row {
    text-align: center;
    margin-bottom: 40px;
  }
}


.ic_circle_new img {
  max-width: 90px; /** 110px **/
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 100px;
  border: 1px dashed blue;
}

.ic_circle img {
  max-width: 110px; /** 110px **/
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

.ic_circle_photo img {
  /* max-width: 200px; /** 110px **/
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

.ic_circle_fix{
  margin: -30px auto 0 auto;
}

.ic_title {
  margin-top: -10px;
  font-size: 24px;
  font-family: "Open Sans";
  font-weight: 700;
  line-height: 27px;
  color: #293E92;
  margin-bottom: 32px;
}

.ic_content {
  font-size: 16px;
  /*16*/
  line-height: 22px;
  /*20*/
}

.ic_content_fix{
  margin-top: -18px;
}

ul.catmenu {
  font-size: 15.2px;
  /*19*/
  margin-top: 20px;
}

ul.catmenu li {
  width: 100%;
  margin-bottom: 5px;
}

ul.catmenu li a {
  display: block;
  background-color: #F6F6F6;
  padding: 20px;
  color: #484848;
  transition: 0.2s all ease;
}

ul.catmenu li a span {
  font-size: 13.3333333333px;
}

ul.catmenu li a:hover,
ul.catmenu li a.active {
  color: white;
  background-color: #293E92;
}

ul.catmenu li a:hover span,
ul.catmenu li a.active span {
  font-size: 13.3333333333px;
  color: white !important;
}

.p_feed {
  margin-bottom: 64px;
}

.p_feed.p_recent {
  margin-bottom: 15px;
}

.p_feed.p_recent .p_date {
  margin-top: 5px;
  margin-bottom: 5px;
}

.p_feed .p_entry {
  padding: 30px;
  background-color: #F6F6F6;
}

.p_feed img {
  display: block;
}

.p_feed .p_date {
  margin-top: 20px;
  margin-bottom: 20px;
}

.p_entry_read h1 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.p_entry_read .p_date {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-title{
  font-size: 35px!important;
  margin-top: 25px!important;
  margin-bottom: 25px!important;
}

.p_entry h2{
  font-size: 22px;
}

.p_entry a.link{
  font-size: 16px;
}

.p_recent h3{
  font-size: 20px;
}

.blog-img{
    max-height: 180px;
    object-fit: scale-down;
    padding: 10px;
    object-position: left;
}

@media screen and (max-width: 992px){

  h1{
    font-size: 26px!important;
    line-height: 28px!important;
    margin-bottom: 27px; 
  }

  .header-top-social img{
    width: 30px!important;
    margin-left: 15px!important;
  }

  nav ul {
    font-size: 20px !important;
  }

  p {
    font-size: 20px;
  }

  .ic_content {
    font-size: 20px;
  }

  footer .copyright p {
    font-size: 20px;
  }

  .justify h2{
    text-align: left !important;
  }

}

@media screen and (max-width: 600px){
  .pressure-wash-bg{
    background-image: url('https://fabulouscleaners.us/assets/images/pressure-washing/pressure-washing-cape-cod-massachusetts.jpg') !important;
    background-position: bottom !important;
    background-size: contain !important;
    width: 100%;
  }

  .head-home-bg{
    background-image: url('https://fabulouscleaners.us/assets/images/fabulous-cleaners-came-cod-cleaning-company-mobile.jpg') !important;
  }
}
