@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
  font-family: "Montserrat", serif;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
  font-family: "Montserrat", serif;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jersey";
  src: url(../fonts/Jersey.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", serif;
  text-transform: capitalize;
  margin: 0 0 10px;
}

h1 {
  font-size: 83px;
  line-height: 1;
  color: #222222;
  font-weight: 700;
}

h2 {
  font-size: 58px;
  line-height: 1.1;
  color: #222222;
  font-weight: 700;
}

h3 {
  font-size: 49px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

h4 {
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

h5 {
  font-size: 29px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

h6 {
  font-size: 21px;
  color: #222222;
  font-weight: 700;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  font-family: "Montserrat", serif;
  opacity: 0.7;
}

.red {
  color: #ed2524;
}

.black {
  color: #000;
}

.gray {
  color: #222222;
}

.white {
  color: #fff;
}

.f19 {
  font-size: 19px;
}

.f17 {
  font-size: 17px;
}

.f16 {
  font-size: 16px;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #000;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #000000;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #fff !important;
}

/* Buttons Css Start*/
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 11px 32px;
  font-size: 12px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  color: #ffff;
  font-weight: 500;
  border-radius: 30px;
  overflow: hidden;
  border: none;
}

.theme-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: "";
  transition: 0.3s ease-in-out;
  background: #eb2524;
}

.theme-btn::after {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  z-index: -1;
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #000;
}

.theme-btn:hover::after {
  transition: 0.3s ease-in-out;
  width: 120%;
  height: 120%;
}

.theme-btn:hover {
  transition: 0.3s ease-in-out;
}

.gray-btn::before {
  background: #333333;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 20px 0;
  display: block;
  width: fit-content;
}

img.logo {
  width: auto;
  object-fit: scale-down;
}

.bottom-bar {
  padding: 20px 0;
}

.bottom-bar-logo {
  display: flex;
  justify-content: center;
}


.top-bar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

ul.top-bar-contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

ul.top-bar-contact-list span {
  display: block;
  font-size: 12px;
  margin: 0;
  line-height: 1;
  opacity: 0.5;
}

.top-bar {
  background: #000;
  padding: 15px 0;
}

.top-bar-contact * {
  color: #ffff;
}

.top-bar-link li a {
  color: #ffff;
  font-size: 12px;
  font-weight: 500;
}

ul.top-bar-contact-list li a {
  font-size: 15px;
}

.top-bar-contact ul li i {
  font-size: 25px;
}

.top-bar-link ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.theme-btn.light-yellow::before {
  background: #fff07e;
}

.theme-btn.light-yellow {
  color: #000;
}

.top-bar-search input {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  padding: 0 20px;
  border: none;
  font-family: 'Montserrat';
  font-size: 14px;
  color: #ffff;
  background: #ffffff36;
}

.top-bar-search form {
  position: relative;
  z-index: 1;
}

.top-bar-search button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 20px;
  height: 100%;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat';
  font-size: 14px;
  background: #ffffff29;
  color: #ffff;
}

.top-bar-search input::placeholder {
  font-family: 'Montserrat';
  font-size: 14px;
  color: #ffffff7a;
}

.mid-bar {
  padding: 10px 0;
  background: #333333;
}

ul.main-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

ul.main-menu-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 50px;
  border-left: 1px solid #ffffff40;
}

img.pest-icon {
  object-fit: scale-down;
  width: auto;
}

ul.main-menu-list li a {
  color: #fff;
}

.question-box {
  padding: 30px;
  background: #ffffff85;
  border-radius: 15px;
  width: 90%;
}

.question-box select {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.question-button {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0 0;
}

/* Header end*/

/* Banner */

.banner_sec {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner_sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #fee303;
  opacity: 0.9;
}

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

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

.banner-right-image {
  position: absolute;
  top: 50%;
  right: 0;
  width: 34%;
  transform: translateY(-50%);
}

img.banner-left-img {
  position: absolute;
  left: -140px;
  width: 48%;
  bottom: 0;
}

.banner-mid-text {
  padding: 0 30px 0 0;
}

/* Banner end*/

/* section start */

section.ban-bot-sec {
  padding: 30px 0;
  background: #141414;
}


img.ban-bot-img {
  height: 196px;
  width: 196px;
  border-radius: 50%;
  border: 6px solid #ffff;
}

.ban-bot-text {
  padding: 0 0 0 20px;
}

.ban-bot-button {
  display: flex;
  justify-content: end;
}

/* section end */

/* section start */

.about_image {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.about_image img {
  height: 95%;
  border-radius: 50%;
  width: 95%;
  margin: 0 0 0 auto;
  display: block;
  object-position: center;
}

.aspect-square {
  aspect-ratio: 1 / 1;
  padding: 0;
}

.about_text .theme-btn {
  margin: 20px 0;
}

img.treat-img {
  height: 120px;
  border-radius: 15px;
}

.treat-card-text h6 {
  margin: 10px 0;
  text-align: center;
}

/* section end */

/* section start */

.termite_text .theme-btn {
  margin: 20px 0;
}

.termite_sec {
  position: relative;
  z-index: 1;
}

.termite_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  background-image: url(../images/termite_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.termite_sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #fee300;
  opacity: 0.9;
}

.termite-box img.treat-img {
  height: 200px;
  margin: 0 0 20px 0;
}

.theme-btn.light-yellow:hover {
  color: #ffff;
}

/* section end */

/* section start */
img.termite-slider-img {
  object-fit: scale-down;
  height: 400px;
}

.termite-slider-card-text p {
  opacity: 0.9;
  font-size: 16px;
}

.termite-slider-card-text {
  text-align: center;
}

.termite-slider-card-text h6.f16 {
  font-weight: 600;
}

.termite-slider-arrow {
  display: flex;
  justify-content: space-between;
  margin-top: -50px !important;
  margin: 0 auto;
  width: 80%;
  position: relative;
  z-index: 2;
}

.termite-slider-arrow a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.termite-slider-box {
  width: 90%;
}

/* section end */

/* section start */

.refer-sec {
  position: relative;
  z-index: 1;
}

.refer-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  background-image: url(../images/refer-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.refer-sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #222222;
  opacity: 0.9;
}

.refer-left {
  width: 71%;
  height: 71%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffff;
  text-align: center;
}

.refer-left h6.f19.red {
  width: 80%;
  text-transform: uppercase;
}

form.refer-form input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #ffffff4f;
  border: none;
  margin: 0 0 10px 0;
  border-radius: 30px;
  color: #ffff;
  font-size: 14px;
  font-family: 'Montserrat';
  text-align: center;
}

form.refer-form input::placeholder {
  color: #ffff;
  font-size: 14px;
  font-family: 'Montserrat';
}

form.refer-form button.theme-btn {
  width: 100%;
  height: 60px;
  margin: 10px 0 0 0;
}

.refer-text {
  padding-right: 30px;
  border-right: 1px solid #ffffff40;
}

.refer-right {
  padding-left: 20px;
}

ul.main-menu-list li:last-child {
  border-right: 1px solid #ffffff40;
}

.truly-image {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.truly-image img {
  height: 98%;
  border-radius: 50%;
  width: 98%;
  margin: 0 auto;
  display: block;
  object-position: left;
}

.truly-text h2 {
  font-size: 55px;
}

/* section end */

/* .map-box {
  width: 100%;
  height: auto;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-box svg {
  width: 100%;
  height: auto;
  max-width: 1000px;
}

.map-box svg circle {
  fill: #d1d1d1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.map-box svg circle:hover {
  fill: #eb2524;
  r: 8 !important;
}

.map-box svg circle.highlight {
  fill: #eb2524;
  r: 7;
} */



/* footer start */
.bug-sec {
  background-color: #222222;
}

a.underline {
  text-decoration: underline;
}

footer a {
  color: #fff;
  font-size: 14px;
}

section.links-sec {
  background: #191919;
}

.footer-links ul li a {
  display: block;
  width: fit-content;
  padding: 8px 0;
  opacity: 0.7;
}

.bug-left-box a.underline.red {
  margin: 20px 0;
  display: block;
}


.bug-left-box h4 span {
  font-size: 18px;
  opacity: 0.6;

}

form.footer-form button {
  width: 100%;
}

.bug-left-box {
  width: 88%;
}


ul.social-links li i {
  color: #fff;
  width: 15px;
  font-size: 17px;
}

ul.social-links li {
  display: flex;
  align-items: center;
  gap: 11px;
  opacity: 0.7;
  padding: 7px 0px;
}

.bug-right p {
  color: #ffff;
  margin: 10px 0;
}

ul.social-links {
  margin: 0 0 40px 0;
}

ul.contact-links li a {
  padding: 4px 0;
  display: block;
  width: fit-content;
  font-weight: 500;
}

ul.contact-links {
  margin: 20px 0 0 0;
}

.heading {
  padding: 0 0 50px 0;
}

/* footer end */

/* Home Page end*/


/* InnerPage Aboutus start */

.inner-banner-text p {
  opacity: 1;
  font-weight: 600;
}

section.banner_sec.inner-banner {
  padding: 110px 0;
}

.inner-about-image {
  width: 100%;
  height: 100%;
}

.inner-about-image img.inner-about {
  height: 98%;
  border-radius: 50%;
  width: 98%;
  margin: 0 auto;
  display: block;
  object-position: -80px 0px;
}

.abt-para {
  padding: 60px 0 0 0;
}

.inner-about-text {
  padding: 0 0 0 40px;
}

.inner-about-text h2 {
  font-size: 85px;
}

/* InnerPage Aboutus end */

/* Estimate Section Styles Start */
section.estimate-sec {
  padding: 80px 0;
}

.estimate-box {
  background: #ffffff;
  padding: 60px 80px;
  box-shadow: 1px 0px 20px 0px rgb(0 0 0 / 10%);
  border-radius: 4px;
}

.estimate-box h2 {
  font-size: 45px;
  color: #262626;
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
  font-family: "Montserrat", serif;
}

.estimate-box input,
.estimate-box select,
.estimate-box textarea {
  width: 100%;
  border: 1px solid #f1f1f1;
  padding: 16px 20px;
  margin-bottom: 25px;
  font-size: 15px;
  color: #333;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Montserrat", serif;
}

.estimate-box input:focus,
.estimate-box select:focus,
.estimate-box textarea:focus {
  border-color: #eb2524;
}

.estimate-box input::placeholder,
.estimate-box textarea::placeholder {
  color: #c5c5c5;
  text-transform: capitalize;
  font-weight: 400;
}

.estimate-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ccc' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 25px center;
  padding-right: 40px;
  color: #c5c5c5;
}

.estimate-box select option {
  color: #333;
}

.estimate-box textarea {
  height: 180px;
  resize: none;
  margin-bottom: 30px;
}

.estimate-box .theme-btn {
  width: 100%;
  border-radius: 6px !important;
  padding: 18px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
}

.estimate-box .theme-btn::before,
.estimate-box .theme-btn::after {
  border-radius: 6px !important;
}

.estimate-box .row [class^="col-"] {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.estimate-box .row {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

@media (max-width: 768px) {
  .estimate-box {
    padding: 40px 25px;
  }

  .estimate-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

/* Estimate Section Styles End */

/* Referral Program Styles Start */
.referal-box {
  background: #ffffff;
  padding: 60px 80px;
  box-shadow: 1px 0px 20px 0px rgb(0 0 0 / 10%);
  border-radius: 4px;
}

.referal-box h2 {
  font-size: 45px;
  color: #262626;
  text-align: center;
  margin: 40px 0;
  text-transform: capitalize;
  font-family: "Montserrat", serif;
  font-weight: 700;
}

.referal-box h2:first-child {
  margin-top: 0;
}

.referal-box input {
  width: 100%;
  border: 1px solid #f1f1f1;
  padding: 16px 20px;
  margin-bottom: 25px;
  font-size: 15px;
  color: #000;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Montserrat", serif;
}

.referal-box input:focus {
  border-color: #eb2524;
}

.referal-box input::placeholder {
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
}

.referal-box .theme-btn {
  width: 100%;
  border-radius: 6px !important;
  padding: 18px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.referal-box .theme-btn::before,
.referal-box .theme-btn::after {
  border-radius: 6px !important;
}

@media (max-width: 768px) {
  .referal-box {
    padding: 40px 25px;
  }

  .referal-box h2 {
    font-size: 28px;
  }
}

/* Referral Program Styles End */

.treat-card.service-card img.treat-img {
  height: 350px;
}

.treat-card.service-card {
  margin: 20px 50px 20px 0;
}

.treat-card.service-card .treat-card-text {
  margin: 20px 0;
}

.service-detail-img img {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  float: right;
  position: relative;
  z-index: 99;
  margin: 0 0 50px 50px;
}

.service-detail-box {
  position: relative;
}



/*login start*/

section.login {
  padding: 100px 50px;
}

.login-txt form input {
  width: 100%;
  margin-bottom: 20px;
  outline: none;
  padding: 15px 15px;
  border: 1px solid #e2e2e2;
  color: #000;
  border-radius: 6px;
  background-color: #fff;
}

.login-txt h3 {
  font-size: 45px;
  text-align: center;
  line-height: 50px;
  text-transform: capitalize;
  color: #222222;
  margin-bottom: 30px;
}

.login-txt {
  padding: 45px 25px 35px;
  border-radius: 0px;
  background-color: #fdfdfd;
  border: 1px solid #e2e2e2;
}

.login-txt ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

li.head {
  color: #000;
  font-size: 17px;
  font-weight: 600;
}

.login-txt ul li {
  display: flex;
  gap: 7px;
  font-weight: 500;
}

.login-txt form button {
  width: 100%;
  color: #fff;
  border-radius: 10px;
  padding: 14px 0px;
  outline: none;
  border: none;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat";
  background-color: #eb2524;
  text-transform: uppercase;
}

.login-txt a {
  color: #eb2524;
  text-decoration: underline;
}

section.reviews.inn .client-box:hover * {
  color: #000;
}

section.reviews.inn .client-box .quotess {
  display: none;
}

section.reviews.inn {
  padding: 100px 0px 40px;
}

section.reviews.inn .client-ineer-box::before {
  display: none;
}

.top-bar-btn a {
  width: 49%;
  padding: 12px 0;
}

.ban-bot-button a {
  font-size: 14px;
  padding: 14px 38px;
}

.about_text h6 {
  margin: 20px 0;
}

.treat-card {
  margin: 20px 0;
}

section.about_sec .row .col-lg-3 {
  padding: 0 6px !important;
}

.truly-text h6 {
  margin: 20px 0;
}

.footer-links.end ul li {
  display: flex;
  width: fit-content;
  justify-self: end;
  width: 100%;
}

.footer-links.end ul {
  width: fit-content;
  margin: 0 0 0 auto;
}

.footer-links {
  margin: 0 50px;
}

.m-none {
  margin: 0 !important;
}


.heading.text-center h2 {
  font-size: 45px;
}


/* Password Toggle CSS */
.password-box {
  position: relative;
  width: 100%;
}

.password-box input {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  padding: 0 50px 0 20px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

.password-box i {
  position: absolute;
  right: 20px;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #575757;
  font-size: 18px;
  z-index: 2;
}

.password-box i:hover {
  color: #ed2524;
}

/*login end*/