@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);
/*-----------------------------------------------------------------------
 ----------------------- Start control CSS for main document -------------
------------------------------------------------------------------------*/
    :root {
/*---------------- site and brand colors   -----------*/
        --brand-main: 42, 149, 221;
        --brand-alt: 255, 200, 1;
        --brand-g: 40, 40, 40;
        --brand-b: 0, 0, 0;
        --brand-w: 255, 255, 255;
        --corp-m: rgb(var(--brand-main));  /*-- corporate color --*/
        --corp-a: rgb(var(--brand-alt));   /*-- alternate corporate color --*/
        --corp-g: rgb(var(--brand-g));    /*-- grey shade --*/
        --corp-b: rgb(var(--brand-b));    /*-- black shade --*/
        --corp-w: rgb(var(--brand-w));    /*-- white shade --*/
/*---------------- site and brand font type -----------*/
        --corp-g-font: 'Open Sans', sans-serif;  /*-- other general text font--*/
        --corp-h-font: 'Roboto', sans-serif;  /*-- heading text font--*/
        --corp-t-font: 'Open Sans', sans-serif; /*--body text font--*/
/*---------------- site and brand font attributes -----------*/
        --font-family-h1: 'Roboto', sans-serif;
        --font-family-h2: 'Roboto', sans-serif;
        --font-family-h3: 'Open Sans', sans-serif;
        --font-family-h4: 'Roboto', sans-serif;
        --font-family-p: 'Open Sans', sans-serif;
        --font-size-h1: 20px;
        --font-size-h2: 18px;
        --font-size-h3: 16px;
        --font-size-p: 16px;
        --font-size-h-hero: 40px;
        --font-size-p-hero: 26px;
        --font-weight-h1: bold;
        --font-weight-h2: bold;
        --font-weight-h3: bold;
        --font-weight-p: normal;
        --h1-letter-space: 2px;
        --p-lineheight: 1rem;
/*---------- site and brand background colors for overall site --------------*/
        --bgcolor: rgba(var(--brand-main), 0.9);
        --bgcolor-w: rgba(242, 242, 242, 0.5);
        --boxborder1:  rgba(121, 121, 121, 0.5);
      }
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1 {
    font-family: var(--h1-font-family);
    font-weight: var(--font-weight-h1);
    font-size: var(--font-size-h1);
    color: var(--corp-m);
    letter-spacing: var(--h1-letter-space);
  }
  h2 {
    font-family: var(--h2-font-family);
    font-weight: var(--font-weight-h2);
    font-size: var(--font-size-h2);
    color: var(--corp-b);
  }
  h3 {
    font-family: var(--h3-font-family);
    font-weight: var(--font-weight-h3);
    font-size: var(--font-size-h3);
    color: var(--corp-b);
  }
  p {
    font-family: var(--p-font-family);
    font-weight: var(--font-weight-p);
    font-size: var(--font-size-p);
    color: var(--corp-g);
  }
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.headwrapper {
  position: relative;
}
input[type="radio"] {
    margin-right: 15px;
    margin-left: 15px;
}
input[type=radio]:hover {
    box-shadow: 0px 0px 5px rgba(var(--brand-alt), 0.99);
}
a {
text-decoration: none;
}
a:hover{
  text-decoration: none;
}
/*----- body wrapper for where needed to keep width of any elements--------*/
.body-cont1 {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  padding-inline: 5px;
  Height: 100%;
  position: relative;
}
/*---------Button for site---------------*/
.site-bttn {
  width: 100% !important;
  max-width: 220px;
  height: 45px !important;
  background: rgba(var(--brand-alt), 0.9);
  transition: background-color 0.3s ease-in-out;
  box-shadow: -1px 1px 3px rgba(31, 31, 31, 0.7);
  border: 1px solid #fff;
  border-radius: 4px;
  color:  var(--corp-b);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
}
.site-bttn:hover { 
  background: rgba(var(--brand-alt), 0.5);
  color:  var(--corp-b);
}
/*---------------------------------------------------------------
 ----------- Close control CSS for main document elements -----------
--------------------------------------------------------------------*/
/*---------------------------------------------------------------
 ----------- Start Privacy banner controls-----------------------
--------------------------------------------------------------------*/
.privacy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(135, 206, 235, 0.5);
  z-index: 9998;
}
.privacy-banner {
  position: fixed;
  bottom: 20px;
  background:rgba(255, 255, 255, 0.932);
  padding-top: 15px;
  padding-inline: 15px;
  text-align: center;
  z-index: 9999;
  font-family: var(--font-family-p);
  width: 100%;
  border: 1px solid gray;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.privacy-banner p {
  margin-bottom: 18px;
  font-weight: bold;
  color: var(--corp-b);
  font-size: 12px;
}
.privacy-banner button {
  background-color: var(--corp-a);
  color: var(--corp-b);
  border: 1px solid #000;
  padding: 7px 15px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}
.privacy-banner button:hover { 
  background: rgba(170, 109, 4, 0.767);
  color:  var(--corp-b);
  color: var(--corp-w)
}
/*---------------------------------------------------------------
 ----------- close Privacy banner controls-----------------------
--------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
------------------ Start Navigation bar header start-----------------------
--------------------------------------------------------------------------*/
header {
    background: #fff;
    padding: 20px 0;
    position: relative;
  }
  header .navbar {
    margin-bottom: 0px;
    border: 0px;
    z-index: 4;
    top: 10%;
    right: 2%;
    position: fixed;
  }
/* Styles for screens less than 576px (e.g. most mobile phones) */
@media screen and (max-width: 576px) {
   header .navbar {
    top: 4%;
    }
  }
  /* Styles for mobile phone landscape mode */
  @media screen and (min-width: 577px) and (max-width: 767px) {
    header .navbar {
    top: 5%;
    }
  }
  /* Styles for smaller laptop/ tablet */
  @media screen and (min-width: 768px) and (max-width: 991px) {
    header .navbar {
    top: 5%;
    }
  }
  /* Styles for larger laptop/ desktop */
  @media screen and (min-width: 992px) {
    header .navbar {
    top: 3%;
    }
  }
  header .navbar-brand {
    padding-top: 5px;
  }
  header .navbar-default {
    border: 0px;
    background-color: #fff;
  }
  header .navbar-default .navbar-nav {
    padding-top: 1px;
  }
  header .navbar-default .navbar-nav li a {
    color: var(--corp-m);
    font-weight: bold;
    padding: 10px 10px;
    font-size: var(--font-size-h2);
    font-family: var(--font-family-h4);
  }
  font header .navbar-default .navbar-nav li a:hover {
    color: var(--corp-b);
  }
  /*------------------------------------------------------------------
  --------------Close Navigation bar header ---------------------------
  -------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
-------------- Start Logo controls -----------------------------------
-----------------------------------------------------------------------*/
/* Default logo size */
.Logo {
  width: 18%;
  height: 18%;
  background-color: #000;
}
/* Styles for screens less than 576px (e.g. most mobile phones) */
@media screen and (max-width: 576px) {
  .Logo {
  width: 40%; 
  height: 40%; 
  }
}
/* Styles for mobile phone landscape mode */
@media screen and (min-width: 577px) and (max-width: 767px) {
  .Logo {
  width: 20%; 
  height: 20%; 
  }
}
/* Styles for smaller laptop/ tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .Logo {
 width: 24%;
  height: 24%;
  }
}
/* Styles for larger laptop/ desktop */
@media screen and (min-width: 992px) {
  .Logo {
 width: 18%;
  height: 18%;
  }
}
/*-----------------------------------------------------------------------
-------------- Close Logo controls -----------------------------------
-----------------------------------------------------------------------*/
  /*---------------------------------------------------------------
    -------------- Start Top 2 bars start ---------------------------
  -----------------------------------------------------------------*/
  /* Top white bar of the page, split into main attributes in first set below, and then split into device type attributes */ 
  .topwhitebar {
    background-color: #fff; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 28%; 
    z-index: 1; 
  }
  /* Styles for mobile phone upright portrait mode */
  @media screen and (max-width: 576px) {
    .topwhitebar {
    width: 100%; 
    height: 21%; 
    }
  }
  /* Styles for mobile phone landscape mode */
  @media screen and (min-width: 577px) and (max-width: 767px) {
    .topwhitebar {
    width: 100%; 
    height: 39%; 
    }
  }
  /* Styles for smaller laptop/ tablet */
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .topwhitebar {
    width: 100%;
    height: 36%;
    }
  }
  /* Styles for larger laptop/ desktop */
  @media screen and (min-width: 992px) {
    .topwhitebar {
    width: 100%;
    height: 18%;
    }
  }
  /* Sub heading blue bar with text, split into main attributes in first set below, and then split into device type attributes */ 
  .subheaderbluebar {
    background: linear-gradient(to top, #f2f2f2, #fff);
    position: relative; 
    left: 0;  
    z-index: 1; 
    top: 20%;
    width: 100%;
    margin-bottom: 40px;
  }
  .subheaderbluebar h1 {
    font-family: var(--h1-font-family);
    font-weight: var(--font-weight-h1);
    font-size: var(--font-size-h1);
    color: var(--corp-m);
    letter-spacing: var(--h1-letter-space);
    text-align: left;
    padding-left: 5%;
    vertical-align: middle;
    padding-top: 8px;
    padding-bottom: 8px;
    }
  /* Styles for mobile phone upright portrait mode */
  @media screen and (max-width: 576px) {
    .subheaderbluebar {
    position: sticky;
    top: 16%;
    height: 8%;
    margin-bottom: 37px;
    }
  }
  /* Styles for mobile phone landscape mode */
  @media screen and (min-width: 577px) and (max-width: 767px) {
    .subheaderbluebar {
    position: sticky;
    top: 25%;
    height: 15%; 
    margin-bottom: 15px;
    }
  }
  /* Styles for smaller laptop/ tablet */
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .subheaderbluebar {
    position: sticky;
    top: 30%;
    height: 15%;
    margin-bottom: 20px;
    }
  }
  /* Styles for larger laptop/ desktop */
  @media screen and (min-width: 992px) {
    .subheaderbluebar {
    position: sticky;
    top: 17%;
    height: 7%;
    margin-bottom: 62px;
    }
  }
  /*--------------------------------------------------------------------
  --------- Close Top 2 bars close------------------------------
  -------------------------------------------------------------------*/
  /*---------------------------------------------------------------------
-------------- Start Container for body text start --------------------
-----------------------------------------------------------------------*/
.bodywrap {
  margin: 20px auto;
  padding: 0 5px;
  position: relative;
}
.content-top {
  background-color: var(--bgcolor-w);
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  width: 92%;
  max-width: 800px;
  margin: 6% auto 0;
  text-align: center;
  box-shadow: -5px 5px 7px rgba(0, 0, 0, 0.15);
  position: relative;
}
/* Styles for mobile phone upright portrait mode */
@media screen and (max-width: 576px) {
  .content-top {
      margin-top: 17%;
  }
}
/* Styles for mobile phone landscape mode */
@media screen and (min-width: 577px) and (max-width: 767px) {
  .content-top {
      margin-top: 6%;
  }
}
/* Styles for smaller laptop/ tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .content-top {
    margin-top: 8%;
}
}
.content-top p {
  padding-left: 10px;
  padding-right: 10px;
  }
.content-top h2 {
  padding-left: 10px;
  padding-right: 10px;
  }
.content-main {
  background-color: var(--bgcolor-w);
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  width: 92%;
  max-width: 800px;
  margin: 20px auto 0;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: -5px 5px 7px rgba(0, 0, 0, 0.15);
  position: relative;
}
.content-main p {
padding-left: 10px;
padding-right: 10px;
}
.content-main h2 {
  padding-left: 10px;
  padding-right: 10px;
  }
/*---------------------------------------------------------------------------
------------------- Close Container for body text  --------------------
---------------------------------------------------------------------------*/
/*------------------------------------------------------------------
-------- Start Homepage index.html hero section slider ---------------
------------------------------------------------------------------*/
#slider {
  background: url("/img/slider-bg.jpg") no-repeat;
  background-size: cover;
  padding: 10% 0 10% 0;
  width: 100%;
  height: 100%;
  position: relative;  
}
#slider:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(135, 206, 235, 0.7);
}
#slider .block {
  color: #E3E3E4;
}
#slider .block h2 {
  font-family: var(--font-family-h1);
  font-weight: 900;
  font-size: var(--font-size-h-hero);
  line-height: 60px;
  letter-spacing: 10px;
  padding-inline: 10px;
  padding-bottom: 45px;
  color: var(--corp-w);
  text-align: center !important;
}
#slider .block p {
  line-height: 40px;
  font-family: var(--font-family-h1);
  color: var(--corp-w);
  font-weight: 800;
  font-size: var(--font-size-p-hero);
  letter-spacing: 3px;
  text-align: center !important;
  padding-inline: 10px;
}
/*------------------------------------------------------------------
        Close Homepage index.html hero section slider --------------
------------------------------------------------------------------*/
/*------------------------------------------------------------------
        Start main feature area after hero section ------------------
------------------------------------------------------------------*/
#feature {
  position: relative;
  width: 100%;
  padding: 0 0;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.feature-bg {
  background-image: url("/img/quadset-min.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.feature-content {
  position: relative;
  padding: 40px;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--boxborder1);
  border-left: 1px solid var(--boxborder1);
  border-right: 1px solid var(--boxborder1);
  margin: 30px 10px 30px 10px;
  padding: 10px 5px 20px 5px;
  border-radius: 3px;

}

.feature-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 20px 0 0 0;
  padding: 5px 5px 20px 5px;
  color: var(--corp-m);

}
.feature-content p {
  margin: 0 0 0 0;
  padding-left: 5px;
  padding-bottom: 30px;


}
/*------------------------------------------------------------------
        Close main feature area after hero section ------------------
------------------------------------------------------------------*/
/*------------------------------------------------------------------
------------ Start services area ---------------------------------
------------------------------------------------------------------*/
#service {
  text-align: center;
  padding-top: 2px;
  margin-bottom: 20px;
  background: #fff;
  padding-bottom: 30px;
}
#service .service-item {
  padding-top: 25px;
  font-size: 60px;
  color: var(--corp-m);
}
#service .service-item h3 {
  padding-bottom: 50px;
}
#service .service-item p {
  margin: 0;
  line-height: 1.8;
}
.link-block a {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
}
/*------------------------------------------------------------------
------------ Close services area -----------------------------------
------------------------------------------------------------------*/
/*---------------------------------------------------------------
-------------------- Start why us call to action----------------------
--------------------------------------------------------------------*/
#call-to-action {
  padding: 30px 0px;
  position: relative;
  text-align: center;
}
#call-to-action:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #87CEFE;
  opacity: 0.8;
}
#call-to-action h2 {
  padding-bottom: 20px;
  line-height: 33px;
  margin: 0;
  font-size: 26px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}
/*---------------------------------------------------------------
-------------------- End why us call to action----------------------
--------------------------------------------------------------------*/
/*---------------------------------------------------------------
-------------------- Start Counters section  ------------------------
--------------------------------------------------------------------*/
/*---- main container for complete section, counters and testimonials --*/
#testimonial {
  padding: 0;
  background: #fff;
}
/*--- text description setting for counter icons p text --*/
#testimonial .block p { 
  padding-top: 10px;
  font-size: 16px;
  font-weight: 540;
  font-family: var(--font-family-p);
  margin-inline: 5px;
  padding-left: 5px;
  padding-right: 5px;
}
/*---------The actual number spinning up, an h3 element -----------*/
#testimonial .block h3 { 
  font-size: 18px;
  font-weight: 540;
  padding-left: 5px;
  padding-right: 5px;
  font-family: var(--font-family-p);
  margin-inline: 5px;
  color: var(--corp-m)
}
/*-- Containing box holding all counters in it ---*/
#testimonial .counter-box { 
  margin: 40px auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
 /*--- each counter box as an object ---*/
#testimonial .counter-box li {
  text-align: center;
  margin: 15px 40px 35px;
  flex-shrink: 1;
  flex-basis: 190px;
  height: 190px;
  padding-inline: 15px;
}
/*---- each counter icon specifically -------*/
#testimonial .counter-box li i { 
  font-size: 60px;
  color: var(--corp-b);
}
/*---------------------------------------------------------------
-------------------- Close Counters section  --------------------------------
--------------------------------------------------------------------*/
/*---------------------------------------------------------------
-------------------- Start reviews carousel --------------------------------
--------------------------------------------------------------------*/
/*--- The container sliding box with items below within it --*/
#testimonial-carousel { 
  text-align: center;
  border: 10px solid #DEDEDE;
  padding: 0;
  margin: 0 auto;
  margin-top: 20px;
  flex-wrap: wrap;
  display: flex;      
  justify-content: center;
  align-items: center; 
}
#testimonial-carousel img {
  padding-bottom: 3px;
}
/*-- The specific item in the container box above---*/
#testimonial-carousel p { 
  line-height: 28px;
  font-weight: 300;
  padding-bottom: 20px;
  height: 350px;
  width: 340px; /*--actual width of the object, facebook review etc---*/
}
/*--the dots at the bottom before the item moves--*/
.testimonial-carousel .owl-carousel .owl-pagination div { 
  border: 1px solid #1D1D1D;
  border-radius: 500px;
  display: inline-block;
  padding: 5px;
  height: 10px;
  width: 10px;
  margin-inline: 2px;
  margin-top: 20px;
  margin-bottom: 10px;
  background: var(--corp-m);
}
/*--the actual moving dot itself at the bottom---*/
.testimonial-carousel .owl-carousel .owl-pagination div.active {
  background: var(--corp-a);
  height: 15px;
  width: 15px;
  border: 1px solid grey;
}
/*---------------------------------------------------------------
-------------------- Close reviews carousel ------------------------
--------------------------------------------------------------------*/
/*---------------------------------------------------------------------
            Start Contact form address, social and map start -------
---------------------------------------------------------------------*/
/*-- Address, phone, email and socials icons block --*/
.contact-addr-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--bgcolor);  
    margin-top: 20px;
    padding-top: 30px;
    color: var(--corp-w);
}
#contact-addrbox {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 35px;
  position: relative;
  font-family: var(--font-family-p);
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-p);
  color: var(--corp-w);
}
#contact-addrbox h2 {
  padding-bottom: 20px;
  padding-top: 10px;
}
#contact-addrbox p {
  padding-bottom: 20px;
  padding-top: 10px;
  color: var(--corp-w);
  margin-bottom: 12px;
  margin-inline: 5px;
}
#contact-addrbox .address-block li {
  margin-bottom: 10px;
  color: var(--corp-a);
  font-weight: bold;
}
#contact-addrbox .address-block li i {
  margin-right: 15px;
  margin-left: 5px;
  font-size: 20px;
  width: 20px;
}
#contact-addrbox .social-icons {
  margin: 0 auto;
}
#contact-addrbox .social-icons li {
  display: inline-block;
  margin: 0 6px;
}
#contact-addrbox .social-icons a {
  display: inline-block;
  color: var(--corp-w);
}
#contact-addrbox .social-icons i {
  color: var(--corp-a);
  margin-right: 25px;
  font-size: 25px;
}
/*----------------- map positioning and other in contact form --------*/
#map-area {
  background-color: var(--bgcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px 5px 15px 5px;
}
#map-area #map {
  box-shadow: -3px 3px 4px rgba(0, 0, 0, 0.3);
  background: #f2f2f2;
}
/*-----------------------------------------------------------
            Close form address, social and map close --------
--------------------------------------------------------------*/
/*------------------------------------------------------------
------ Start Actual contact-form boxes,page background, text boxes and button
-------------------------------------------------------------*/
.contact-form-container {  /* Main container with the shadow on it---*/
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--bgcolor); 
}
#contact-form {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;  
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box; /* include padding and border in width calculation */
}
  #contact-form * {
    max-width: 100%; /* force all child elements to fit within container */
    box-sizing: border-box; /* include padding and border in width calculation */
    padding: 0 5px; /*-- padding for the outside edge of text boxes, top and bottom 0, left and right 5px*/
  }
#contact-form .block form .form-group {
  margin: 0px;
}
#contact-form .block form .form-group .form-control {
  background: #fff;
  height: 60px !important;
  border: 1px solid #888888;
  box-shadow: none;
  width: 100%;
  max-width: 800px;
  color: var(--corp-g);
  font-weight: 650;
  margin-bottom: 10px;
}
#contact-form .block form .form-group .radio {
  border: 1px solid #888888;
  background: #fff;
  padding: 10px 5px;
  box-shadow: none;
  border-radius: 4px;
  height: 60px;
  color: var(--corp-g);
  font-weight: bold;
  font-size: 16px;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 100%;
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
#contact-form .block button {
    width: 100% !important;
    height: 60px !important;
    background: rgba(103, 101, 106, 0.5);
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
  }
  #contact-form .block button:hover {
    background: rgba(103, 101, 106, 0.35);
  }
/*------------------------------------------------------------------------------
-------- Close Actual contact-form boxes,page background, text boxes and button close
-------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
------------- Start Image slider --------------------------------------------
--------------------------------------------------------------------------------*/
/*------- Slider Container holding image objects below ---- */
.clients-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid red;
  padding-bottom: 2px;
  padding-top: 2px;
  flex-wrap: wrap;
}
/*----- actual single image objects in slider -----*/
.clients-logo-section .clients-logo-img {
  border: 10px solid #728f9af7;
  flex-basis: 330px;
  margin: 0 auto;
}
/*--------------------------------------------------------------------------
------------- Close Image slider --------------------------------------------
--------------------------------------------------------------------------------*/
  /*------------------------------------------------------------
----------------- Start Our work image grid Start -------------------------------
-------------------------------------------------------------------*/
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.image-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 10px;
  overflow: hidden;
  filter: grayscale(100%);
  transition: all 0.8s ease-in-out;
}
.image-container:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(10, 185, 233, 0.7);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}
.landing-header {
  text-align: center;
}
@keyframes scaleImage {
  0%, 100% {
    filter: grayscale(100%);
  }
  50% {
    filter: grayscale(0%);
  }
}
@keyframes scaleContainer {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(2.2);
  }
}
.image-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
  grid-gap: 5px;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}
.landing-image {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  transform-origin: top left;
}
.l-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
}
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "caption caption"
    "img1 img2";
  justify-items: center;
  background-color: var(--bgcolor);
  padding: 10px 0px;
  border: 1px solid #f2f2f2;
  margin: 4px 9px;
  width: 100%;
}
.image-pair p {
  font-size: 18px;
  font-weight: 350;
  color: var(--corp-w);
  text-align: center;
  grid-area: caption;
}
.landing-image-right {
  transform-origin: top right;
}
.landing-image:hover .l-image {
  animation: scaleImage 4s 1;
}
.landing-image:hover {
  animation: scaleContainer 4s 1;
  z-index: 1;
}
.landing-image:hover .landing-image-header {
  display: none;
    background: rgba(135, 206, 235, 0.7);
}
.landing-image-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(var(--brand-alt), 0.6);
  padding: 5px;
  box-shadow: -1px 1px 2px #000000;
  color: var(--corp-w);
  font-size: 14px;
  font-weight: 300;
  width: 91%;
}
/*-------------------------------------------------------------
------------- Close Our Work Close ---------------------------------
---------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  Start email reply formatting for send/php post for contact.html start
-------------------------------------------------------------------------------*/
#e-message {
  padding: 10px;
  font-size: var(--font-size-p);
  text-align: center;
  z-index: 10;
  position: absolute;
  left: 50%;
  width: 800px;
  transform: translateX(-50%);
  top: 23%; /* Default position for desktop devices */
}
/* Styles for mobile phone upright portrait mode */
@media screen and (max-width: 576px) {
  #e-message {
    top: 23%;
    width: 350px;
  }
}
/* Styles for mobile phone sideways landscape mode */
@media screen and (min-width: 577px) and (max-width: 767px) {
  #e-message {
    top: 47%;
    width: 550px;
  }
}
/* Styles for mobile phone upright landscape mode */
@media screen and (min-width: 768px) and (max-width: 991px) {
  #e-message {
    top: 39%;
    width: 750px;
  }
}
#e-message.success {
  background-color: rgba(5, 67, 5, 0.85);
  backdrop-filter: blur(5px);
  border: 1px solid #f2f2f2;
  color: #fff;
  border-radius: 10px;
  box-shadow: -5px 5px 7px rgba(0, 0, 0, 0.15);
}
#e-message.error {
  background-color: rgba(73, 4, 4, 0.85);
  backdrop-filter: blur(5px);
  border: 1px solid #f2f2f2;
  color: var(--corp-g);
  border-radius: 10px;
  box-shadow: -5px 5px 7px rgba(0, 0, 0, 0.15);
}
/*--------------------------------------------------------------------
--- Close email reply formatting for send/php post for contact.html---
--------------------------------------------------------------------*/
/*------------------------------------------------------------------------
-------------- Start Footer ---------------------------------
------------------------------------------------------------------------*/
footer {
  background: var(--bgcolor);
  text-align: center;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  width: 100%;
  bottom: 0;
}
footer .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
footer .footer-menu ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .footer-menu ul li {
  padding: 10px;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  align-items: center;
}
footer a {
  color: var(--corp-w);
  font-weight: 400;
  text-shadow: -1px 1px 1px rgba(157, 157, 157, 0.8);
  transition: color 0.3s ease-in-out;
}
footer a:hover {
  color: var(--corp-b);
  text-shadow: -1px 1px 1px rgba(157, 157, 157, 0.8);
  text-decoration: none;
  background: var(--corp-w);
  border-radius: 4px;
  padding: 15px 45px 15px 45px;
}
footer .footer-menu {
  padding-bottom: 10px;
  padding-top: 1px;
}
@media screen and (max-width: 576px) {
  footer {
    padding: 20px 0px;
  }
  footer .footer-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  footer .footer-menu ul {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  footer .footer-menu ul li {
    padding: 10px 0px;
  }
} 
  /*--------------------------------------------------------------------
  ----------------- Close Footer-------------------
------------------------------------------------------------------------*/