#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  padding: 10px 0 0 0;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}



.footerSection {
  margin-top: 0px;
  width: 100%;
  padding: 3rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.footerContainer {
  width: 100%;
  background-color: #111636;
  padding: 6rem;
  position: relative;
}
.footerTopBox {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footerTopBox .logoF {
  height: 70px;
}
.footerTopBox .paraF {
  width: 37%;
  margin: 0;
  font-family: "Charter";
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.footerMidBox {
  width: 72%;
  display: flex;
  margin-top: 4rem;
}
.footerMidBox .listBox {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
.footerBottomBox .listBox .footer-heading,
.footerMidBox .listBox .footer-heading {
  margin: 0;
  font-family: "Charter";
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
}
.footerBottomBox .listBox .footerDivider,
.footerMidBox .listBox .footerDivider {
  border-top: 3px solid #af251c;
  width: 100px;
  margin: 0.5rem 0;
}
.footerMidBox .listBox .footer-link {
  font-family: "Optima";
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1rem;
  text-decoration: none;
}
.footerBottomBox {
  width: 80%;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
.footerBottomBox .listBox.fastHalf {
  width: 20% !important;
}
.footerBottomBox .listBox.secHalf {
  width: 35%;
}
.footerBottomBox .listBox .social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.footerBottomBox .listBox .social-icons a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #af251c;
  text-decoration: none;
}
.footerBottomBox .listBox .social-icons a i {
  font-size: 18px;
  color: #ffffff;
}
.footerBottomBox .listBox .location {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}
.footerBottomBox .listBox .location i {
  font-size: 34px;
  color: #af251c;
}
.footerBottomBox .listBox .location p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-family: "Charter";
  font-weight: 400;
}
.footerBottomBox .listBox .location p a 
{
  color: #fff;
  text-decoration: none;
}

.footerContainer .joinBox {
  position: absolute;
  top: 0;
  right: 5rem;
}
.footerContainer .joinBox img {
  width: 500px;
}
.footerContainer .joinBox .contentBoxF {
  position: absolute;
  top: 0;
  padding: 3rem;
}
.joinBox .contentBoxF h1 {
  margin: 0;
  font-family: "Charter";
  font-size: 115px;
  font-weight: 400;
  color: #ffffff;
}
.joinBox .contentBoxF p {
  margin: 0;
  margin-top: 1rem;
  color: #ffffff;
  font-family: "Charter";
  font-size: 20px;
  font-weight: 400;
}
.joinBox .contentBoxF .f_apply_btn {
  margin-top: 2rem;
  height: 40px;
  width: 200px;
  background-color: #ffffff;
  border-radius: 30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #af251c;
}
.joinBox .contentBoxF button i {
  font-size: 20px;
}
/*------------copy right section--------------*/
.copyrightContainer {
  background-color: #af251c;
  width: 100%;
  padding: 10px 0;
  text-align: center;
}
.copyrightContainer p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  font-family: "OptimaLTStd";
}
.counter
{
  position: relative;
  margin-top: 7px;
}
.counter br 
{
  display: none;
}

@media screen and (max-width: 1660px) {
  .footerContainer {
    padding: 4rem;
  }
  .footerTopBox .paraF {
    width: 35%;
  }

  .footerContainer .joinBox {
    right: 4rem;
  }
  .footerContainer .joinBox img {
    width: 400px;
  }
  .footerContainer .joinBox .contentBoxF {
    padding: 2.5rem;
  }
  .joinBox .contentBoxF h1 {
    font-size: 84px;
  }
  .joinBox .contentBoxF p {
    margin-top: 0rem;
  }
  .joinBox .contentBoxF button {
    margin-top: 1rem;
  }
  .footerBottomBox {
    width: 85%;
  }
}
@media screen and (max-width: 1440px) {
  .footerTopBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footerTopBox .paraF {
    width: 50%;
  }
  .footerBottomBox .listBox .footer-heading,
  .footerMidBox .listBox .footer-heading {
    font-size: 20px;
  }
  .footerBottomBox .listBox .footerDivider,
  .footerMidBox .listBox .footerDivider {
    width: 70px;
  }
  .footerBottomBox .listBox .location {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
  }
  .footerBottomBox .listBox .location i {
    font-size: 28px;
  }

  .footerBottomBox .listBox .location p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1280px) {
  .footerMidBox .listBox .footer-heading {
    font-size: 18px !important;
  }
  .footerMidBox .listBox .footer-link {
    font-size: 16px !important;
  }
  .footerContainer .joinBox {
    right: 4rem;
  }
  .footerContainer .joinBox img {
    width: 300px;
  }
  .footerContainer .joinBox .contentBoxF {
    padding: 1.5rem;
  }
  .joinBox .contentBoxF h1 {
    margin: 0;
    font-size: 54px;
  }
  .joinBox .contentBoxF p {
    font-size: 16px;
  }
  .joinBox .contentBoxF button {
    margin-top: 0.5rem;
  }
  .footerBottomBox {
    width: 100%;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .footerBottomBox .listBox.fastHalf {
    width: 30% !important;
  }
  .footerBottomBox .listBox.secHalf {
    width: 32%;
  }
  .footerBottomBox .listBox .footer-heading {
    font-size: 16px !important;
  }
  .footerBottomBox .listBox .location p {
    font-size: 14px !important;
    font-weight: 300;
  }
  .footerMidBox {
    width: 70%;
  }
}

@media screen and (max-width: 1080px) {
  .footerContainer .joinBox img {
    width: 250px;
  }
  .footerContainer .joinBox .contentBoxF {
    padding: 1rem;
  }
  .joinBox .contentBoxF h1 {
    margin: 0;
    font-size: 38px;
  }
  .joinBox .contentBoxF p {
    font-size: 14px;
  }

  .joinBox .contentBoxF button {
    height: 35px;
    width: 150px;
    font-size: 14px;
  }
  .footerMidBox {
    width: 100%;
  }
  .footerMidBox .listBox{
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 990px) {
  .footerBottomBox {
    flex-wrap: wrap;
  }
  .footerBottomBox .listBox.fastHalf {
    width: 45% !important;
  }
  .footerBottomBox .listBox.secHalf {
    width: 52%;
  }
  .footerMidBox {
    gap: 2rem;
  }
  .footerContainer {
    padding: 2rem;
  }
  .footerTopBox .logoF {
    height: 60px;
  }
  .footerTopBox .paraF {
    width: 60%;
  }

  .footerContainer .joinBox {
    right: 2rem;
  }

  .footerContainer .joinBox img {
    width: 250px;
  }
  .joinBox .contentBoxF h1 {
    font-size: 28px;
  }
  .joinBox .contentBoxF p {
    font-size: 14px;
  }

  .joinBox .contentBoxF button {
    height: 35px;
    width: 150px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .footerBottomBox {
    gap: 2rem;
  }
  .footerTopBox .logoF {
    height: 50px;
  }
  .footerTopBox .paraF {
    width: 50%;
    font-size: 12px;
  }
  .footerBottomBox .listBox {
    gap: 1rem;
  }
  .footerBottomBox .listBox.fastHalf {
    width: 100%;
  }
  .footerBottomBox .listBox.secHalf {
    width: 100%;
  }
  .footerBottomBox .listBox.secHalf br {
    display: none !important;
  }
  .footerBottomBox .listBox.secHalf .location {
    margin-top: 0 !important;
  }
  .footerContainer .joinBox img {
    width: 230px;
  }
  .joinBox .contentBoxF h1 {
    font-size: 20px;
  }
  .joinBox .contentBoxF p {
    font-size: 12px;
  }

  .joinBox .contentBoxF button {
    height: 35px;
    width: 130px;
    font-size: 12px;
  }

  .copyrightContainer p {
    font-size: 14px;
  }
  .footerMidBox .listBox .footer-link {
    margin-top: 0.4rem !important;
  }
}


button.btn.cautionbtn {
  font-family: "Optima";
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1rem;
  text-decoration: none;
  padding: 0;
  width: fit-content;
  outline: none !important;
  box-shadow: none !important;
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: .3rem;
}
.footer_poupbox h4 {
  font-size: 1rem !important;
}
@media screen and (max-width: 767px) {
  .footerTopBox {
    /* margin-top: 15rem; */
  }
  .footerTopBox .paraF {
    width: 100%;
    font-size: 14px;
  }
  .footerContainer .joinBox {
    /* right: 5rem; */
    /* right: auto; */
    /* left: 30%; */
    display: none;
  }
  .copyrightContainer p {
    font-size: 14px;
    margin: 0 2rem;
    text-align: center;
  }
  .footerSection
  {
    padding: 1rem 0 0;
  }
  .footerContainer {
    padding:2rem 15px;
  }
  .footerMidBox
  {
    margin-top: 20px;
  }

}