@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

/* Color Variables */
:root {
  --primary-color: #202659;
  --secondary-color: #10558c;
  --light-secondary-color: #ecf0f4;
  --active-nav-link: #1e376a;
  --green-color: #23825a;
  --dark-green-color: #0d5928;
  --btn-gradient: linear-gradient(
    to bottom,
    var(--green-color),
    var(--dark-green-color)
  );
  --widget-gradient: linear-gradient(to bottom, var(--white-color), #f4f7fa);
  --btn-green: #23825a;
  --white-color: #fff;
  --black-color: #000;
  --btn-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --secondary-border-color: #2176b7;
  --light-secondary-border-color: #c3d4e5;
  --lightgray-border-color: #d5d5d5;
  --max-width: 1400px;
  --main-heading: 35px;
  --sub-heading1: 30px;
  --sub-heading2: 26px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-14: 14px;
  --fs-12: 12px;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  color: var(--black-color);
  font-size: 1rem;
  font-weight: 400;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
}

.heading,
.font-lato {
  font-family: "Lato", sans-serif;
}

.main-heading {
  font-size: var(--main-heading);
}

.sub-heading1 {
  font-size: var(--sub-heading1);
}

.sub-heading2 {
  font-size: var(--sub-heading2);
}

.main-heading,
.sub-heading1,
.sub-heading2,
.fw-black {
  font-weight: 900;
}

.logo {
  width: 145px;
}

.secondary-border-color {
  border-color: var(--secondary-border-color) !important;
}

.light-secondary-border-color {
  border-color: var(--light-secondary-border-color) !important;
}

.lightgray-border-color {
  border-color: var(--lightgray-border-color) !important;
}

.light-secondary-bg {
  background-color: var(--light-secondary-color);
}

.light-text {
  color: var(--active-nav-link);
}

.max-w-2xl {
  max-width: var(--max-width);
}

.fs-12 {
  font-size: var(--fs-12);
}
.fs-14 {
  font-size: var(--fs-14);
}
.fs-16 {
  font-size: var(--fs-16);
}
.fs-18 {
  font-size: var(--fs-18);
}
.fs-20 {
  font-size: var(--fs-20);
}
.fs-24 {
  font-size: var(--fs-24);
}
.fs-28 {
  font-size: var(--fs-28);
}

.text-unset {
  color: unset;
}

.primary-bg {
  background: var(--primary-color);
}

.primary-text {
  color: var(--primary-color);
}

.text-green {
  color: var(--green-color);
}

.text-dark-green {
  color: var(--dark-green-color);
}

.green-gradient-btn {
  background: var(--btn-gradient);
  box-shadow: var(--btn-shadow);
}

.transparent-btn {
  backdrop-filter: blur(10px);
  box-shadow: var(--btn-shadow);
}

.green-btn {
  background: var(--dark-green-color) !important;
}

.green-gradient-btn:hover,
.green-btn:hover,
.transparent-btn:hover {
  filter: contrast(1.25);
  transition: filter 0.35s;
}

.secondary-text {
  color: var(--secondary-color);
}

/* Header CSS */
.input-focus:focus-within {
  border-color: var(--secondary-color);
}

#search-bar {
  padding-left: 34px;
}

.social-icons a img:hover {
  filter: contrast(1.5);
  transition: filter 0.5s;
}

nav .nav-link.active {
  color: var(--active-nav-link) !important;
}

nav .nav-link:hover {
  color: var(--active-nav-link) !important;
}

.gcs-main-bg-img {
  background: url('gcs-main-bg-img.jpg') no-repeat center center/cover;
  min-height: 700px;
}

/* Fabrication & Engineering CSS */
.bg-primary-gradient {
  background: linear-gradient(to left,
      var(--primary-color),
      var(--secondary-color));
}


/* Footer CSS */
footer .social-icons img {
  width: 34px;
}

/* cymcms specific */
.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}
.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.cymBody { padding: 8px; line-height: 130%; }
.cymBody .cymHeader, .cymSectHeader, .cymArticleHeader, .cymTitle, .cymGalleryHeader, span.cymHeader {
  line-height: 120%;
  font-size:18px;
  font-weight: normal;
}
.cymFormTable { width: 99%; }
.cymFormTable .fText { width: 85%; }
.cymFormTable .fTextArea { width: 85%; }
.cymFormTable .fSelect { width: 88%; }
.cymFormBody { padding: 10px 0px 0px 2px }
.cymLabel { color: #333333; }
.cymLabelRequired { color: #333333; }
.cymHelp { color: #333333; font-style: italic; }

#page-content ul {
    margin-top: 10px;
}
#page-content ol {
    margin-top: 10px;
}
#page-content ul li {
    list-style: disc outside none;
    margin-left: 20px;
    line-height: 125%;
    padding-bottom: 6px;
}
#page-content ol li {
    list-style: decimal outside none;
    margin-left: 20px;
    line-height: 125%;
    padding-bottom: 6px;
}
#page-content em,i {
   font-style: italic;
}
#page-content strong,b {
   font-style: bold;
}
#page-content h2 {
  font-size: 26px;
}
#page-content h3 {
  font-size: 22px;
}
#page-content h4 {
  font-size: 20px;
}
p.contactus {
  margin-top:12px;
  margin-bottom:12px;
  line-height: 135%;
  color:#000000;
  font-size:22px;
  font-weight:600;
}
p.h4 {
  margin-top:8px;
  margin-bottom:8px;
  line-height: 135%;
  color:#000000;
  font-size:22px;
  font-weight:600;
}

.sidenav {
  list-style: square outside none;
  margin-left: 0;
  line-height: 140%;
  padding-bottom: 6px;
  color: #19a94b;
}
.sidenav a, .sidenav_child a {
  color: #1e376a;
  font-weight: 500;
  text-decoration:none;
}
.sidenav a:hover, .sidenav_child a:hover {
  text-decoration:underline;
}
li.sidenav_static, li.sidenav_child_static {
  margin-left: 0px;
  color:#1e376a;
  font-weight: 700;
  margin-top: 16px;
  list-style-type: none;
}

#gallery-masonry {
  margin: 0 auto;
  width: auto;
}
#gallery-masonry div.item {
  display: block;
  width: 210px;
  background-color: #ffffff;
  padding: 8px;
  margin: 4px;
  opacity: 1;
  -moz-transition: opacity 0.3s ease-in-out;
}
p.cymGalleryCaption {
  font-size: 15px;
  color: #111111;
  font-weight: 400;
}
 /* glightbox */
.gslide-description {
  font-size: 16px;
  font-weight: 600;
}

.thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #bbb;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
     -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
  margin-bottom: 10px;
}
a.thumbnail:hover,
a.thumbnail:focus {
  border-color: #0088cc;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
     -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
          box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}

.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.thumbnail .caption {
  padding: 9px;
  color: #555555;
}

hr.grad { 
  border: 0; 
  height: 0;
  border-top: 1px solid rgba(0,0,0,0.2); 
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 28px;
}

a.link-button{
  color:#ffffff !important;
  font-size:20px;
  font-weight:600;
  display: inline-block;
  padding:12px;
  background-color:#1e376a;
  border-radius:10px;
  text-decoration: none;
  text-align: center;
}
a.link-button:hover{
  font-weight:600;
  background-color:#23825a;
}

.nav-link {
  color:#1e376a;
}

.video-container {
  position: relative;
  padding-bottom: 52%;
  height: 0;
  overflow: hidden;
  border: 2px solid #bbb;
  margin-bottom:10px;
  max-width:98%;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.topmar4  { margin-top:4px; }
.topmar8  { margin-top:8px; }
.topmar10 { margin-top:10px; }
.topmar12 { margin-top:12px; }
.topmar16 { margin-top:16px; }
.topmar24 { margin-top:24px; }
.topmar32 { margin-top:32px; }
.topmar48 { margin-top:48px; }

/* Interior Template Page CSS */
.widget-sec {
  box-shadow: var(--btn-shadow);
  background: var(--widget-gradient);
}

/* colorbox overrides */
#cboxTitle {
  color: #1e376a;
  bottom: -30px;
  font-size: 16px;
}

/************************/
/* Mobile */
/************************/

@media only screen and (max-width: 768px) {
  #search-bar {
    width:110px;
  }

  .main-heading {
    font-size: var(--sub-heading1);
  }

  .sub-heading1 {
    font-size: var(--sub-heading2);
  }

  .sub-heading2 {
    font-size: var(--fs-20);
  }

  .fs-28 {
    font-size: var(--fs-24);
  }
  .fs-24 {
    font-size: var(--fs-20);
  }
  .fs-20 {
    font-size: var(--fs-18);
  }
  .fs-18 {
    font-size: 1rem;
  }
  .fs-16 {
    font-size: 1rem;
  }

  .logo {
    width: 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .nav-link.fs-18 {
    font-size: 1rem;
  }

  .logo {
    width: 100px;
  }
}

@media only screen and (max-width: 992px) {
  .nav-link.fs-18 {
    font-size: var(--fs-14);
  }

  .custom-gap-y {
    row-gap: 0px !important;
  }
}