@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700|Poppins:300,400,500,600,700');
@import url("https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --primary: #0a7c9a;
    --secondary: #ce972a;
    --light: #F7F7F7;
    --dark: #10779b;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: #fff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* PAGE HEADR AND BREADCRUMB */
/***********************************************************************************************/
.page-header {
  margin: 0;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-attachment: fixed;
  background-position: center center;
  background-color: transparent;
  background-image: url('../images/slider2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  border: 0px solid #FFF;
}
.page-header:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  content: '';
  z-index: -1;
}
.page-header h3 {
  color: #FFFFFF;
  text-align: center;
  font-size: 36px;
  line-height: 24px;
  font-weight: 500;
  
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.page-header .page-breadcrumb {
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.page-header .page-breadcrumb a {
  color: #FFFFFF;
}
.page-header .page-breadcrumb a:hover {
  color: #15394c;
}
/***********************************************************************************************/


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    background: #fff;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}



.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}
.sr-only{ display: none;}
body
{
    font-family: "DM Sans", sans-serif;
}
.carousel-caption h1
{
     font-size: 2.4rem;
}
.gallery img
{width: 100%; height: 300px; object-fit: cover;}
.cta-three {
  position: relative;
  display: block;
  background-color: #10779b;
  padding: 33px 0 30px;
  z-index: 1;
}

.cta-three__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .15;
  z-index: -1;
}

.cta-three__shape-2 img {
  width: auto;
}

.cta-three__shape-3 {
  position: absolute;
  top: 30px;
  right: 0;
  opacity: .15;
  z-index: -1;
}

.cta-three__shape-3 img {
  width: auto;
}

.cta-three__left {
  position: relative;
  display: block;
  margin-top: 48px;
}

.cta-three__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #fff;
}

.cta-three__btn {
  position: relative;
  display: inline-block;
  margin-top: 29px;
}

.cta-three__btn a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff!important;
  background-color: #10779b;
  padding: 14px 40px 14px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
}

.cta-three__btn a::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--bizro-base);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.cta-three__btn a:hover:before {
  top: -40%;
}

.cta-three__btn a:hover {
  color: var(--bizro-white);
}

.cta-three__btn a span {
  position: relative;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 900;
}

.cta-three__right {
  position: relative;
  display: block;
  margin-left: 106px;
}

.cta-three__img {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-three__img img {
  width: 100%;
}

.cta-three__img-2 {
  position: absolute;
  left: -39px;
  bottom: -3px;
  z-index: 1;
}

.cta-three__img-2 img {
  width: auto;
  border-radius: 50%;
}

.cta-three__shape-1 {
  position: absolute;
  top: 70px;
  left: -60px;
  opacity: .60;
  z-index: -1;
}

.cta-three__shape-1 img {
  width: auto;
}
@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@media only screen and (max-width: 1240px) {
  .navbar-brand h1
  {font-size: 1.6rem;}
  .navbar .navbar-nav .nav-link {
  margin-right: 23px; font-size: 13px;}
}
@media only screen and (max-width: 991px) {
    .navbar-light .navbar-toggler
    {background: #fff; border: none!important;}
    .carousel-caption h1
    {font-size: 30px;}
    }

    @media only screen and (max-width: 500px) {
    .navbar-brand h1
  {font-size: 1rem;}
    }

    body {
  font-family: "poppins", sans-serif;
  color: #222;
  font-style: normal;
  font-weight: 300;
  position: relative;
}
img {
  max-width: 100%;
}
a {
  color: #15394c;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a:hover,
a:focus {
  color: #15394c;
  text-decoration: none;
}
blockquote {
  font-family: "poppins", sans-serif;
  color: #6e6e6e;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #15394c;
  line-height: 32px;
  margin: 0 0 16px 0;
}
h1 {
  font-size: 36px;
  line-height: 45px;
}
h2 {
  font-size: 24px;
}
h2 + p {
  margin-top: 12px;
}
h3 {
  font-size: 20px;
}
h3 + p {
  margin-top: 12px;
}
h4 {
  font-size: 18px;
}
h4 + p {
  margin-top: 12px;
}
h5 {
  font-size: 15px;
}
h6 {
  font-size: 15px;
}

ul,
li {
  list-style-type: none;
}
input[type=text],
input[type=password],
input[type=submit],
input[type=button],
textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
input[type=text]:focus,
input[type=password]:focus,
input[type=submit]:focus,
input[type=button]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
strong {
  font-weight: 600;
}
.carousel-item
{position: relative;}
.carousel-item .overlay
{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/Slider-overlays.png) center right/cover no-repeat;
    opacity: 65%;
}
.intro {width:auto; height:auto; background: #fff;margin:0 !important; padding:4em 0em 5em 0em; z-index:10; position:relative; overflow:visible; text-align:center; background-repeat:no-repeat; background-size:100% auto; background-position:top left;}

.moduletable_intro1 {text-align:left; padding-right:4em; padding-top:2em;}

.moduletable_intro2 {text-align:left; padding-top:0em; padding-right:2em;}

.moduletable_intro2 h2 {font-size:2em; line-height:1.2em; font-weight:600; font-weight:600;  color:#000; letter-spacing:0px; font-style:normal; display:block; margin-bottom:0; margin-top:0.4em;}

.moduletable_intro2 .title {font-weight:600; font-size:24px; color:#cc0000; display:block; line-height:46px; padding-top:10px; padding-bottom:10px; letter-spacing:0px;}



.introicons {width:auto; height:auto; background: #fff; background-repeat:repeat;margin:0 !important; padding:2em 0em 5em 0em; z-index:10; position:relative; overflow:visible; text-align:center;}

.moduletable_introicons {}

.moduletable_introicons tr td {width:33%; text-align:center; padding:0em 1em 0em 1em;}

.moduletable_introicons h3 { font-weight:600; font-size:24px; letter-spacing:1px; color:#000; text-transform:uppercase;}

.moduletable_introicons tr td img {width:100px; height:auto; margin-bottom:1em;}


.info {background: #f5f5f5; background-repeat:repeat-y;margin:0 !important; z-index:10; position:relative; overflow:visible; background-position:top right; background-size:45%; background-image:url(../images/infobg.png);}



.moduletable_info1 {text-align:left;}

.moduletable_info1 h5 {font-weight:700; font-size:18px; color:#000; display:block; line-height:20px; margin-top:0px;letter-spacing:0px;}

.moduletable_info1 h3 {color:#000;  font-weight:600; font-size:2.75em; text-align:left; margin-left:-0em; display:block; margin-bottom:0.75em; text-transform:none; margin-top:-10px; line-height:1.2em;}

.moduletable {text-align:right; margin-right:0em; padding-top:3em; padding-left:3em; padding-right:2em;}

.moduletable_info2 img { box-shadow: 0 0px 0px 0 rgba(0,0,0,.25);}

.moduletable_info2text {padding:4em 2em 0em 10em; color:#fff;}

.moduletable_info2text .big {font-size:2.25em; line-height:1.2em; font-weight:600;}

.moduletable_info2text em {font-weight:600; font-family: 'Open Sans', sans-serif; font-size:16px; color:#FBCAD4; display:block; line-height:16px; margin-top:0px;letter-spacing:0px; font-style:normal; letter-spacing:1px; text-transform:uppercase; margin-bottom:-10px;}

.moduletable_info1 table {margin-bottom:1.75em;}

.moduletable_info1 tr td {text-align:left; vertical-align:top;}

.moduletable_info1 td.icon {width:10%;}

.moduletable_info1 td.icon img {width:100%;}

.moduletable_info1 td.text {padding:0em 0em 0em 2em;}

.moduletable_info2 .videowrap iframe {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  box-shadow: 0 0px 20px 0 rgba(0,0,0,.25);

}

.moduletable_info2table h4 {font-weight:700; font-family: 'Open Sans', sans-serif; font-size:28px; color:#fff; display:block; line-height:20px; margin-top:0px;letter-spacing:0px; margin-bottom:25px;}

.moduletable_info2table {padding:4.5em 2em 0em 6em;}
.moduletable_info2table a, .moduletable_info2table a:visited {color:#fff;text-decoration:none;}

.moduletable_info2table table {padding-top:0px;}

.moduletable_info2table tr td {width:33%; text-align:left; vertical-align:top; font-size:15px; color:#f5f5f5;}
.icon-tag {
  font-size:2em;
  border:3px solid #edb61b;
  padding:45px;
  height:40px;
  width:40px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center
}
.card i.fa {
  color: #15394c;

}
.footer {background: #050505; background-repeat:repeat; height: auto;padding:0;margin:0 !important; padding:5em 4em 5em 5em; border-top:0px solid #ddd; z-index:10; position:relative; overflow:visible; color:#888; font-size:13px;}

.footer a {color:#888; text-decoration:none; font-weight:400;}

.footer a:visited {color:#888; text-decoration:none;}

.footer a:hover {color:#e7e7e7; text-decoration:none;}

.footer .footertitle {color:#ce9506; font-weight:600;letter-spacing:0px; font-size:17px; display:block; margin-bottom:-20px;}

#footer1 {width:16%;}

#footer2 {width:12%;}

#footer3 {width:54%;}

#footer5 {width:20%;}

.moduletable_footer1 {padding-top:1.5em; padding-right:2em; margin-left:-3em;}

.moduletable_footer2 {border-left:1px solid #000; padding-left:4em; padding-top:2em; padding-bottom:2em;}

.moduletable_footer2 img {-webkit-filter: grayscale(100%); opacity:0.5;}

.moduletable_footer3 {padding-left:4em; margin-right:-4em; border-left:1px solid #222; padding-bottom:2em; padding-top:2em;}

.moduletable_footer3 ul {margin-left:0px;}

.moduletable_footer3 ul li {list-style:none; display:inline-block; padding-right:30px; font-size:14px; line-height:3em; font-weight:600; color:#ddd;}

.moduletable_footer4 {}

.moduletable_footer5 {float:right; text-align:left; font-size: 16px; padding-top:2em; color:#999;}

.footerphone {color:#ce9506; font-size:3em; font-weight:500; letter-spacing:-1px; display:block; margin-bottom:-10px;}







/*copyright info div*/



.copy {text-align:center; background: #050505/*#001937*/;height: auto;padding:0;margin:0 !important; z-index:10; position:relative; overflow:visible;}



.moduletable_copy {font-size:12px; color:#ccc; text-align:center; padding-bottom:3em; padding-top:0em; opacity:0.15; font-family: 'Source Sans Pro', sans-serif; font-weight:400; line-height:2em;letter-spacing:0px;}



.moduletable_copy a {color:#ccc; text-decoration:none; opacity:1.0; font-weight:400;}



.moduletable_copy a:visited {color:#ccc; text-decoration:none;}



.moduletable_copy a:hover {color:#fff; text-decoration:none; text-decoration:underline;}



.moduletable_buildertrend {padding-bottom:2em;}



.moduletable_buildertrend img {opacity:0.15; width:150px; height:auto; -webkit-filter: grayscale(100%); opacity:0.5;}



.moduletable_copylogos {width:27%; text-align:center; margin-left:auto; margin-right:auto; margin-top:-2em; padding-bottom:2em;}

.moduletable_copylogos table {}

.moduletable_copylogos tr td {width:50%; text-align:center; padding:0em 1.5em 0em 1.5em; display:table-cell; vertical-align:middle}

.moduletable_copylogos tr td img {width:150px; height:auto; -webkit-filter: grayscale(100%); opacity:0.33;}


.loction-links a
{
    background: #fff;
    padding: 12px 10px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    display: inline-block;
    color: #333!important;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .info
  {
    background: #ce9506;
  }
  .moduletable_info2table {
  padding: 4.5em 2em 0em 0em;

}
.moduletable_footer5
{float: none; text-align: center; padding: 0px}
.moduletable_footer1
{text-align: center; margin: 0px; padding: 0px;}
.moduletable_footer3
{
    padding: 0px;
    text-align: center;
    border: none;

}
}

