@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&family=Pinyon+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@media screen and (min-width: 1500px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px;
  }
}

body {
    overflow-x: hidden;
}

[data-scroll-container] {
    will-change: transform;
}

a {
  text-decoration: none !important;
}

p, a, label, li, input, button, h1, h2, h3, h4, h5, h6, span, small, strong, textarea, select, th, td {
  font-family: 'Lato', sans-serif !important;
}

input:focus, select:focus, textarea:focus {
  outline: 0;
}

img {
    -webkit-user-drag: none;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

section {
    position: relative;
    overflow: hidden;
}

.form-control:focus {
    border-color: #fed986 !important;
    box-shadow: 0 0 0 .25rem rgb(227 227 227 / 25%) !important;
}

header#header {
    padding: 10px 0;
    transition: all 0.2s linear;
    position: relative;
}

header#header .block {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

header#header .primaryLogo {
    flex: 0 1 20%;
}

header#header .primaryMenu {
    flex: 0 1 40%;
}

header#header .headerCTA {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
}

header#header .headerCTA p {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 10px;
}

header#header .headerCTA p a {
    font-size: 25px;
    color: #000;
    font-weight: 600;
}

header#header .headerCTA p a span{
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 2px;
}

header#header .headerCTA p i {
    font-size: 35px;
    color: #2e4796;
}

header#header .headerCTA a.headerbtn {
    color: #2e4793;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin-left: auto;
    text-align: center;
    border: 2px solid #2e4793;
    padding: 15px 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
}

header#header .headerCTA a.headerbtn:hover {
    background: #2e4793;
    color: #fff;
}

header#header .primaryLogo a.brandLogo {
    max-width: 250px;
    display: block;
}

header#header .primaryLogo a.brandLogo img {
    width: 100%;
    display: block;
    margin: 0;
}

header#header .primaryMenu ul {
    display: flex;
    justify-content: center;
    gap: 35px;
}

header#header .primaryMenu > ul > li {
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
}

header#header .primaryMenu ul li a {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* General Styling */
header#header .primaryMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header#header .primaryMenu ul li {
    position: relative;
}

/* First-Level Submenu */
header#header .primaryMenu ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header#header .primaryMenu ul li .submenu li:first-child a {
    display: flex;
    justify-content: space-between;
}

/* Second-Level Submenu */
header#header .primaryMenu ul li .submenu li {
    position: relative;
}

header#header .primaryMenu ul li .submenu .submenu-level-I {
    position: absolute;
    top: 0;
    left: 100%; /* Changed from right: -240px for proper positioning */
    background: white;
    min-width: 200px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Show First-Level Submenu on Hover */
header#header .primaryMenu ul li:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Show Second-Level Submenu on Hover */
header#header .primaryMenu ul li .submenu li:hover > .submenu-level-I {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu Items */
header#header .primaryMenu ul li .submenu li,
header#header .primaryMenu ul li .submenu-level-I li {
    padding: 10px;
    background: white;
    white-space: nowrap; /* Prevents text from wrapping */
}

/* Submenu Links */
header#header .primaryMenu ul li .submenu li a,
header#header .primaryMenu ul li .submenu-level-I li a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 5px 10px;
    font-size: 14px; /* Increased font size for better readability */
}

/* Hover Effects */
header#header .primaryMenu ul li .submenu li:hover,
header#header .primaryMenu ul li .submenu-level-I li:hover {
    background: #f0f0f0;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  width: 97%;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden; /* Ensure the effect stays within bounds */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/homebanner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.1s ease-out;
  will-change: transform;
  transform: translateY(var(--parallax, 0px)) scale(var(--zoom, 1));
  transform-origin: center center;
  z-index: -1; /* Keeps background behind content */
}


.hero .block {
    text-align: center;
}

.hero .block h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
}

.hero .block h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    width: 550px;
    margin: 20px auto;
    text-align: center;
    line-height: 55px;
}

.hero .block h1 span {
    color: #5470c7;
}

.hero .block p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin: 0 auto 20px;
    width: 60%;
    line-height: 24px;
}

.hero .block a {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #fff;
    padding: 15px 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
}

.hero .block a:hover {
    background: #2e4793;
    border-color: #2e4793;
    
}

.aboutsection {
    padding: 100px 0 0;
}

.aboutsection .block {}

.aboutsection .block h4 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
}

.aboutsection .block h2 {
    font-size: 50px;
    color: #000;
    font-weight: 700;
    line-height: 55px;
    margin: 10px 0 30px;
}

.aboutsection .block p {
    color: #000;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}

.aboutsection img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.aboutsection ul {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0 0;
    gap: 20px;
}

.aboutsection ul li {
    flex: 0 1 47%;
    background: #f9f9f9;
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    font-size: 15px;
    line-height: 20px;
    color: #000;
}

.aboutsection ul li strong {
  display: block;
  color: #000;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.aboutsection ul li:last-child {
    flex: 0 1 97%;
}

.safetyman {}

.safetyman img {
  width: 100%;
  display: block;
  margin: 0;
}

.requestquotesection {
  background-image: url(../images/safetymanimg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0 100px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.requestquotesection::before {
    content: "";
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, #fff, transparent);
    position: absolute;
    top: 0;
}

.requestquotesection .block {
  text-align: center;
}

.requestquotesection .block p {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin: 0 auto 20px;
  width: 80%;
  position: relative;
}

.requestquotesection .block a {
    color: #2e4793;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    text-align: center;
    border: 2px solid #2e4793;
    padding: 15px 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    position: relative;
    z-index: 999;
}

.requestquotesection .block a:hover {
    background: #2e4793;
    color: #fff;
}

.products {
    padding: 100px 0;
    text-align: center;
}

.products .title {
    margin-bottom: 50px;
}

.products .title h2 {
    font-size: 50px;
    color: #000;
    font-weight: 700;
    margin: 10px 0 20px;
}

.products .title p {
    color: #000;
    font-size: 20px;
    line-height: 30px;
}

.products .item {}

.products .item img {
    width: 100%;
}

.products .item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    background: #fff;
    z-index: 9999;
    position: relative;
    width: fit-content;
    margin: -21px auto 15px;
    padding: 10px 20px;
    border: 1px solid #2e4793;
    transition: all 0.2s linear;
}

.products .item:hover h3 {
    background: #2e4793;
    color: #fff;
    margin-bottom: 0;
}

.products .item a {
    color: #2e4793;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s linear;
}

.products .item:hover a {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    margin-top: 0;
    display: inline-block;
}

.products .slick-slide {
    margin: 0 10px;
}

.products .slick-list {
    margin: 0 -10px;
}

.products .slick-arrow::before {
    color: #000 !important;
    font-size: 30px;
}

.products .slick-prev {
    left: -70px;
    top: 40%;
}

.products .slick-next {
    right: -60px;
    top: 40%;
}

.customized {
    padding: 50px 0 100px;
}

.customized img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.customized .block {
    padding-left: 50px;
}

.customized .block h2 {
    font-size: 35px;
    color: #000;
    font-weight: 700;
    margin: 0px 0 20px;
}

.customized .block p {
    color: #000;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 25px;
}

.customized .block ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.customized .block ul li {
    color: #000;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    list-style: decimal-leading-zero;
}

.customized .block a {
    color: #2e4793;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: fit-content;
    margin: 30px 0 0;
    text-align: center;
    border: 2px solid #2e4793;
    padding: 15px 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    position: relative;
    z-index: 999;
}

.customized .block a:hover {
    background: #2e4793;
    color: #fff;
}

.clients {
    padding: 100px 0 60px;
}

.clients .block {
    text-align: center;
}

.clients .block h2 {
    font-size: 35px;
    color: #000;
    font-weight: 700;
    margin: 0px 0 20px;
}

.clients .block p {
    color: #000;
    font-size: 20px;
    line-height: 30px;
    width: 80%;
    margin: 0 auto;
}

.clients ul {
    margin: 50px 0 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.clients ul li {}

.clients ul li img {}

footer.mainfooter {
    background: #000;
    padding: 70px 0;
    background-image: url(../images/ftbg.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer.mainfooter a.ftlogo {
    max-width: 250px;
    display: block;
}

footer.mainfooter a.ftlogo img {
    width: 100%;
    display: block;
}

footer.mainfooter .ftcontact {
    margin: 25px 0;
}

footer.mainfooter .ftcontact h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

footer.mainfooter .ftcontact .item {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer.mainfooter .ftcontact .item p {
    display: flex;
    gap: 10px;
}

footer.mainfooter .ftcontact .item p i {
    color: #b90619;
    font-size: 30px;
}

footer.mainfooter .ftcontact .item p a {
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

footer.mainfooter .ftcontact .item p a span {
    display: block;
    font-size: 14px;
}

footer.mainfooter .ftmenu {
    margin-top: 40px;
    margin-bottom: 60px;
}

footer.mainfooter .ftmenu h3 {
    color: #cda4ab;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 25px;
    width: fit-content;
}

footer.mainfooter .ftmenu ul {
    display: flex;
    gap: 20px;
}

footer.mainfooter .ftmenu ul li {}

footer.mainfooter .ftmenu ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.copyrights {
    background: #080808;
    padding: 25px 0;
}

.copyrights .block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyrights ul {
    display: flex;
    gap: 20px;
}

.copyrights ul li {}

.copyrights ul li a {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.copyrights p {
    font-size: 14px;
    color: #fff;
}

footer.mainfooter p.ftmaintext {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    width: 68%;
    line-height: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #111;
    padding-bottom: 20px;
}

.sitepopup {
    display: none;
    overflow: hidden !important;
    !i;!;
    border: 1px solid #494949;
    width: 700px;
}

.sitepopup::before {
    content: "";
    background: url(../images/quotepopbg.jpg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(10px);
    opacity: 0.2;
    z-index: 0;
}

.sitepopup::after {
    content: "";
    background: linear-gradient(150deg, #fff, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.sitepopup > * {
    position: relative;
    z-index: 9;
}

.sitepopup h2 {
    font-size: 40px;
    color: #2e4793;
    font-weight: 700;
    margin: 20px auto;
}

.sitepopup h4 {
    font-size: 16px;
    color: #2e4793;
    font-weight: 600;
    margin: 20px auto;
}

.sitepopup p {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 25px;
}

.sitepopup .row {
}

.sitepopup form {
    margin-top: 30px;
}

.sitepopup form label {
    display: block;
    color: #000;
    font-size: 14px;
    margin-bottom: 5px;
}

.sitepopup form input:not(.servicescheckbox) {
    width: 100%;
    height: 42px;
    background: transparent;
    border: 1px solid #7e7e7e;
    padding: 0 15px;
    font-size: 14px;
    color: #000;
}

.sitepopup form input.servicescheckbox {
    width: 20px;
    height: 20px;
    accent-color: #2e4793;
}

.sitepopup form textarea {
    width: 100%;
    height: 90px;
    background: transparent;
    border: 1px solid #7e7e7e;
    padding: 15px;
    font-size: 14px;
    color: #000;
    resize: none;
}

.sitepopup form ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0 20px;
    gap: 16px 0;
}

.sitepopup form ul li {
    display: flex;
    justify-content: start;
    width: 33%;
    flex-direction: row-reverse;
    gap: 7px;
    align-items: center;
}

.sitepopup form ul li:nth-child(4), .sitepopup form ul li:nth-child(5) {
    width: 40%;
}

.sitepopup form ul li label {
    font-size: 15px;
    margin: 0;
}

.sitepopup form button {
    color: #fff;
    background: #2e4793;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: fit-content;
    text-align: center;
    border: 1px solid #2e4793;
    padding: 15px 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
}

.sitepopup form button:hover {
    background: transparent;
    color: #2e4793;
}

.fancybox-is-open .fancybox-bg {
    background: #000;
    opacity: 0.8;
}

#fancybox-container-1 {
    backdrop-filter: blur(5px);
}

#pageheader {
    background: url(../images/bannerbg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 97%;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden; /* Ensure the effect stays within bounds */
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

#pageheader h1 {
    color: #000;
    text-align: center;
    font-weight: 600;
    font-size: 36px;
    position: relative;
}

.productsArchive {
    padding: 100px 0;
}

.productsArchive .block {}

.productsArchive .block img {
    width: 100%;
    border: 1px solid #ddd;
    padding: 20px;
}

.productsArchive .block .details {}

.productsArchive .block .details h3 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.productsArchive .block .details p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 30px;
}

.productsArchive .block .details a {
    color: #2e4793;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: fit-content;
    text-align: center;
    border: 1px solid #2e4793;
    padding: 10px 15px;
    transition: all 0.2s linear;
    letter-spacing: 0.5px;
}

.productsArchive .block .details a:hover {
    background: #2e4793;
    color: #fff;
}

.productSingle {
    padding: 100px 0;
}

.productSingle .block {}

.productSingle .block img {
    width: 100%;
    border: 1px solid #ddd;
    padding: 20px;
}

.productSingle .block .details {}

.productSingle .block .details h3 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.productSingle .block .details h3 span {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    color: #535353;
}

.productSingle .block .details p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 30px;
}

.productSingle .block .details a {
    color: #2e4793;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: fit-content;
    text-align: center;
    border: 1px solid #2e4793;
    padding: 10px 15px;
    transition: all 0.2s linear;
    letter-spacing: 0.5px;
}

.productSingle .block .details a:hover {
    background: #2e4793;
    color: #fff;
}

.productSingle .block .details table {
    margin-bottom: 30px;
}

.productSingle .block .details table tr {}

.productSingle .block .details table tr ul {
    padding-left: 20px;
}

.productSingle .block .details table tr ul li {list-style: square;font-size: 14px;line-height: 20px;}

.productSingle .block .details table th {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    border: 1px solid #ddd;
    padding: 10px;
    vertical-align: top;
    width: 150px;
}

.productSingle .block .details table td {
    padding: 10px;
    color: #000;
    font-size: 14px;
}

.productSingle .block .details table tr.tdFeatures span {
    background: #f1f1f1;
    padding: 10px 15px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50px;
    font-weight: 600;
}

.productSingle .block .details table tr.tdSize span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-right: 10px;
    font-weight: 600;
}

.productListing {
    padding: 100px 0;
}

.productListing ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.productListing ul li {
    width: 30%;
}

.productListing ul li a {
    display: block;
    text-align: center;
    border: 1px solid #efefef;
    padding: 20px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background: #fff;
    transition: all 0.2s linear;
}

.productListing ul li a:hover {
    background: rgb(0,0,0,0.03);
}

.productListing ul li img {
    width: 100%;
    border-bottom: 1px solid #efefef;
    display: block;
    margin-bottom: 15px;
}

.productSingle .block .slider-thumbs {
    margin-top: 10px;
}

.productSingle .block .slider-thumbs img {
    padding: 0;
    cursor: pointer;
}

.productSingle .block .slick-slide {
    margin: 0 5px; /* Adjust the value as needed */
}

.productSingle .block .slick-list {
    margin: 0 -5px; /* This ensures proper alignment */
}

.productSingle .block table img {
    width: 100px;
    border: none;
    padding: 0;
}

.about-sec-1 {
    padding: 100px 0 40px;
}

.about-sec-1 img {
    width: 93%;
    border-radius: 10px;
    margin-left: auto;
    display: block;
}

.about-sec-1 .block {}

.about-sec-1 .block h4 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
}

.about-sec-1 .block h2 {
    font-size: 40px;
    color: #000;
    font-weight: 700;
    line-height: 55px;
    margin: 10px 0 15px;
}

.about-sec-1 .block h3 {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin: 20px 0;
}

.about-sec-1 .block p {
    color: #000;
    font-size: 17px;
    line-height: 28px;
    text-align: justify;
}

.about-sec-2 {}

.about-sec-2 .block h2 {
    font-size: 25px;
    color: #000;
    font-weight: 600;
    margin: 10px 0 30px;
}

.about-sec-2 ul {
    padding: 0 20px;
}

.about-sec-2 ul li {
    font-size: 18px;
    color: #000;
    margin: 18px 0;
    list-style: square;
    line-height: 18px;
}

.about-sec-2 ul li strong {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.about-sec-2 .itemsblock {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.about-sec-2 .itemsblock::before {
    content: "";
    background: url(../images/pro3.jpg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-sec-2 .msblock {
    padding: 30px;
    position: relative;
}

.about-sec-2 .msblock:first-child {
    background: rgb(176 0 23 / 78%);
}

.about-sec-2 .msblock:nth-child(2) {
    background: #a13333;
}

.about-sec-2 .msblock:last-child {
    background: rgb(213 21 46 / 89%);
}

.about-sec-2 .msblock h2 {
    font-size: 20px;
    color: #ffecb4;
    font-weight: 600;
    margin: 0 0 15px;
}

.about-sec-2 .msblock p {
    font-size: 15px;
    color: #fff;
    line-height: 26px;
}

header#header.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: #fff;
    border-bottom: 2px solid #ddd;
    transition: all 0.2s linear;
}

.about-sec-2 .col-md-6:last-child .block {
    padding-left: 50px;
}

.breadcrumbsNav {
    text-align: center;
    margin-top: 15px;
}

.breadcrumbsNav p {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumbsNav p a {
    color: #2e4796;
    font-weight: 600;
    position: relative;
}

.breadcrumbsNav p span {}

.breadcrumbsNav p a::after {
    content: "→";
    margin-left: 10px;
    color: #000;
}

.sitepopup .row.mb-3.prefilledbox {
    border: 1px solid #ddd;
    padding: 0px 10px 20px;
    margin: 20px 0 20px !important;
    background: #f9f9f9;
}

.sitepopup .row.mb-3.prefilledbox input {
    background: #eee;
    cursor: not-allowed;
}

.mobileprimaryMenu,.mobileMenu {
    display: none;
}

.contactpg {
    padding: 100px 0;
}

.contactpg h2 {
    font-size: 50px;
    color: #000;
    font-weight: 700;
    margin: 10px 0 20px;
}

.contactpg p {
    color: #000;
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 30px;
}

.contactpg form label {
    display: block;
    color: #000;
    font-size: 14px;
    margin-bottom: 5px;
}

.contactpg form input {
    width: 100%;
    height: 42px;
    background: transparent;
    border: 1px solid #7e7e7e;
    padding: 0 15px;
    font-size: 14px;
    color: #000;
}

.contactpg form textarea {
    width: 100%;
    height: 90px;
    background: transparent;
    border: 1px solid #7e7e7e;
    padding: 15px;
    font-size: 14px;
    color: #000;
    resize: none;
}

.contactpg form button {
    color: #fff;
    background: #2e4793;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: fit-content;
    text-align: center;
    border: 1px solid #2e4793;
    padding: 15px 25px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
}

.contactpg form button:hover {
    background: transparent;
    color: #2e4793;
}

.contactpg .contactitem {background: #ededed;padding: 20px 30px;display: flex;flex-direction: column;gap: 25px;margin-bottom: 20px;border-radius: 5px;}

.contactpg .contactitem p {
    display: flex;
    gap: 10px;
    margin: 0;
}

.contactpg .contactitem p i {
    color: #b6000e;
    font-size: 30px;
}

.contactpg .contactitem p a {
    text-align: left;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.contactpg .contactitem p a span {
    display: block;
    font-size: 14px;
    line-height: 1;
}



