* { border: 0; box-sizing: border-box; margin: 0; padding: 0;}
body {   font-family: "Roboto", helvetica, arial, sans-serif;}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap');
a {color: inherit; font-family: inherit;font-size: inherit; text-decoration: none;}

/*======================================================
                          Navbar
  ======================================================*/
#navbar {
  background:#e33e52;
  color: rgb(13, 26, 38);
  position: fixed;
  top: 0;
  height:77px;
  line-height: 60px;
  width: 100vw;
  z-index: 10;
}
/* latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunitosans/v6/pe0qMImSLYBIv1o4X1M8cce9I9s.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.nav-wrapper {
  margin: auto;
  text-align: center;
  width: 70%;padding-top: 12px;
}
} @media(max-width: 768px) {
    .nav-wrapper {
      width: 90%;
    }
  } @media(max-width: 638px) {
      .nav-wrapper {
        width: 100%;
      }
    } 

.logo {
  float: left;
  margin-left: 28px;
  font-size: 1.5em;
  height: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
} 

#navbar ul {
  display: inline-block;
  float: right;
  list-style: none;
  /* margin-right: 14px; */
  margin-top: -2px;
  text-align: right;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
} @media(max-width: 640px) {
    #navbar ul {
      display: none;
    }
  } @media(orientation: landscape) {
      #navbar ul {
        display: inline-block;
      }
    }
@media(max-width: 790px) {
    #navbar ul {
      display: none;
    }
  } 
#navbar li {
  display: inline-block;
}

#navbar li a {
  color:#fff;
  display: block;
  font-size: 13px;
  height: 50px;
  letter-spacing: 1px;
  margin: 0 20px;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

#navbar li a:hover {
  /* border-bottom: 1px solid rgb(28, 121, 184); */
  color: rgb(28, 121, 184);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

/* Animated Bottom Line */
#navbar li a:before, #navbar li a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -1px;
  background: rgb(13, 26, 38);
}

#navbar li a:before {
  left: 0;
  transition: 0.5s;
}

#navbar li a:after {
  background: rgb(13, 26, 38);
  right: 0;
  /* transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); */
}

#navbar li a:hover:before {
  background: rgb(13, 26, 38);
  width: 100%;
  transition: width 0.5s cubic-bezier((0.22, 0.61, 0.36, 1));
}

#navbar li a:hover:after {
  background: transparent;
  width: 100%;
  /* transition: 0s; */
}



/*======================================================
                    Mobile Menu Menu Icon
  ======================================================*/
@media(max-width: 790px) {
  .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 15px;
    top: 20px;
    height: 23px;
    width: 27px;
    z-index: 12;
  }

  /* Icon Bars */
  .icon-bars {
    background: rgb(13, 26, 38);
    position: absolute;
    left: 1px;
    top: 45%;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  } 

  .icon-bars::before {
    background: rgb(13, 26, 38);
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    height: 2px;
    width: 20px;
/*     -webkit-transition: top 0.2s ease 0.3s;
    transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  .icon-bars::after {
    margin-top: 0px;
    background: rgb(13, 26, 38);
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 20px;
/*     -webkit-transition: top 0.2s ease 0.3s;
    transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  /* Bars Shadows */
  .icon-bars.overlay {
    background: rgb(97, 114, 129);
    background: rgb(183, 199, 211);
    width: 20px;
    animation: middleBar 3s infinite 0.5s;
    -webkit-animation: middleBar 3s infinite 0.5s;
  } @keyframes middleBar {
      0% {width: 0px}
      50% {width: 20px}
      100% {width: 0px}
    } @-webkit-keyframes middleBar {
        0% {width: 0px}
        50% {width: 20px}
        100% {width: 0px}
      }

  .icon-bars.overlay::before {
    background: rgb(97, 114, 129);
    background: rgb(183, 199, 211);
    width: 10px;
    animation: topBar 3s infinite 0.2s;
    -webkit-animation: topBar 3s infinite 0s;
  } @keyframes topBar {
      0% {width: 0px}
      50% {width: 10px}
      100% {width: 0px}
    } @-webkit-keyframes topBar {
        0% {width: 0px}
        50% {width: 10px}
        100% {width: 0px}
      }

  .icon-bars.overlay::after {
    background: rgb(97, 114, 129);
    background: rgb(183, 199, 211);
    width: 15px;
    animation: bottomBar 3s infinite 1s;
    -webkit-animation: bottomBar 3s infinite 1s;
  } @keyframes bottomBar {
      0% {width: 0px}
      50% {width: 15px}
      100% {width: 0px}
    } @-webkit-keyframes bottomBar {
        0% {width: 0px}
        50% {width: 15px}
        100% {width: 0px}
      }


  /* Toggle Menu Icon */
  .menuIcon.toggle .icon-bars {
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars::before {
    top: 0;
    transition-delay: 0.1s;
    opacity: 0;
  }

  .menuIcon.toggle .icon-bars::after {
    top: 10px;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars.overlay {
    width: 20px;
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }
}


/*======================================================
                   Responsive Mobile Menu 
  ======================================================*/
.overlay-menu {
  background: lightblue;
  color: rgb(13, 26, 38);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 15px;
  transform: translateX(-100%);
  width: 100vw;
  height:25%;
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

.overlay-menu ul, .overlay-menu li {
  display: block;
  position: relative;
}

.overlay-menu li a {
  display: block;
  font-size: 24px;
  letter-spacing: 4px;
/*   opacity: 0; */
  padding: 10px 0;
  text-align: left;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
/* -webkit-transition: 0.2s opacity 0.2s ease-out;
   transition: 0.2s opacity 0.2s ease-out; */
}

.overlay-menu li a:hover,
.overlay-menu li a:active {
  color: rgb(28, 121, 184);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.banner { width: 100%; float: left;margin-top:4%;
    background: url(../images/banner.jpg) top center no-repeat;
    height: 470px;
    background-size: cover;}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 1200px;
}
.banner-text{width:45%;
    float:left;
    margin-top:9%;
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	background: hsl(353deg 75% 57% / 30%);
	    padding: 25px 30px; border-radius: 10px;
	}
.content-head {
    height: auto;
    width: auto;
    color: #222;
    text-decoration: none;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: left;
    line-height: 60px;
    letter-spacing: 0px;
    font-weight: 700;
    font-size: 40px;
    transform-origin: 50% 50%;
	text-shadow: 0px 6px 10px rgb(255 255 255 / 70%);
}
.banner-text p{
   font-family: 'Barlow', sans-serif;
    height: auto;
    width: auto;
    color:#fff;
    text-decoration: none;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: left;
    line-height: 26px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size:16px;text-shadow: 1px 3px 3px rgb(0 0 0 / 60%);
    transform-origin: 50% 50%;
    }
.Call-now {background:#e33e52;
    color: #fff !important;
    font-size: 1rem; margin-top: 10px;
    border: 0 none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    -webkit-appearance: none;
    padding: 1em;
    border-radius:25px !important;
    -webkit-box-shadow: 0 3px 3px rgb(0 0 0 / 42%);
    box-shadow: 0 3px 3px rgb(0 0 0 / 42%);
    -webkit-transition: .1s ease-in-out all;
    -o-transition: .1s ease-in-out all;
    transition: .1s ease-in-out all;}
.Call-now a{color: #fff;}
.Call-now:hover {
    background: #d4600e;
    color: #fff !important;
}
.col-12{ width: 100%; float: left; padding: 40px 0;}
.col-6-left{ width: 50%; float: left}
.col-6-right{ width: 50%; float: right}
.col-6-right img{ width:100%;}
.col-6-left img{ width:100%;}
.col-12 h1{ color:rgb(41 47 52); font-size:23px;
    letter-spacing: -1px !important;margin-bottom: 24px;}
.col-12 p{letter-spacing: 0.2px;
        color: #444; text-align: justify;
    font-family: 'Inter', sans-serif;font-size: 16px;
    line-height: 24px}
.list-city {margin-top: 24px}
.list-city li {font-size: 16px;
    line-height: 24px; margin-bottom: 18px; text-align: justify;
    position: relative;
   font-family: 'Inter', sans-serif; list-style:none;
    letter-spacing: 0.2px; margin-left: 29px;
    color: #393939;}
.padding-gap { padding:0  40px;}
.list-city li:before {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/list.png) !important;
    background-repeat: no-repeat;
    background-size: contain; margin-left: -34px;
}
.banner-with-text{width: 100%;
    float: left;
    margin-top: 3%;
    background: url("../images/banner-with-text.jpg")top center no-repeat;
    height: 470px;
    background-size: cover;
}
.bg-white{text-align:justify;
    background-color: #ffffffc2;
    width: calc(100% - 12px);
    padding: 60px 60px 84px;
    border-radius: 12px;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 50%);
    box-shadow: 0 0 12px rgb(0 0 0 / 50%);}
	
	
	
/*------contact us---------*/

.col-md-4, .col-md-12{position: relative;  width: 100%; /*padding-right: 15px;  padding-left: 15px;*/float: left;
} 
.col-md-12{width: 100%;}

.col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.wrappercon {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0 21px 41px -13px rgb(0 0 0 / 18%);
    -moz-box-shadow: 0 21px 41px -13px rgba(0,0,0,.18);
    box-shadow: 0 21px 41px -13px rgb(0 0 0 / 18%);
    background: #fff;
    margin: 30px 0px;
    float: left;
}

.dbox p { margin-bottom: 0;}
.dbox p span {
    font-weight: 400;
    color: rgba(0,0,0,.2);
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 0;
}

input:focus { 
    outline: none !important;
    border-color: #a01b2b;
        box-shadow: 0 0 10px #a01b2b52;
 }

.contactForm textarea {
    height: 90px;
    border: 1px solid #ccc!important;
    padding: 10px 20px!important;
    background: #fdf7fa;
    border-radius: 35px;
}

textarea:focus { 
    outline: none !important;
    border-color: #a01b2b;
    box-shadow: 0 0 10px #a01b2b52;
 }

.btn {
    padding: 12px 16px;
    cursor: pointer; 
    border-width: 1px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    -webkit-box-shadow: 0 10px 20px -6px rgb(0 0 0 / 12%);
    -moz-box-shadow: 0 10px 20px -6px rgba(0,0,0,.12);
    box-shadow: 0 10px 20px -6px rgb(0 0 0 / 12%);
    position: relative;
    margin-bottom: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
	border-radius: 25px;
}
.mt-5, .my-5 {
    margin-top: 3rem!important;
}
.p-md-5 { padding: 3rem!important;}
.social-media p a { color: #fff; text-transform: uppercase;
    font-size: 12px;
    margin-right: 10px;
    border: 1px solid #dcdcdc;
    padding: 5px 15px;
    margin-top: 10px;
    float: left;
    border-radius: 20px;
    font-weight: 700;
	background: #3e54aa;
    text-decoration: none;
}
.social-media p a:nth-child(2) {background:#5fb8fe;}
.social-media p a:nth-child(3) {background:#e04a91;}
.social-media p a:nth-child(4) {background:#ea4c88;}


.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
}


.btn.btn-primary { background: #f44336!important; border-color: #df3b2f!important;    color: #fff;}

.form-group { margin-bottom: 1rem;}
.mt-3{margin-top: 30px;}
.form-control {
    height: 45px;
    border: 1px solid #ccc!important;
    padding:10px 20px!important;
    border-radius: 35px;
    background: #fdf7fa;
}

.contact-wrap { background: #fff;}
.p-md-5 { padding: 2rem!important;}
.w-100 { width: 100%!important; float: left;}

/*------contact us end---------*/


	
	
/* footer   */
.col-12 h2 {
       color: rgb(41 47 52);
    font-size: 23px;
    letter-spacing: -1px !important;
    margin-bottom: 24px;
}
.footer-top {
    background:rgb(113 29 39);
    width: 100%;
    float: left;
    padding:45px 0;
}
.footer {
    width: 100%;
    float: left;
    padding: 20px 0px;
    background:#541018;
    text-align: center;
}
.footer p {font-size: 13px; color: #c1c1c1;}
.footer a { color: #c3c2c0; text-decoration: none;}
.melbourne-services-col-footer {
    width: 29%;
    float: left;
    margin: 30px 20px;
}
.footer-top h4 {
    color: #fff !important;
    border-bottom: 1px dotted #36383c;
    font-size: 17px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}
.melbourne-services-col-footer ul {
    width: 100%;
    float: left;
}
.melbourne-services-col-footer ul li {
    padding: 7px 0;
    color: #d1d1d1;
    list-style: none;
    letter-spacing: 0.5px;
}
.melbourne-services-col-footer ul li a {
    text-decoration: none;
    color: rgb(240 240 240);
    padding: 10px 0;
    text-decoration: none;
    font-size: 12px;
}
.melbourne-services-boxes:hover {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
box-shadow: 0 0 8px rgb(0 0 0 / 60%);
}

.padding-bottom{ padding-bottom:0px!important;}
.light-blue{    background-color:#f4f4f6;}
.center{text-align: center !important;}
.melbourne-services-blue-bg {color: #fff; text-align: center; padding: 40px 0;}
.melbourne-services-white-bg { width: 100%; float: left; background:#f2f2f4;padding: 1.4em 1em;
    background-color: #fff;
    border-radius: 10px;margin: 20px 0;
    box-shadow: 0px 3px 7px rgb(0 0 0 / 16%);}
.shadow{border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    animation-name: example;
    animation-duration: 0.25s;
    border-left: 5px solid #92dd40!important;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%)!important;}
.melbourne-services-boxes{width: 33%;
    float: left;
    padding: 20px;
    padding: 20px;
    background: #F5F5F9;
    -webkit-box-shadow: 0 0 5px 2px #fff;
    -moz-box-shadow: 0 0 5px 2px #fff;
    box-shadow: 0 0 5px 2px #e3e3e3;
    border: 1px solid #e3e3e3;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    }
.melbourne-services-boxes img {width: 100%;}
.melbourne-services-boxes h3 {color:#444444!important;}
.melbourne-services-boxes p {color:#444444!important;}
.melbourne-services-left img {width: 100%;}
.footer-follow {
    width:100%;
    float: left;
    padding: 10px;
}
.footer-follow li {
    list-style: none;
    display: inline-block;
    padding: 5px!important;
    color: #bbb;
    margin: 0 0 0;
    border-radius: 2px;
    text-align: center;
}
.footer-follow li a {
    text-decoration: none;
    color: #87cde4;
}
/* Blog  */
.content-head-blog{text-align: center; color: #fff; font-size: 50px;}
section.blog {float: left;  width: 100%; background: url(../images/blog-banner.jpg) top center no-repeat; height:366px; background-size: cover;}
.banner-text-blog {width:100%; text-align: center; margin-top:8%;color: #fff; font-size: 43px;}

.blog-ul {}

.blog-ul li {padding: 7px 0; list-style: none;border-bottom: 1px solid #ccc;}
.blog-ul li:before {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    content: "";
    float: left;
    height: 5px;
    background-color: inherit;
    margin: 5px 10px;
    width: 5px;
  border: 2px solid #014;
    background: #e4f6ff;
}
.melbourne-services-blog-page-right {
    width: 30%;
    float: right;
    padding: 10px;
    background: #eef3f3;
    box-shadow: 4px 6px 2px #e5e4e4;
    border-bottom: 5px solid rgb(97 114 129);}

.melbourne-services-blog-page-right h3 {border-bottom: solid 3px #7c96ad;
    display: inline-block;
    font-size: 21px;
    width: 100%;
    padding: 8px;
    color: #fff;
    margin-bottom: 5px;
    background: rgb(97 114 129);
    margin-top: 0;}
.blog-boxes{width: 33%; float:left; padding: 20px; border: 1px solid #ccc;}
.blog-boxes h1 {font-size: 20px;
   
    display: inline-block; line-height: 24px;
    margin-bottom: 5px;
    margin-top: 0;}
.blog-boxes h2 {font-size: 20px; color: rgb(41 47 52);
   
    display: inline-block; line-height: 24px;
    margin-bottom: 5px;
    margin-top: 0;}
.blog-boxes h3 {font-size:20px; color: rgb(41 47 52);
  
    display: inline-block; line-height: 24px;
    margin-bottom: 5px;
    margin-top: 0;}

.melbourne-services-blog-page h1 {font-size: 20px; color: #333;    padding-top: 10px;}
.melbourne-services-blog-page h2 {font-size: 20px; color: #333;    padding-top: 10px;}
.melbourne-services-blog-page h3 {font-size: 20px; color: #333;    padding-top: 10px;}

.blog-bg-1 {background: #f5f5f5;}
.blog-bg-2 {background: #d8e8f5}
.blog-bg-3 {background: #f5f5f5;}

.blog-boxes p {text-align: justify}
.melbourne-services-blog-page { float: left;max-width: calc(70% - 1em);
    min-width: calc(70% - 1em);
    padding: 20px;
    background-color: #f7fafc;}
.melbourne-services-blog-page p {text-align: justify}
.melbourne-services-blog{  width: 100%; float: left;   padding: 20px 0; }
.read-more {background: rgb(47 90 128);
    color: #fff !important;
    font-size: 1rem;
    margin-top: 10px;
    border: 0 none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    -webkit-appearance: none;
    padding: 1em;
    border-radius: 7px !important;
    -webkit-box-shadow: 0 3px 3px rgb(0 0 0 / 42%);
    box-shadow: 0 3px 3px rgb(0 0 0 / 42%);
    -webkit-transition: .1s ease-in-out all;
    -o-transition: .1s ease-in-out all;
    transition: .1s ease-in-out all;}
.read-more a {color: #fff;}
.banner-blog {width: 100%;
    float: left;
    margin-top: 4%;
        background: url(../images/banner-blog.jpg) top center no-repeat;
    height: 250px;
    background-size: cover;}
@media(max-width:768px){
   .nav-wrapper {width:100%;}
    nav{
        padding: 0;
    }
    nav,
    nav.black{
    height: 60px;
    padding: 0;
    }
    nav .logo{
        display: none;
    }
    nav ul{
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0;
        background: #262626;
        float: none;
        display: none;
    }
    nav ul.active{
        display: block;
    }
    nav ul li{
        width: 100%;
    }
    nav ul li a{
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        line-height: 30px !important;
        color: #fff;
        
    }

    nav > ul{
        width: 100%;
        display: none;
    }
    nav > ul > li{
        display: block;
        text-align: center;
    }
    .active{
        display: block;
    }
}

@media only screen and (min-width:768px) and (max-width:1280px){ .container {width: 100%;}
     .melbourne-services-col-footer { width: 28%;}
    nav {padding: 10px 30px;    padding-right: 30px;}
    nav > ul {  width: 77%;}
    .content-head {line-height: 40px;font-size: 30px;}
.banner-text { margin-top:6%;}
     .nav-wrapper {width:100%;}
    .banner-blog { height: 166px;}
    section.blog { height: 250px;}
}
@media only screen and (min-width:768px) and (max-width:1000px){
    .container {width: 100%;}
    .melbourne-services-col-footer { width: 28%;}
    .banner-with-text{width: 100%;
    height:auto;
    background-size: cover!important;
}
     .list-city li{position:unset}
    .overlay-menu{height: auto!important}
    .banner {height: 376px;  background-size: cover;}
    
    nav .logo{display: block}
    nav {padding: 10px 30px;    padding-right: 30px;}
    nav > ul {  width: 77%;}
    .content-head {line-height: 40px;font-size: 30px;}
    section.sec1 { height: 425px;}
.banner-text { margin-top: 17%;}
    section.blog { height: 250px;}
    .melbourne-services-col-footer {width: 26%;float: left;  margin: 10px 17px;}
      #navbar { z-index: 0;}
}

@media only screen and (min-width:480px) and (max-width:767px){
    .container {width: 100%;}
     .overlay-menu{height: auto!important}
    .melbourne-services-col-footer {  width: 100%;  margin: 10px 10px;}
    .footer-top {  padding: 10px 0;}
    .melbourne-services-left {  width: 100%;}
    .melbourne-services-right {   width: 100%;}
    .melbourne-services-boxes {  width:100%;}
    .banner-text { width:55%;  margin: 8% 0 5%;}
    .content-head {line-height:23px; font-size: 18px;}
    .banner-text p {  line-height: 14px;  font-size: 11px;}
    .Call-now {font-size: 15px;margin-top: 10px; padding: 10px; margin-bottom: 5px;}
    .melbourne-services-feature h1 { font-size: 21px;}
    .center { padding: 20px;}
    .melbourne-services-feature h2 { font-size: 21px; line-height: 24px;}
    section.blog {float: left;  height: 160px;}
    .blog-boxes {  width: 100%;}
    .melbourne-services-blog-page { max-width: calc(100% - 1em); min-width: calc(100% - 1em);}
    .melbourne-services-blog-page-right {   width: 100%;}
    .melbourne-services-blog-page h1 { font-size: 20px;}
    .melbourne-services-blog-page h2 { font-size: 20px; }
    .melbourne-services-blog-page h3 {font-size: 20px;}
    .banner-text-blog { width: 100%; text-align: center; margin-top:12%;}
    .content-head-blog { font-size: 40px;}
     nav .logo{    display:block;}
    .col-6-left{width: 100%;}
      .col-6-right{width: 100%;}
    .banner {margin-top: 10%;background: url(../images/banner-mobile.jpg) top center no-repeat; background-size: auto;height: 200px;background-size: cover;}
    .banner-blog {height: 170px;}
.col-12 h1 {  margin-bottom: 20px;  font-size:20px;  line-height: 23px;}
    .col-12 h2 {  margin-bottom: 20px;  font-size:20px;  line-height: 23px;}
    .col-12 h3 {  margin-bottom: 20px;  font-size:20px;  line-height: 23px;}
    .col-12 p { line-height: 24px;   text-align: justify;}
        .banner-with-text { height:auto;background-size: cover!important;}
    .overlay-menu { top: 8%;}
    #navbar { z-index: 0;}
     nav .logo{    display:block;}
    .list-city li{position:unset}
}
@media only screen and (min-width:320px) and (max-width:479px){
    .container {width: 100%;}
    .melbourne-services-col-footer {  width: 100%;  margin: 10px 10px;}
    .footer-top {  padding: 10px 0;}
    .melbourne-services-left {  width: 100%;}
    .melbourne-services-right {   width: 100%;}
    .melbourne-services-boxes {  width:100%;}
    .banner-text { width:75%;  margin: 12% 0 5%;}
    .content-head {line-height:23px; font-size: 18px;}
    .banner-text p {  line-height: 14px;  font-size: 11px;}
    .Call-now {font-size: 15px;margin-top: 10px;padding: 10px;margin-bottom: 5px;}
    .melbourne-services-feature h1 { font-size: 21px;}
    .center { padding: 20px;}
    .melbourne-services-feature h2 { font-size: 21px; line-height: 24px;}
    section.blog {float: left;  height: 160px;}
    .blog-boxes {  width: 100%;}
    .melbourne-services-blog-page { max-width: calc(100% - 1em); min-width: calc(100% - 1em);padding: 10px;}
    .melbourne-services-blog-page-right {   width: 100%;}
    .melbourne-services-blog-page h1 { font-size: 20px;}
    .melbourne-services-blog-page h2 { font-size: 20px; }
    .melbourne-services-blog-page h3 {font-size: 20px;}
    .banner-text-blog { width: 100%; text-align: center;margin-top: 22%;font-size: 27px;}
    .content-head-blog {    font-size: 40px;}
    nav {    z-index: auto;}
     nav .logo{    display:block;}
    .col-6-left{width: 100%;}
      .col-6-right{width: 100%;}
    .banner {margin-top: 18%;background: url(../images/banner-mobile.jpg) top center no-repeat; background-size: auto;height: 200px;background-size: cover;}  
.col-12 h1 {  margin-bottom: 20px;  font-size:16px;  line-height: 23px;}
    .col-12 h2 {  margin-bottom: 20px;  font-size:20px;  line-height: 23px;}
    .col-12 h3 {  margin-bottom: 20px;  font-size:20px;  line-height: 23px;}
    .col-12 p { line-height: 24px;   text-align: justify;}
    .banner-blog {height: 138px;}
    .col-12 {    padding: 15px 0;}
    .padding-gap { padding: 20px;}
    .banner-with-text { height:auto;background-size: cover!important;}
    .col-12 h2 {font-size: 16px;}
    #navbar { z-index: 0;}
     .list-city li{position:unset}
}