/* ================= General Styles Outline ================= */
/* 
    1) General Page Styles 
    2) Header Styles
    3) Responsive Header Styles
    4) Footer Styles
    5) Input Styles
    6) Loader
*/
/* ========================================================== */

/* ====================================================== (1)General Styles */
* {
  margin:0;
  padding:0;
}

p{
  margin: 0;
  padding: 0;
}

html{
  margin:0px;
  padding:0px;
  overflow-x: hidden;
  font-family:DM Sans;
  background-color: #ececec;
}

.hvacColor{
  color:#345090 !important;
}

.fireFightingColor{
  color:#990000 !important;
}

.plumbing{
  color:#bcb900 !important;
}

.gas{
  color: #005f1c !important;
}

iframe{
  width:100%;
  border:0px transparent;
}

.scrollable {
  height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.separator{
  height: 1px;
  width: 100%;
  background-color: #aaa;
}

.hSeparator{
  height: 100%;
  width: 1px;
  background-color: #aaa;
}

.pageSectionContainer{
  height:200px;
  display: flex;
  overflow: hidden;
  padding-top: 60px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.pageSectionContainer img{
  width:100vw;
}

.pageSectionContainer .overlayContent{
  width:100%;
  height:100%;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: rgb(0,0,0,0.4);
}

.pageSectionContainer .overlayContent span{
  font-size: 50px;
  font-weight:600;
  color:#ffffff;
}

/* ====================================================== (2)Header Styles */
.normalHeaderContainer{
  width: 96%;
  display: flex;
  z-index: 99999;
  position: fixed;
  padding:10px 30px;
  align-items: center;
  background-color: #ffffff;
  justify-content: space-between;
  box-shadow: 0px 0px 10px #000000;
}

.logoContainer{
  width:150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoContainer img{
  width:100%;
}

.navigationContainer,
.responsiveNavigation{
  gap:20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsiveNavigation{
  gap:15px;
  flex-direction: column;
}

.navigationContainer a,
.responsiveNavigation a{
  color:#000000;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.responsiveNavigation a{
  color: #ffffff;
}

.navigationContainer a:hover,
.responsiveNavigation a:hover{
  cursor: pointer;
  color:#345090;
  transition: 0.3s all;
}

.navigationContainer .active{
  color:#345090;
}

.responsiveNavigation .active{
  color:#345090;
}

.rightSectionContainer{
  display:flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .normalHeaderContainer{
    width: 94%;
  }
  .logoContainer{
    width:100px;
  }
  .navigationContainer a{
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .normalHeaderContainer{
    width: 94%;
  }
  .logoContainer{
    width:120px;
  }
  .navigationContainer a{
    font-size: 16px;
  }  
}

@media screen and (max-width: 560px) {
  .normalHeaderContainer{
    width: 92%;
  }
  .normalHeaderContainer{
    padding:10px 20px;
  }
  .navigationContainer,
  .rightSectionContainer{
    display: none !important;
  }
  .logoContainer{
    width:125px;
  }
  .responsiveNavigation a{
    font-size: 22px;
  }
}

/* ====================================================== (3)Responsive Header Styles */
.sideNavIconButton{
  width:40px;
  height:40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sideNavIconButton img{
  width:40px;
  height:40px;
}

#responsiveNavigationContainer{
  left: 0;
  top: 60px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
}

.responsiveNavigationContainerOpen{
  animation: respNavMenuOpen 0.5s linear; 
  transform: translateX(0);
}
.responsiveNavigationContainerClose{
  animation: respNavMenuClose 0.5s linear;
  transform: translateX(100%);
}

@keyframes respNavMenuOpen {
  0%{
    opacity: 0;
    transform: translateX(100%);
  }
  25%{
    opacity: 0.2;
    transform: translateX(75%);
  }
  50%{
    opacity: 0.5;
    transform: translateX(50%);
  }
  75%{
    opacity: 0.7;
    transform: translateX(25%);
  }
  100%{    
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes respNavMenuClose {
  0%{
    opacity: 1;
    transform: translateX(0px);
  }
  25%{
    opacity: 0.7;
    transform: translateX(25%);
  }
  50%{
    opacity: 0.5;
    transform: translateX(50%);
  }
  75%{
    opacity: 0.2;
    transform: translateX(75%);
  }
  100%{    
    opacity: 0;
    transform: translateX(100%);
  }
}

.responsiveNavigationSubContainer{
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.sideNavImage{
  width:100%;
  height:100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.sideNavImage img{
  width:100%;
  height:100%;
}

.sideNavContent{
  gap:10px;
  width:100%;
  height:100%;
  color:white;
  display: flex;
  position: absolute;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(0,0,0,0.8);
}

/* ====================================================== (4)Footer Styles */
.footerMainContainer, 
.normalFooterContainer{
  width:100%;
  display: flex;
  overflow: hidden;
  max-height: 400px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.footerMainContainer img,
.normalFooterContainer img{
  width:100%;
}

.footerOverlayContent{
  width: 100%;
  height:100%;
  display:flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: rgb(0,0,0,0.8);
}

.footerSubContainer{
  gap:50px;
  width:100%;
  display:flex;
  padding:0px 100px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.footerContent{
  width:100%;
  display:flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
}

.footerLogo{
  gap:20px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.footerLogo img{
  width:150px;
}

.footerDescription{
  width:350px;
  color:#ccc;
  font-size: 16px;
  font-weight: 500;
  text-align: start;
  word-wrap: break-word;
}

.footerNavigationContainer{
  gap:15px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.footerNavigation{
  gap:10px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.footerNavigation a{
  color:#ccc;
  font-size: 16px;
  text-decoration: none;
}

.footerNavigation a:hover{
  color:#6b9ee0;
  transition: 0.5s all;
}

.footerNavigation a.active{
  color:#6b9ee0;
  font-weight: 600;
}

.footerLinks{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.footerSubTitle{
  color:#ffffff;
  font-size: 18px;
  font-weight: 600;
}

.footerAddressContainer{
  gap:15px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.locationContainer{
  gap:5px;
  display: flex;
  align-items: start;
  justify-content: center;
}

.locationContainer a{
  width:200px;
  color:#ccc;
  word-wrap:break-word;
  text-decoration: none;
}

.footerCredentials{
  gap:5px;
  color:#ccc;
  display: flex;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .footerSubContainer{
    padding:0px 40px;
  }
}

@media screen and (max-width: 768px) {
  .w-md-100{
    width: 100%;
  }
  .footerLogo{
    width:100%;
    align-items: center;
    justify-content: center;
  }
  .footerLogo img{
    width:200px;
  }
  .footerContent{
    gap:40px;
    align-items: center;
    flex-direction: column;
  }
  .footerMainContainer,
  .normalFooterContainer{
    max-height: 600px;
  }
  .footerNavigationContainer,
  .footerNavigation,
  .footerAddressContainer{
    flex-direction: row;
  }
  .locationContainer a{
    width:300px;
  }
  .footerDescription{
    text-align: center;
  }
  .pageSectionContainer .overlayContent span{
    font-size: 40px;
  }
}

@media screen and (max-width: 560px) {
  .footerNavigation{
    width:100%;
  }
  .footerMainContainer,
  .normalFooterContainer{
    height: 2000px;
  }
  .footerNavigation,
  .footerAddressContainer,
  .footerNavigationContainer{
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .locationContainer a{
    width:300px;
    font-size: 14px;
    text-align: center;
  }
  .footerMainContainer img,
  .normalFooterContainer img{
    height:100%;
  }
  .footerLogo img{
    width:130px;
  }
  .footerDescription{
    width:300px;
    font-size: 14px;
    text-align: center;
  }
  .footerSubContainer{
    gap:30px;
  }
  .footerCredentials{
    font-size: 13px;
  }
  .pageSectionContainer .overlayContent span{
    font-size: 30px;
  }
  @media screen and (max-width: 321px) {
    .footerDescription{
      width:280px;
      font-size: 14px;
    }
    .locationContainer a{
      width:250px;
    }
  }
}

/* ====================================================== (5) Input Fields */
.inputContainer{
  gap:5px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

.inputContainerText{
  width: 50%;
}

.inputContainer label{
  display: flex;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
}

.inputContainer input, .inputContainer textarea{
  width: 70%;
  padding:5px;
  height: 15px;
  outline: none;
  color:#535353;
  font-size: 16px;
  min-height: 15px;
  max-height: 100px;
  background-color: transparent;
  transition: width 0.4s ease-in-out;
  border-color: transparent transparent #000000 transparent;
}

.inputContainer input:focus,
.inputContainer textarea:focus{
  width: 100%;
  border-width: 0px 0px 2px 0px;
  border-color: transparent transparent #000000 transparent !important;
}

.inputContainer textarea:focus{
  max-height: 100px;
}

.mistakeParagraph{
  margin: 0;
  text-align: center;
  color:rgb(205, 2, 2);
}

@media screen and (max-width: 768px) {
  
  .inputContainer label{
    font-size: 16px;
  }
  .inputContainer input, .inputContainer textarea{
    font-size: 15px;
  }
}

@media screen and (max-width: 431px) {
  .inputContainer,
  .inputContainerText{
    width: 350px;
  }
  .inputContainer label{
    font-size: 15px;
  }
  .inputContainer textarea:focus{
    width: 97%;
  }
}

@media screen and (max-width: 376px) {
  .inputContainer,
  .inputContainerText{
    width: 300px;
  }
  .inputContainer input, .inputContainer textarea{
    font-size: 14px;
  }
}

@media screen and (max-width: 321px) {
  .inputContainer,
  .inputContainerText{
    width: 280px;
  }
  .inputContainer input, .inputContainer textarea{
    font-size: 13px;
  }
}

/* ====================================================== (6)Loader */
.spinner{
  width:100%;
  height:100%;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  background-color: rgb(18, 0, 55);
  z-index: 9999999999999999;
}
.lds-facebook {
  width: 80px;
  height: 80px;
  position: relative;
  display: inline-block;
}
.lds-facebook div {
  left: 8px;
  width: 16px;
  position: absolute;
  background: #fff;
  display: inline-block;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
      top: 8px;
      height: 64px;
  }
  50%, 100% {
      top: 24px;
      height: 32px;
  }
}