:root {
  /* font */
  --body-font: "Lato", sans-serif;
  --heading-font: "Oswald", sans-serif;

  /* color */
  --carousel-button: #ccc;
  --icon-color: #5078cc;
  --heading-color: #333;
  --contact-heading-color: #999;
  --table-background-color: #cccccc;
  --list-color: #0046ab;
  --line-color: #212529;

  --primary-color: #022c52;
  --secondry-color: #0091e2;
  --white: #fff;
  --black: #000;
  --xtra-light-gray: #dedede;
  --light-gray: #a5a5a5;
  --gray: #666;
  --dark-gray: #555;
  --xtra-dark-gray: #212121;
  --blue-dark: #0046ab;
  --error: #c43d4d;

  --mobile-hover-color: turquoise;

  /* social icon hover*/
  --facebook-hover: #3b5998;
  --linkedin-hover: #007bb5;
}
* {
  box-sizing: border-box;
}
html,
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}
body.mm-ocd-opened {
  background: var(--white);
}

p:first-child {
  margin-top: 5px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h3-style {
  font-family: var(--heading-font);
  margin: 0 0 3%;
  color: var(--heading-color);
  line-height: 1.3;
  font-weight: 700;
}
h1 {
  margin: 3% 0;
}
h1,
h2 {
  color: var(--blue-dark);
}
h1 {
  font-size: 2.75em;
}
h2,
body .h2 {
  font-size: 2.5em;
}
h3,
.h3-style {
  font-size: 2em;
}
h4 {
  font-size: 2em;
}
h5 {
  font-size: 1.5em;
}
h6 {
  font-size: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--secondry-color);
  text-decoration: none;
}
a .fa {
  color: var(--footer-background-color);
}
a:hover {
  color: var(--blue-dark);
}

ul.column2,
ul.column3 {
  column-gap: 2em;
  padding-left: 1em;
}

ul.column2 li,
ul.column3 li {
  break-inside: avoid;
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li::before {
  content: "\2714";
  color: var(--list-color);
  margin-right: 10px;
  font-family: FontAwesome;
}
.line-list li:before {
  content: "-";
  color: var(--line-color);
  margin-right: 10px;
}
.blockquote {
  background: #f9f9f9;
  border-left: 10px solid var(--xtra-light-gray);
  margin: 1.5em 10px 1.5em 0;
  padding: 20px;
  quotes: "\201C""\201D""\2018""\2019";
}
.blockquote:before {
  color: var(--light-gray);
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.blockquote h3 {
  font-size: 32px;
}
.blockquote p {
  display: inline;
  font-size: 16px;
}
.blockquote a,
.blockquote a:hover {
  font-size: 16px;
  color: var(--gray);
  font-style: italic;
}
.blockquote a:hover {
  text-decoration: underline;
}
fieldset.form-group {
  border: 0;
  padding: 0;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}
.center {
  text-align: center;
}
.heading.lg {
  font-size: 4em;
  text-transform: uppercase;
  text-align: center;
  margin: 3% 0;
  letter-spacing: -0.025em;
}

.grey {
  color: var(--gray);
}
.blue {
  color: var(--secondry-color);
}
.blue-dark {
  color: var(--blue-dark);
}
.btn {
  padding: 10px 20px 14px;
  background: var(--secondry-color);
  color: var(--white);
  line-height: 100%;
  text-transform: capitalize;
  font-size: 80%;
  display: inline-block;
  border: 1px solid var(--secondry-color);
  transition: border-radius 0.3s;
}

.btn::after {
  content: "\203A";
  font-weight: 900;
  font-size: 20px;
  margin-left: 10px;
  transition: margin-left 0.3sease-in-out;
}

.btn:hover {
  background: var(--blue-dark);
  color: var(--white);
}
.btn.white {
  background: var(--white);
  color: var(--secondry-color) !important;
  border: 1px solid var(--white);
}
.btn.white:hover {
  background: var(--secondry-color);
  color: var(--white) !important;
}
.border-dotted.left-border {
  border-left: 2px dotted var(--xtra-light-gray);
  padding-left: 3em;
  padding-top: 0;
}
.border-dotted.top-border {
  border-top: 2px dotted var(--xtra-light-gray);
  padding-top: 30px;
}
.border-dotted.right-border {
  border-right: 2px dotted var(--xtra-light-gray);
  padding-right: 30px;
}
.border-dotted.bottom-border {
  border-bottom: 2px dotted var(--xtra-light-gray);
  padding-bottom: 30px;
}
.border-solid.top-border {
  border-top: 1px solid var(--black);
}
.border-solid.bottom-border {
  border-bottom: 1px solid var(--black);
}
.border-dashed {
  border-bottom: 1px dashed var(--black);
}
.border-full {
  border: 1px solid var(--gray);
  padding: 1.5em;
}
.float-left {
  float: left;
  margin: 3px 12px 12px 0;
}
.float-right {
  float: right;
  margin: 3px 0 12px 12px;
}
.text-wrapped {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  white-space: normal;
}

/* icons */
i.fa-regular.fa-images,
i.fa-regular.fa-file-pdf {
  margin-right: 10px;
  color: var(--black);
}

#top-bar .fa-facebook-f:hover,
#footer .social .fa-facebook-f:hover {
  background: var(--facebook-hover);
}
#top-bar .fa-linkedin-in:hover,
#footer .social .fa-linkedin-in:hover {
  background: var(--linkedin-hover);
}
.logo-icon {
  width: 120px;
  height: auto;
  object-fit: cover;
}
#logo {
  margin: 16px 0;
}
#logo img {
  max-height: 60px;
  width: auto;
}
#top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top-bar .row {
  display: flex;
  align-items: center;
}

#top-bar {
  background: var(--primary-color);
  text-align: right;
  font-size: 0.87em;
}
#top-bar,
#top-bar a {
  color: var(--white);
}

#top-bar ul {
  margin: 0;
  padding: 0;
}
#top-bar li {
  display: inline-block;
  text-align: center;
}

#top-bar .header-left p {
  font-size: 16px;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  padding: 10px 10px 10px 0;
}

#top-bar .header-left p img {
  height: 2em;
  width: auto;
  margin-top: 0.2em;
  margin-left: 0.5em;
}

#top-bar .phone {
  font-size: 16px;
  padding: 10px;
}
#top-bar .fa-brands {
  font-size: 20px;
  padding: 10px 15px;
}
#top-bar a .fa-brands {
  background: transparent;
  transition: background 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out;
  -webkit-transition: background 0.25s ease-in-out;
  color: var(--white);
}
#top-bar .menu-toggle {
  position: absolute;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  background: var(--primary-color);
  border: none;
  width: 50px;
}

#header {
  position: relative;
  z-index: 300;
}

#main-menu {
  margin: 0;
  padding: 0;
  float: right;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
  margin-top: 32px;
}

#main-menu li {
  display: block;
  padding: 7px 15px;
  position: relative;
}
#main-menu a {
  color: var(--dark-gary);
  font-weight: 600;
  text-decoration: none;
  display: block;
  cursor: pointer;
  pointer-events: auto !important;
  white-space: nowrap;
}
#main-menu a:hover {
  color: var(--blue-dark);
}
.service-banner {
  background: var(--primary-color) !important;
  height: 25px;
}
.submenu {
  display: none;
  position: absolute;
  top: 32px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--xtra-light-gray);
  box-shadow: 0px 3px 4px var(--dark-gray);
  padding: 10px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
}
.submenu.wide {
  top: 32px;
}
.submenu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(28px);
}
.submenu li {
  padding: 5px 0;
  border-bottom: 1px solid var(--xtra-light-gray);
}
.submenu li:last-child {
  border-bottom: none;
}
.submenu li a {
  color: var(--dark-gray);
}
.submenu li:hover {
  background: var(--secondry-color);
  box-shadow: inset 0 0 0 0 transparent;
}
.submenu li:hover a {
  color: var(--white) !important;
}
.submenu {
  display: flex;
}
.submenu.wide {
  width: 530px;
  display: flex;
  flex-wrap: wrap;
}
.submenu.wide li {
  width: 50%;
}

/* mobile menu */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--primary-color);
  z-index: 1000;
}
#mobile-menu ul {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: scroll;
}

#mobile-menu ul li {
  color: var(--white) !important;
  font-size: 18px;
}
#mobile-menu ul li a:hover,
#mobile-menu .mm-spn--open ul li a:hover {
  color: var(--mobile-hover-color);
}

#mobile-menu .mm-spn--open {
  overflow-y: auto !important;
  scrollbar-width: auto;
  max-height: 90vh;
  max-width: 100%;
  padding-right: 0;
}
#mobile-menu .mm-spn--open::-webkit-scrollbar {
  width: 14px;
}

#mobile-menu .mm-spn--open::-webkit-scrollbar-track {
  background: var(--xtra-light-gray);
}

#mobile-menu .mm-spn--open::-webkit-scrollbar-thumb {
  background-color: var(--secondry-color);
}

.mobile-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 13px 20px;
  text-align: left;
  z-index: 99999;
}

#mobile-menu .mobile-social {
  display: flex;
  align-items: center;
}
#mobile-menu .mobile-phone p {
  margin: 0;
  padding-left: 0;
}
#mobile-menu .mobile-social .mobile-social-icon {
  font-size: 22px;
  padding: 0;
}

#mobile-menu .mobile-social .mobile-social-icon a {
  padding-top: 0;
  padding-left: 0;
}
#mobile-menu .mobile-footer h6,
#mobile-menu .mobile-social .mobile-social-icon i {
  color: var(--white);
}
#mobile-menu .mobile-social li::before,
#mobile-menu .mobile-social li::after {
  display: none;
}

/* Banner */
#banner {
  width: 100%;
  background: var(--primary-color);
  position: relative;
  background: url('/assets/images/banners/about.jpg') center center no-repeat;
  background-size: cover;
  z-index: 1;
  background-size:cover;
  overflow: hidden;
  height:520px
}
#home-banner {
  opacity: 0;
  transition: opacity 0.5s ease;
}
#home-banner.ready {
  opacity: 1;
}
#banner .slick-slide {
  position: relative;
  width: 100%;
  height:520px
}
#banner .slick-slide .container {
  height:100%;
  display: flex;
  align-items: center;

}
#banner .slick-slide .image-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#banner .slick-slide .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#banner .slick-slide .text-content {
  position: relative;
  z-index:2;
  top: 0;
  left: 0;
  height:100%;
  width: 40%;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s ease;
}

#banner .slick-slide .text-content:before {
  /* content: "";
  position: absolute;
  border-radius:var(--bs-border-radius);
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  border: 1px solid var(--light-gray);
  pointer-events: none;
  z-index: 1; */
}
#banner .slick-slide.slick-active .text-content.animate-in {
  opacity: 1;
  transform: scale(1);
}
#banner .text-content.animate-in {
  animation: fadeScale 1s ease forwards;
}
#banner .text-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
#banner .slick-slide .text-content h1.h2,
#banner .slick-slide .text-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.3;
  color: var(--blue-dark);
}
#banner .slick-slide .text-content p {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form .btn,
#banner .slick-slide .button-link.read-more {
  display: inline-block;
  background: var(--secondry-color);
  color: var(--white);
  padding: 10px 15px 12px;
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
  transition: background 0.3s ease-in-out;
  max-width: fit-content;
}
.contact-form .btn:hover,
#banner .slick-slide .button-link.read-more:hover {
  background: var(--blue-dark);
}
#banner .slick-dotted.slick-slider {
  margin: 0;
}
#banner .slick-dots {
  position: absolute;
  bottom: 14px;
  right: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 1px;
}
#banner .slick-dots li {
  list-style: none;
  display: inline-block;
}
#banner .slick-dots li button.slick-dot {
  background: var(--white);
  padding: 5px 10px;
  border: none;
  color: var(--xtra-dark-gray);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
  width: 30px;
  height: 34px;
  text-align: center;
}
#banner .slick-dots li.slick-active button {
  background-color: var(--secondry-color);
  color: var(--white);
}
#banner .slick-dots li button:before {
  font-size: 0;
  width: 30px;
  height: 34px;
}
[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}

.slick-next:before {
  content: "→";
}

/* Hero */
#hero {
  width: 100%;
  height: 450px;
  background-image: url("/assets/images/banners/about.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#hero img {
  /* display: none; */
}
/** Content **/
.content-with-sidebar .col-lg-8 {
  padding-right: 3em;
}

#content .why-section a {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease-in-out;
}

#content .why-section a:hover {
  color: var(--blue-dark);
}

#content .why-section a:hover::after {
  margin-left: 15px;
}

table.sectors {
  width: 100%;
  box-shadow: 2px 2px 6px var(--light-gray);
  margin: 20px 0;
}
table.sectors th {
  background-color: var(--xtra-light-gray);
  color: var(--black);
  text-transform: uppercase;
  padding: 1em;
  font-size: 1.05em;
  font-weight: 400;
}
table.sectors tr:nth-child(2) {
  background-color: var(--blue-dark);
  color: var(--white);
  font-weight: 600;
}
table.sectors td {
  min-width: 33%;
  vertical-align: top;
  padding: 1em;
  font-size: 0.9em;
  line-height: 140%;
  border: 1px solid var(--xtra-light-gray);
}
table.sectors ul {
  padding: 0;
  margin: 0 0 6px 16px;
}

.widget {
  width: 100%;
  margin-bottom: 3%;
  padding: 30px;
}
.widget.darkblue,
.widget.darkblue h2,
.widget.darkblue h3,
.widget.darkblue h4,
.widget.darkblue h5,
.widget.darkblue h6,
.widget.blue h1,
.widget.blue h2,
.widget.blue h3,
.widget.blue h4,
.widget.blue h5,
.widget.blue h6 {
  color: var(--white);
  padding-bottom: 14px;
  border-bottom: 3px solid var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}

.widget.darkblue {
  background-color: var(--blue-dark);
  color: var(--white) !important;
}
.widget.blue {
  background-color: var(--secondry-color);
  color: var(--white) !important;
}
.widget i {
  margin-right: 0.5em;
}
#footer {
  margin-top: 30px;
}
#bottom-bar {
  background-color: var(--secondry-color);
  box-shadow: 1px 1px 3px var(--black);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
}

#bottom-bar p,
#bottom-bar a {
  margin: 0;
  color: var(--white);
}
#bottom-bar h3,
#bottom-bar h4,
#bottom-bar h5,
#bottom-bar h6 {
  color: var(--white);
  font-size: 2em;
  margin: 0;
}

#footer-bottom {
  background-color: var(--xtra-dark-gray);
  color: var(--xtra-light-gray);
  padding: 30px 0;
  box-shadow: 1px 1px 3px var(--black);
}
#footer-bottom .footer-content {
  display: flex;
  justify-content: center;
  padding: 10px;
}
#footer-bottom h3,
#footer-bottom h4,
#footer-bottom h5,
#footer-bottom h6 {
  color: var(--xtra-light-gray);
  font-size: 1.5em;
}
#footer-bottom h6 {
  margin-bottom: 0.5em;
}
#footer-bottom a {
  color: var(--xtra-light-gray);
}
#footer-bottom ul li a:hover {
  color: var(--secondry-color);
}
#footer-bottom a:hover .fa-brands {
  color: var(--white);
}
#footer-bottom .social {
  display: flex;
  justify-content: left;
  gap: 0.5em;
}

#footer-bottom a .fa-brands {
  background: transparent;
  transition: background 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out;
  -webkit-transition: background 0.25s ease-in-out;
  color: var(--white);
  font-size: 22px;
  background: var(--secondry-color);
  padding: 10px 15px;
}

#footer-bottom .social a:hover {
  border-bottom: none !important;
}

#footer-bottom i {
  margin-right: 0.5em;
}

#footer-bottom .footer-spam {
  margin-top: 1em;
}

ul.social {
  display: flex;
  padding: 0;
  margin: 0;
}
ul.social li {
  display: inline-block;
  text-align: left;
  margin-top: 0.5em;
  width: 50px;
}

.footer-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}

.footer-submenu li {
  list-style: circle !important;
}
.footer-submenu.show {
  display: block;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown > a {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  pointer-events: none;
}

.dropdown .dropdown-icon {
  margin-left: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

#copyright {
  background: var(--black);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
}
/* Slidehow */
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: var(--black);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--black);
}

/* Logo Carousel */
.logo-carousel {
  width: 90%;
  padding: 20px 0;
  margin: 20px auto;
}
.logo-carousel .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-carousel a {
  border: none !important;
}
.logo-carousel a::after {
  display: none !important;
}
.logo-carousel .slick-list {
  height: 100px;
  overflow: hidden;
}
.logo-carousel .slick-list img {
  position: relative;
  top: 0;
  padding: 10px;
  transition: all 0.5s ease-out;
}
.logo-carousel .slick-slide a img {
  height: 200px;
}
.logo-carousel img:hover {
  top: -100px;
}
.slick-prev,
.slick-next {
  background: var(--carousel-button);
  color: transparent;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 0;
  z-index: 9999;
  padding: 3px 6px;
}
.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  opacity: 0.75;
  transition: all 0.3s ease-in-out;
  color: var(--white);
}
.slick-next:before {
  content: "\f054";
  padding: 3px;
}
.slick-prev:before {
  content: "\f053";
  padding: 3px;
}
.slick-prev {
  left: -45px;
}
.slick-next {
  right: -65px;
}
.slick-prev:hover,
.slick-next:hover {
  background: var(--gray);
  color: transparent;
}

/* sidebar contact */
.widget.darkblue h4 {
  font-size: 1.8em;
}
/* contact page */
.contact,
.services,
.about,
.work,
.capabilities,
.painting {
  display: flex;
}
.form-group {
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-group .two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1em;
  }
}
.form-group .two-columns input {
  margin-bottom: 1em;
}

.form-group .three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.form-group .four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

label,
legend {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-size: 16px;
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 5px var(--blue-dark);
}
input.error,
textarea.error,
select.error {
  border: 2px solid var(--error) !important;
  outline: none;
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-email {
  display: block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-form-left h2 {
  font-size: 28px;
}

#thank-you-message {
  border: 2px dotted var(--xtra-light-gray);
  padding: 2em 1em;
  background: var(--bs-light-bg-subtle);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2em;
}

/* Services Page*/

.contact-header h1 span {
  color: var(--contact-heading-color);
}

.intro-text {
  font-size: 18.5px;
  color: var(--black);
}

.service-cert {
  text-align: center;
  margin-bottom: 1em;
}
.service-cert h5 {
  margin-bottom: 0;
}
.service-cert img {
  margin: 1em 0;
}

.seo-cards .border-full {
  margin-bottom: 1rem;
}

/* Covid 19 sign page */
.add-to-cart-btn input,
.view-cart-btn input {
  width: auto;
  border: none;
  padding: 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-item {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.services-list .service-item p {
  margin-top: 0;
}
.services-list .service-item:last-child p::after {
  margin-left: 10px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.service-item ul {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}

.services-list .service-item.open p::after {
  transform: rotate(180deg);
}

.services-list .service-item.open ul {
  display: block;
}

.testimonial {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: left;
  gap: 3em;
}

.testimonial-box {
  position: relative;
  border: 1px solid var(--black);
  padding: 2.5em;
  z-index: 2;
}

.testimonial-box-desc {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.testimonial-icon {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.testimonial-box-info p {
  margin-top: 5px;
  margin-bottom: 0;
}

.testimonial-blockquote {
  position: relative;
  quotes: "\201C""\201D""\2018""\2019";
}

.testimonial-blockquote:before {
  position: absolute;
  padding-bottom: 30px;
  padding-left: 35px;
  color: var(--xtra-light-gray);
  content: "\201C";
  font-size: 10em;
  z-index: 1;
  opacity: 0.5;
}

@media (min-width: 1025px) {
  #top-bar .menu-toggle,
  #mobile-menu {
    display: none;
  }
}
@media (max-width: 1240px) {
  #logo {
    padding: 0;
  }
  .heading.lg {
    font-size: 3em;
  }
  .text-content h2 {
    font-size: 2em;
  }
}

@media (max-width: 1200px) {
  .contact-header h1 {
    max-width: 70%;
    display: block;
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 1163px) {
  .submenu.wide {
    top: 36px;
  }
}

@media (max-width: 1024px) {
  #logo {
    margin-top: 50px;
  }
  .container,
  .container-sm {
    max-width: 100%;
  }
  /*
  .content-with-sidebar .col-lg-8 {
    padding-right: 0;
  }
  */
  .slicknav_menu {
    display: block;
  }
  .heading.lg {
    font-size: 2em;
  }
  #top-bar {
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
  }
  #header {
    padding-top: 60px;
  }
  #header .main-menu {
    display: none;
  }
  #header .logo {
    width: 100%;
    text-align: center;
  }
  #bottom-bar h3,
  #bottom-bar h4,
  #bottom-bar h5,
  #bottom-bar h6 {
    line-height: 160%;
  }
  #content,
  #footer-bottom {
    padding: 20px;
  }
  #my-menu {
    background: var(--primary-color);
    color: var(--white);
  }

  .menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: transparent;
    margin-top: -5px;
  }

  .menu-header img {
    max-width: 120px;
    height: auto;
    object-fit: cover;
    filter: invert(100%) brightness(1000%);
  }

  .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    z-index: 10000;
  }

  .slick-prev {
    left: -30px;
  }

  #top-bar .container {
    display: grid;
  }
  #top-bar .header-left p {
    padding-bottom: 0;
    padding-right: 0;
    text-align: left;
  }
  #top-bar .header-left p,
  #top-bar .phone {
    font-size: 14px;
  }
  #top-bar .fa-brands {
    font-size: 16px;
  }

  #top-bar ul {
    text-align: left;
  }
  #top-bar .menu-toggle {
    bottom: 5px;
  }
}
.desktop-only {
  display: contents;
}
.mobile-only {
  display: none;
}
@media (max-width: 991px) {
  .container {
    padding-left: 1em;
    padding-right: 1em;
  }
  .mobile-only {
    display: contents !important;
  }
  .desktop-only {
    display: none;
  }
  .border-dotted.bottom-border {
    padding-bottom: 0;
  }
  #content {
    padding-top: 0;
  }
  #home-banner,
  #banner,
  #hero img {
    display: none;
  }
  .border-dotted.left-border,
  .border-dotted.bottom-border,
  .border-dotted.right-border,
  .border-dotted.top-border {
    border: 0;
  }
  .border-dotted.left-border {
    padding-left: 0;
  }
  ul.social {
    gap: 2em;
  }
  ul.social li {
    margin-top: 0;
  }
  .slick-prev {
    left: -30px;
  }
  .btn.contact-btn {
    margin-bottom: 20px;
  }
  .contact,
  .services,
  .about,
  .work,
  .capabilities,
  .painting {
    display: block;
  }
  .border-dotted.top-border {
    padding-top: 0;
  }
  .contact-header h1 {
    max-width: 100%;
  }
  .content-with-sidebar .col-lg-8 {
    padding-right: 0;
  }
  .testimonial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .interactions-svg {
    display: none;
  }
}
@media (max-width: 767px) {
  #hero .container {
    display: none;
  }
  .mobile-only .pt-5 {
    padding-top: 1rem !important;
  }
  h1 {
    font-size: 2.145em;
  }
  h2 {
    font-size: 1.95em;
  }
  h3,
  h4,
  h5 {
    font-size: 1.56em;
  }
  h6 {
    font-size: 1.17em;
  }

  #bottom-bar h5 {
    font-size: 1em;
  }
  p,
  li,
  .sectors,
  .sectors tr td u {
    font-size: 1em;
  }
  .form-group {
    margin-bottom: 0;
  }
  .contact-form .btn {
    margin-top: 1em;
  }
  .two-columns,
  .four-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #footer-bottom .footer-content {
    display: block;
  }
  #footer-bottom .social .fa {
    margin-top: 0.5em;
  }

  .slick-next {
    right: -60px;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .service-item {
    padding-right: 0;
  }
}
@media (max-width: 476px) {
  #top-bar .menu-toggle {
    right: 5px;
  }

  .contact-form .three-columns {
    display: block;
  }

  .contact-form .three-columns input {
    margin: 1em 0;
  }

  .contact-form p.contact-form-email {
    box-sizing: border-box;
  }

  .border-dotted table {
    box-shadow: none;
    border: 1px solid var(--xtra-light-gray);
  }

  .sectors .mobile-header {
    background: var(--blue-dark);
    color: var(--white);
  }

  .sectors .mobile-header,
  .sectors .mobile-content {
    width: 100%;
  }
  .slick-prev {
    left: -20px;
  }
  .slick-next {
    right: -40px;
  }
  #top-bar .header-left p {
    width: 100%;
  }
}

@media (max-width: 375px) {
  #top-bar .header-left p img {
    display: none;
  }
  .slick-prev {
    left: -30px;
  }
  .slick-next {
    right: -45px;
  }
  .testimonial-box-desc {
    display: block;
  }
  .testimonial-icon {
    margin-bottom: 0.5em;
  }
}

@media (max-width: 320px) {
  .carousel .slick-list img {
    padding: 0 0 0 30px;
  }

  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -40px;
  }

  #top-bar .fa-brands {
    padding: 10px;
  }
}

@media (min-width: 768px) {
  ul.column2 {
    columns: 2;
  }
}

@media (min-width: 992px) {
  ul.column3 {
    columns: 3;
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
