@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
/* font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
/* font-family: 'Roboto Condensed', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
/* font-family: 'Tangerine', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Fauna+One&display=swap');
/* font-family: 'Fauna One', serif; */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
/* font-family: 'Libre Baskerville', serif; */
@import url('https://fonts.googleapis.com/css2?family=Maitree:wght@200;300;400;500;600;700&display=swap');
/* font-family: 'Maitree', serif; */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');
/* font-family: 'PT Serif', serif; */
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700;800&display=swap');
/* font-family: 'Karla', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
/* font-family: 'PT Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* font-family: 'Bebas Neue', cursive; */


html {scroll-behavior: smooth;}
body {
    padding: 0 !important;
    margin: 0 !important;
    background-color: #fff !important;
    display: block !important;
    overflow: auto !important;
}

.bold{font-weight: bold;}
.italic{font-style: italic;}

.mob-view {
    display: none;
}

.desk-view {
    display: block;
}

/* =========================================
    Header Begin Here
========================================= */
.header {
  padding: 15px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo {
  width: 30%;
}

.header .right-tabs {
  width: 70%;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header .call-tab a, .header .status-tab a {
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  line-height: 14px;
  color: #f1f1f1;
  padding: 13px 15px;
  display: block;
  border-radius: 20px;
  height: 40px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.header .call-tab a span {
  font-size: 16px;
  margin-right: 5px;
}

.header .call-tab a {
  font-size: 20px;
  background-color: #910f1e;
  box-shadow: inset 2px 2px 15px #580811;
}

.header .status-tab a {
  font-size: 18px;
  background-color: #134a85;
  box-shadow: inset 2px 2px 15px #082748;
}

.header .call-tab a::before, .header .call-tab a::after,
.header .status-tab a::before, .header .status-tab a::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
}

.header .call-tab a::before, .header .status-tab a::before {
  background-color: #D51E33;
  box-shadow: inset 1px 8px 13px #a11929;
  top: 0;
}

.header .call-tab a::after, .header .status-tab a::after {
  background-color: #D51E33;
  box-shadow: inset 1px -8px 13px #a11929;
  bottom: 0;
}

.header .status-tab a::before {
  background-color: #296cb3;
  box-shadow: inset 1px 8px 13px #164678;
}
.header .status-tab a::after {
  background-color: #296cb3;
  box-shadow: inset 1px -8px 13px #164678;
}

.header .call-tab a:hover::before, .header .status-tab a:hover::before {
  top: -51%;
  opacity: 0;
}

.header .call-tab a:hover::after, .header .status-tab a:hover::after {
  bottom: -51%;
  opacity: 0;
}

/* =========================================
  Navbar Begin Here
========================================= */
#navbar {
  background-color: #D72200;
  padding: 0 6%;
}

.navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-menu li a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 15px;
  text-transform: uppercase;
  color: #fff;
  padding-top: 16px !important;
  padding: 14px 20px;
  display: block;
  transition: all 0.3s;
}

.navbar-menu li:hover a, .navbar-menu li a.active {
  background-color: #e62f0f;
}

/* =========================================
    Banner Section Begin Here
========================================= */
#banner-area {
  overflow: hidden;
}

.image_wrapper .text_content {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  width: 45%;
  height: 100%;
  padding-right: 9%;
  display: flex;
  align-items: center;
}

.image_wrapper .banner-desc h2 {
  font-family: 'PT Sans', sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.image_wrapper .banner-desc p {
  font-family: 'PT Sans', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
}

.image_wrapper .banner-desc .cont-number {
  font-size: 24px;
  color: #E7D900;
}

.image_wrapper .banner-desc .cont-number span {
  font-size: 19px;
  margin-right: 8px;
}

.image_wrapper .banner-desc h2.animate1,
.image_wrapper .banner-desc p.animate2 {
  animation-name: slideRight;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transform: translateX(200%);
  opacity: 0;
}

.image_wrapper .banner-desc h2.animate1 {animation-delay: 0.2s;}
.image_wrapper .banner-desc p.animate2 {animation-delay: 0.6s;}

@keyframes slideRight {
  0% {transform: translateX(200%);}
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.image_wrapper .banner-desc p.animate3 {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transform: translateY(100%);
  opacity: 0;
}

@keyframes slideUp {
  0% {transform: translateY(100%);}
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =========================================
  About Brief Begin Here
========================================= */
#about-brief-area {
  background-color: #042a68;
  padding: 80px 6%;
}

#about-brief-area .about-brief {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-brief .brief-text {width: 50%;}
.about-brief .brief-thumb {width: 50%;}

.about-brief .brief-text h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e4e4e4;
  margin-bottom: 20px;
}

.about-brief .brief-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #e4e4e4;
  margin-bottom: 25px;
}

.about-brief .brief-text p:last-child {margin: 0;}

/* =========================================
  Get In Touch Begin Here
========================================= */
#getInTouch-area {
  padding: 80px 6%;
  background-image: url(../images/getInTouch-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 9;
  height: 196px;
  display: flex;
  align-items: center;
}

#getInTouch-area::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#getInTouch-area p {
  margin: 0;
  color: #001F57;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  width: calc(100% - 134px);
}

#getInTouch-area .getInTouch-btn {
  text-align: right;
  width: 134px;
}

#getInTouch-area .getInTouch-btn a {
  text-decoration: none;
  display: block;
  background-color: #FF5E14;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 14px;
  padding: 14px 25px;
  padding-bottom: 13px;
  border-radius: 5px;
  transition: all 0.3s;
}

#getInTouch-area .getInTouch-btn a:hover {
  background-color: #b13e09;
}

/* =========================================
  Professionals Begin Here
========================================= */
#professional-area {
  padding: 80px 6%;
  padding-top: 40px;
  background-color: #ff7434;
}

#professional-area h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 55px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

#professional, .as-mask {
  width: 100% !important;
  height: 357px !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.as-panel {
  box-shadow: none;
  cursor: grab;
}

#professional-area #professional .as-panel .title {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
  background-color: #017dc5;
  position: absolute;
  bottom: -19px;
  left: 19px;
  margin: 0;
  padding: 12px;
  transform: rotate(-90deg);
  transform-origin: left center;
  width: 260px;
}

#professional-area #professional .as-panel:hover .title {
  transition: all 0.9s;
  bottom: 0;
  left: 0;
  font-style: italic;
  font-size: 19px;
  transform: rotate(-90deg);
  color: #fff;
  background-color: rgba(1, 12, 19, 0.7);
  animation-name: rotation;
  animation-duration: 0.9s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes rotation {
  0% {transform: rotate(-90deg);}
  80% {width: 100%;}
  100% {transform: rotate(0deg); width: 100%;}
}

/* =========================================
  Requirments Begin Here
========================================= */
#requirments {
  padding: 80px 6%;
}

.left-thumb {
  margin-right: 30px;
  margin-bottom: 20px;
  float: left;
}

.requirments-text h2 {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #1C4798;
  margin-bottom: 30px;
}

.requirments-text h2::after {
  content: "";
  background-color: #1C4798;
  width: 140px;
  height: 3px;
  margin-top: 7px;
  display: block;
}

.requirments-text p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #3e3e3e;
  margin-bottom: 24px;
}

.requirments-text p:last-child {margin-bottom: 0;}

/* =========================================
  Get a Quotes Begin Here
========================================= */
#getQuote {
  padding: 80px 15%;
  background-color: #D41D35;
  display: flex;
}

#getQuote .quote-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 22px;
  font-style: italic;
  color: #EDB84E;
  margin-bottom: 0;
  display: flex;
  gap: 40px;
}

#getQuote .quote-text p {margin-bottom: 0;}

#getQuote .quote-text i {
  width: 200px;
  font-size: 100px;
  line-height: 65px;
}

/* =========================================
  Certificate List Begin Here
========================================= */
#certificate-area {
  padding: 80px 6%;
  background-color: #F2F5F7;
  position: relative;
  z-index: 9;
}

#certificate-area::before {
  content: "";
  background-color: rgba(17, 19, 22, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#certificate-area h1 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 500;
  font-size: 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.certificate-list {
  display: flex;
  flex-wrap: wrap;
}

.certificate-list .single-certificate {
  width: calc(25% - 15px);
  background-color: #e6f0ff;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 30px;
}

.certificate-list .single-certificate:nth-child(4n) {margin-right: 0;}

.certificate-list .single-certificate h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 35px;
  text-align: center;
  color: #8C183B;
}

.certificate-list .single-certificate p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  text-align: center;
  color: #3e3e3e;
  margin-bottom: 0;
}

.jarallax {
  position: relative;
  z-index: 0;
  background-image: url('../images/certificate-bg.jpg');
}
.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* =========================================
    Content Section Begin Here
========================================= */
.content {
  padding: 80px 0;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.about-content::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  z-index: -1;
  width: 400px;
  height: 400px;
  background-color: #ffecec;
  border-radius: 50%;
}

.about-content::before {
  content: "";
  position: absolute;
  top: -150px;
  right: 60px;
  z-index: -1;
  width: 400px;
  height: 400px;
  background-color: #ecefff;
  border-radius: 50%;
}

.content .hd, .content h2 {
  font-family: 'Maitree', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.content .heading-dash {
  font-size: 17px;
  font-family: 'Maitree', serif;
  font-weight: 600;
  margin-bottom: 25px;
  padding-left: 35px;
  position: relative;
}

.content .heading-dash::before {
  content: '';
  background-color: #ff8800;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
}

.content p {
  font-size: 17px;
  font-family: 'Maitree', serif;
  font-weight: 500;
  word-spacing: 2px;
}

/* =========================================
    Counter Section Begin Here
========================================= */
.counter-box {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px 5% 15px 10px;
  background-color: #0050a1;
  min-width: 40%;
  max-width: 55%;
}

.counter-box:before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to left bottom, transparent 50%, #0050a1 49%);
  bottom: 0;
  right: -60px;
  height: 100%;
  width: 60px;
}

.counter-box .counter-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.counter-box .counter-list li {
  padding: 0 25px;
  border-right: 1px solid #9b9b9b;
  font-family: 'Roboto', sans-serif;
}

.counter-box .counter-list li:last-child {border: none;}

.counter-box .counter-list li .value {
  font-size: 25px;
  font-weight: 700;
  color: #f1f1f1;
  width: max-content;
  position: relative;
}

.counter-box .counter-list li .value::after {
  content: "+";
  font-size: 34px;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: -25px;
  line-height: 34px;
  color: #b3b3b3;
}

.counter-box .counter-list li .title {
  font-size: 14px;
  font-weight: 500;
  color: #c5c5c5;
  width: max-content;

}

/* =========================================
	Our Testimonials Begin
========================================= */
.testimonials-area {
  background-color: #d9f5d4;
  padding: 60px 6%;
}

.testimonials-area .testimonial-hd {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-area .testimonial-hd h1 {
  font-size: 28px;
  font-family: 'PT Serif', serif;
  font-weight: bold;
  margin: 0;
  margin-bottom: 7px;
}

.testimonials-area .testimonial-hd p {
  font-family: 'Karla', sans-serif;
  font-size: 19px;
  margin-bottom: 0;
}

.testimonials-area .testimonials-box {
  display: flex;
  flex-wrap: wrap;
}

.single-testimonials {
  width: calc(50% - 20px);
  height: 100%;
  margin-right: 40px;
  padding: 120px 60px;
  background-color: #d4e1f5;
  box-shadow: 0 0 15px rgba(161, 192, 255, 0.6);
  position: relative;
  z-index: 9;
  border-radius: 10px;
  transition: all 1s;
}

.single-testimonials:hover {
  transform: translateY(-20px);
}

.single-testimonials::before, .single-testimonials::after {
  content: '';
  width: 100%;
  height: 33.33%;
  position: absolute;
  left: 0;
  z-index: -1;
}

.single-testimonials::before {
  top: 0;
  background-image: linear-gradient(to bottom, #016ebd, #003b68);
  border-radius: 10px 10px 0 0;
}

.single-testimonials::after {
  bottom: 0;
  background-image: linear-gradient(to top, #016ebd, #003b68);
  border-radius: 0 0 10px 10px;
}

.single-testimonials:nth-child(2n) {margin-right: 0;}

.single-testimonials .testimonial-content {
  border: 2px solid #30313C;
  border-radius: 50px 0 50px 0;
  background-color: #d4e1f5;
  outline: 6px solid #d4e1f5;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  padding: 95px 15px 25px 15px;
  position: relative;
}

.testimonial-content::before, .testimonial-content::after {
  font-size: 50px;
  color: #F7941F;
  background-color: #d4e1f5;
  position: absolute;
  top: 95px;
  width: 25px;
  line-height: 57px;
  height: 35px;
}

.testimonial-content::before {
  content: '\275D';
  left: -13px;
}

.testimonial-content::after {
  content: '\275E';
  right: -13px;
}

.testimonial-content .text-sec::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -70px;
  z-index: 9;
  width: 50px;
  height: 70px;
  background-image: linear-gradient(to right bottom, #d4e1f5 49%, transparent 50%);
}

.testimonial-content .text-sec::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -76px;
  z-index: 1;
  width: 54px;
  height: 74px;
  background-image: linear-gradient(to right bottom, #30313c 49%, transparent 50%);
}

.testimonial-content .text-sec .description::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -93px;
  z-index: 1;
  width: 64px;
  height: 86px;
  background-image: linear-gradient(to right bottom, #d4e1f5 49%, transparent 50%);
}

.testimonial-content .thumb {
  display: inline-block;
  border-radius: 20px;
  padding: 6px;
  background-color: #fff;
  position: absolute;
  top: -80px;
  left: calc(50% - 80px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.testimonial-content .thumb img {border-radius: 14px;}

.testimonial-content .name {
  font-size: 20px;
  font-weight: bold;
  color: #32363C;
  margin-top: 10px !important;
  margin: 0;
}

.testimonial-content .designation {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial-content .description p {
  font-size: 16px !important;
  font-weight: 400;
  margin-bottom: 0;
}

/*======================================
	Contact Form CSS
========================================*/
.successMsg {
  margin-top: 100px;
}

.successMsg h2 {
font-size: 22px;
font-weight: 600;
font-family: 'Karla', sans-serif;
color: #2FA22C;
text-align: center;
margin-top: 0;
  margin-bottom: 5px;
}

.successMsg p {
font-size: 17px;
font-weight: 500;
font-family: 'Karla', sans-serif;
color: #384237;
text-align: center;
margin-bottom: 30px;
}

.form-box h1 {
  font-family: 'PT Serif', serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.form-box h1 span {
  font-size: 22px;
  font-weight: 500;
  color: #FF6A00;
  display: block;
  margin-bottom: 7px;
}

.contact-sec {
  padding: 80px 0;
}

.contact-form-area {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.18);
  border-top: 2px solid #179E66;
}

.contact-form-area h4 {
  font-size: 26px;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
  color: #0b0b40;
  margin-bottom: 0;
}

.contact-form-area .form-group {
  margin: 0;
  margin-top: 20px;
}

.contact-form-area .form-group input[type=number]::-webkit-outer-spin-button,
.contact-form-area .form-group input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

.contact-form-area .form-group input,
.contact-form-area .form-group textarea,
.contact-form-area .form-group select {
  border: 1px solid #dfdfdf;
  padding: 10px 40px 10px 15px;
  border-radius: 0px;
  box-shadow: none;
}

.contact-form-area .form-group input {
  font-size: 16px;
}

.contact-form-area .form-group input:focus,
.contact-form-area .form-group textarea:focus,
.contact-form-area .form-group select:focus {
  border-color: #7e868f;
}

.contact-form-area .form-group textarea {
  resize: none;
}

.contact-form-area .form-group {
  position: relative;
}

.contact-form-area .form-group .icon {
  position: absolute;
  right: 15px;
  z-index: 33;
  color: #d5b69d;
  top: 12px;
}

.g-recaptcha > div {margin: 0 auto;}

.form h5 {
  font-size: 15px;
  font-weight: 500;
  color: #f00;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-form-area .form-group.button {
  text-align: center;
  margin: 20px 0 0 !important;
}

.contact-form-area .form-group.textarea .icon {
  top: 15px;
  right: 15px;
}

.contact-form-area .submit-btn {
  padding: 10px 32px;
  background: #0270cd;
  color: #fff;
  font-family: 'Karla', sans-serif;
  font-size: 20px;
  border: none;
  transition: all 0.3s;
}

.contact-form-area .submit-btn:hover {
  background: #014985;
}

.contact-detail {
  background-color: #e4ebf3;
  min-height: 100%;
}

.cont-addr {
  overflow: hidden;
  padding: 40px;
  padding-bottom: 20px;
}

.contact-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}

.contact-detail ul li {
  font-size: 16px;
  font-family: 'Maitree', serif;
  margin-bottom: 20px;
}

.contact-detail ul li:first-child {
  margin-right: 15px;
}

.contact-detail ul li i {
  font-size: 16px;
  background-color: #ccc;
  color: #555555;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.contact-detail ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #004fc3;
}

/* =========================================
  Footer Begin Here
========================================= */
#footer {
  padding: 40px 6%;
  background-color: #000711;
  text-align: center;
}

#footer .footer-contact h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.footer-contact .contact-btn {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-contact .contact-btn .request-btn a,
.footer-contact .contact-btn .callUs-btn a {
  display: block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 20px;
  padding-top: 17px;
  border-radius: 8px;
  transition: all 0.3s;
}

.footer-contact .contact-btn .request-btn a {
  background-color: #fff;
  color: #303030;
}

.footer-contact .contact-btn .request-btn a:hover {
  background-color: #12388b;
  color: #fff;
}

.footer-contact .contact-btn .callUs-btn a {
  background-color: #8C183B;
  color: #fff;
}

.footer-contact .contact-btn .callUs-btn a:hover {
  background-color: #49091d;
}

/* =========================================
  Copyright Begin Here
========================================= */
.copyright {
  padding: 20px 6%;
  background-color: #050c16;
  text-align: center;
}

.copyright p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

/* ====================================
  Certificate Status Form Sec...
==================================== */
.form-label {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
}

.form-control, .form-select {
    border-radius: 0;
    box-shadow: none !important;
}

.certificate_status button.btn {
  font-weight: 500;
  font-size: 17px;
}

.certificate_status {
  padding: 40px 30px 50px 30px;
  margin: 40px 0;
  background: #d7dfe5;
}

.status_result {
  padding: 50px 30px;
  margin: 30px 0;
  background: #f1f1f1;
}

.main-hd {
  text-align: center;
  font-size: 25px;
  font-family: 'PT Serif', serif;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}

.search_form {
  margin-top: 60px;
}

.status-box {
  width: 75%;
  margin-top: 40px !important;
  margin: 0 auto;
}

.status-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #919191;
}

.status-list li {
  border-top: 1px solid #919191;
}

.status-list li:first-child, .status-list li:nth-child(2) {
  border-top: none;
}

.status-list li:nth-child(odd) {
  font-size: 17px;
  font-weight: 500;
  padding: 10px;
  width: 28%;
  border-right: 1px solid #919191;
  color: #2b2b36;
}

.status-list li:nth-child(even) {
  font-size: 17px;
  font-weight: 600;
  padding: 10px;
  width: 72%;
  word-break: break-all;
  color: #000033;
}

label.error {
  color: #f00;
  font-size: 13px;
  font-weight: 400;
  display: block;
}

#noRecord {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    color: #f00;
    font-size: 30px;
    font-weight: 600;
}

.backBtn {
  display: block;
  text-align: right;
  margin-top: 5px;
}

.backBtn a {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  background-color: #8f9293;
  padding: 5px 10px 6px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.backBtn a:hover {
  background-color: #5d5e5e;
}

.new_status_check {
  float: right;
}

.new_status_check a {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  background-color: #8f9293;
  padding: 5px 10px 6px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.alert_act {color: #0f5132;}
.alert_exp {color: #b30e0e;}
.alert_wit {color: #dc3535;}
.alert_sus {color: #842029;}

/* =========================================
Scroll Section Start
========================================= */
.scroll-top {
  position: fixed;
  bottom: 70px;
  right: 40px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  background-color: #ffbfbf;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0px 5px 20px 0 rgba(66, 65, 65, 0.5);
  display: none;
}

.scroll-top:hover {
  background-color: #ff7b62;
  transition: all 0.3s linear;
}

.scroll-top span {
  color: #3e3e3e;
  font-size: 36px;
  line-height: 52px;
  transition: all 0.3s linear;
}

.scroll-top:hover span {color: #fff;}