@font-face {
  font-family: claritycity-bold;
  src: url("../assest/font/ClarityCity-Bold.otf");
}
@font-face {
  font-family: claritycity-black;
  src: url("../assest/font/ClarityCity-Medium.otf");
}

@font-face {
  font-family: claritycity-light;
  src: url("../assest/font/ClarityCity-Light.otf");
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  user-select: none;
  overflow-x: hidden;
}

body {
  background-color: #f1f1f1;
  font-family: claritycity-light;
}
a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style-type: none;
}

.container {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0px 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* top nav-bar  */

.top-nav {
  background-color: #ff3434;
  padding: 10px 0px;
  position: relative;
}

.top-nav-main {
  display: flex;
  justify-content: space-between;
}

.top-nav-left {
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.top-nav-left > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.location-dropdown {
  position: relative;
  display: inline-block;
  color: white;
  cursor: pointer;
}

.location-label {
  display: flex;
  align-items: center;
}

.location-label i {
  margin-right: 6px;
}

.location-text {
  margin-right: 6px;
}

.location-select {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
  padding: 2px 0;
}

.location-select span {
  margin: 0 4px;
}

.fa-caret-down {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.location-dropdown.active .fa-caret-down {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 160px;
  z-index: 9999;
  margin-top: 5px;
  border: 1px solid white;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content div {
  color: white;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-content div:hover {
  background-color: #444;
}

.dropdown-content div:first-child {
  border-radius: 4px 4px 0 0;
}

.dropdown-content div:last-child {
  border-radius: 0 0 4px 4px;
}

.dropdown-content div.selected {
  background-color: #555;
  font-weight: bold;
}

/* Location icon placeholder */
.location-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-color: white;
  border-radius: 2px;
}

.top-nav-main,
.nav-main,
.nav-content,
.nav-content > ul,
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bottom {
  background-color: #252525;
  padding-top: 30px;
  padding-bottom: 21px;
  top: 44px;
  right: 0px;
  left: 0px;
}

.logo {
  max-width: 211px;
  height: fit-content;
}

.logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hamberger,
.close-bar {
  color: #9ec30c;
  font-size: 30px;
  display: none;
}

.nav-content {
  gap: 142px;
}

.nav-content > ul {
  gap: 49px;
}

.nav-btn {
  gap: 30px;
}

.nav-content > ul > li {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.nav-content > ul > li > a:hover {
  background: linear-gradient(to right, #40e193, #9ec30c);
  background-clip: text;
  color: transparent;
  transform: rotateX(10deg) translateZ(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.top-nav-left > a,
.top-nav-left > p,
.top-nav-right > p,
.nav-content > ul > li > a,
.nav-btn > a {
  color: #ffffff;
}

.nav-btn > a:nth-child(3) {
  padding: 18px 63.5px;
  border-radius: 5px;
  background: #ff3434;
  z-index: 2;
  overflow: hidden;
  position: relative;
}
.nav-links.active {
  color: #f13636;
}
.nav-btn > a:nth-child(3):hover {
  background-color: #4b2004;
}

.hdr-bttm-wrpr {
  padding: 20px 0;
  background: #252525;
  /* backdrop-filter: blur(10px); */
  position: relative;
  z-index: 1000;
}

.hdr-bttm-wrpr-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: 201px;
  height: 30px;
  z-index: 10000;
  position: relative;
}

.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Desktop Navigation */
.nav-collapse {
  display: flex;
  align-items: center;
  flex-grow: 2;
}

.nav-collapse ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.nav-collapse ul li {
  margin: 0 26px;
}

.nav-collapse ul li a {
  font-size: 16px;
  font-family: Montserrat-Medium;
  color: #f1f1f1;
  transition: all 0.3s ease;
  position: relative;
}

.nav-collapse ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;

  background: red;
  transition: width 0.3s ease;
}

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

.nav-collapse ul li a:hover {
  background: red;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn a {
  transition: transform 0.3s ease;
}

.nav-btn a:hover {
  transform: scale(1.1);
}

.main-btn {
  padding: 18px 63px;
  color: #ffffff;
  font-size: 17px;
  border-radius: 5px;

  background-color: #ff3434;
  font-family: Alatsi-Regular;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); */
  border: none;
  font-family: claritycity-light;
}

.main-btn:hover {
  /* transform: translateY(-2px); */
  /* box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); */
}

/* Hamburger Menu */
.nav-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.nav-toggler span,
.nav-toggler::before,
.nav-toggler::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;

  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggler::before {
  position: absolute;
  top: 0;
}

.nav-toggler::after {
  position: absolute;
  bottom: 0;
}

.nav-toggler.active::before {
  transform: rotate(45deg) translate(0, 11px);
}

.nav-toggler.active span {
  opacity: 0;
}

.nav-toggler.active::after {
  transform: rotate(-45deg) translate(0, -11px);
}

/* Sidebar Styles */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98),
    rgba(40, 40, 40, 0.98)
  );
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-nav {
  list-style: none;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-nav li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-nav li {
  opacity: 1;
  transform: translateX(0);
}

.sidebar.active .sidebar-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.sidebar.active .sidebar-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.sidebar.active .sidebar-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.sidebar.active .sidebar-nav li:nth-child(4) {
  transition-delay: 0.4s;
}

.sidebar.active .sidebar-nav li:nth-child(5) {
  transition-delay: 0.5s;
}

.sidebar-nav a {
  display: block;
  color: #f1f1f1;
  text-decoration: none;
  font-size: 24px;
  font-family: Montserrat-Medium;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.sidebar-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.sidebar-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-icons a:hover {
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transform: scale(1.1);
}

.sidebar .main-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 20px;
  padding: 15px;
}

/* Close button */
.sidebar-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.sidebar-close::before,
.sidebar-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.sidebar-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* @media screen and (max-width: 1200px) {
  .hdr-left-item {
    padding-right: 5px;
  }

  .hdr-left-item::after {
    display: none;
  }

  .nav-collapse {
    display: none;
  }

  .nav-toggler {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .sidebar {
    width: 280px;
  }

  .sidebar-nav a {
    font-size: 18px;
  }

  .sidebar .main-btn {
    font-size: 16px;
    padding: 10px 10px;
  }
}

@media screen and (max-width: 576px) {
  .sidebar {
    width: 100%;
    right: -100%;
  }
} */

/* Login Modal Styles */

 

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-modal {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.modal-overlay.active .login-modal {
  transform: scale(1) translateY(0);
}

.login-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  border-radius: 20px 20px 0 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: #ff3434;
  background: rgba(255, 52, 52, 0.1);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 8px;

  background: #ff3434;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.modal-subtitle {
  color: #666;
  font-size: 16px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
  outline: none;
}

.form-input:focus {
  border-color: #ff3434;
  box-shadow: 0 0 0 3px rgba(255, 52, 52, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

#modal1-checkbox > input {
  width: 16px;
  height: 16px;
}

.forgot-password {
  color: #ff3434;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #9ec30c;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 15px;

  background: #ff3434;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 52, 52, 0.3);
}

.login-btn:active {
  transform: translateY(0);
}

.modal-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: #999;
}

.modal-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e5e9;
  z-index: 1;
}

.modal-divider span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.social-login {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-btn:hover {
  border-color: #ff3434;
  background: rgba(255, 52, 52, 0.05);
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}

.signup-link a {
  color: #ff3434;
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  color: #9ec30c;
  text-decoration: underline;
}


/* @media screen and (max-width: 576px) {
  .login-modal {
    padding: 17px;
  }
  .modal-title {
    font-size: 22px;
  }
  .modal-subtitle {
    font-size: 15px;
  }
  #modal1-checkbox > input {
    width: 14px;
    height: 14px;
  }
} */

/* banner sec  */
.banner-sec {
  background: no-repeat center/cover url(../assest/img/HERO\ 1.png);
  min-height: 660px;
}
.col-12 {
  width: 100%;
}
.banner-sec-content {
  display: flex;
}
.col-60 {
  width: 60%;
  padding: 0 15px;
}
.col-40 {
  width: 40%;
  padding: 0 15px;
}
.banner-left-content {
  margin-top: 142px;
}
.banner-left-heading > h2 {
  font-size: 80px;
  color: #ffffff;
  font-weight: 900;
  font-family: claritycity-black;
  text-wrap: nowrap;
}
.banner-left-heading > p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 38px;
}
.banner-left-heading > a {
  display: inline-block;
  margin-top: 38px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  padding: 18px 37px;
  background: #ff3434;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.banner-left-heading > a:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

.form-container {
  background: linear-gradient(0deg, #4b4b4b, #4b4b4b00);
  padding: 35px;
  border-radius: 16px;

  color: white;
  margin-top: 54px;
}
.form-heading {
  text-align: center;
}
.form-heading1 {
  margin-top: 20px;
  text-align: center;
}

.input-row {
  display: flex;
  gap: 53px;
}

.banner-sec input,
select {
  width: 100%;
  height: 52px;
  border: 1px solid #f5f5f5;
  outline: none;

  padding: 10px 17.5px;
  background-color: transparent;
  border-radius: 5px;
  margin-top: 25px;
  color: white;
}

.banner-sec input::placeholder,
select {
  color: rgba(255, 255, 255, 0.8);
}

option {
  color: #000000;
}

.full-width {
  /* width: 100%; */
  /* margin-bottom: 20px; */
}

.submit-btn {
  width: 100%;
  padding: 19px;
  background-color: #ff2d2d;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  font-family: claritycity-light;
}

.submit-btn:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

/* services section  */

.services {
  margin-top: 70px;
}

.services-title {
  text-align: center;
  margin: auto;
}
.services-title > span {
  color: #ff3434;
  font-size: 20px;
  font-weight: 600;
}
.services-title > h3 {
  font-size: 40px;
  color: #343434;
  font-weight: 600;
  margin-top: 10px;
}

.col-12 {
  width: 100%;
}

.servics-banner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.col-4 {
  width: 33.33%;

  padding: 0 15px;
}

.servics-banner-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  margin-bottom: 15px;
}

.servics-banner-card:hover {
  transform: translateY(-10px) !important;
}

.servics-upper-part {
  display: flex;
  align-items: center;
  gap: 15px;
}

.services-text {
  font-size: 25px;
  font-weight: 600;
  color: #343434;
  text-wrap: nowrap;
}

.servics-upper-part-img {
  width: 85px;
  height: 85px;
  background-color: #ff3434;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.services-para {
  font-size: 18px;
  font-weight: 400;
  color: #535353;
  margin-top: 15px;
}

.servics-lower-part {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}

.servics-lower-part > a {
  color: #343434;
}

a {
  text-decoration: none;
}
.servics-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.servics-btn-primary {
  background-color: red;
  color: white;
  border: none;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.servics-btn-primary:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

.servics-btn-secondary {
  background-color: white;
  color: black;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid gray;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.servics-btn-secondary:hover {
  background-color: #4b2004;
  color: white;
  transform: scale(1.1);
}



/* why chose section  */

.col-12 {
  width: 100%;
}

.col-6 {
  width: 50%;
  padding: 0 15px;
}

.banner-3 {
  margin-top: 75px;
}
.banner3-content {
  display: flex;

  justify-content: space-around;
}

.banner3-content-img {
  max-width: 667px;
  min-height: 600px;
  border-radius: 10px;
  width: 100%;
}

.banner3-content-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner3-text > span {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #ff3434;
  display: block;
}

.banner3-text > h3 {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  color: #343434;
  margin-top: 10px;
}

.banner3-text > p {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #455a64;
  margin-top: 10px;
}

.banner3-text-1 {
  display: flex;
  margin-top: 27px;
  gap: 18px;
  justify-content: center;
  min-height: 85px;
}

.banner3-right-img-1 {
  max-width: 70px;
  min-height: 70px;
  width: 100%;
}

.banner3-right-img-1 > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner3-left-text-1 > h5 {
  font-weight: 600;
  font-size: 22px;
  color: #343434;
}
.banner3-left-text-1 > p {
  font-weight: 400;
  font-size: 16px;
  color: #455a64;
  margin-top: 10px;
}
.schedule-btn {
  padding-left: 110px;
}
.schedule-btn > a {
  background-color: red;
  color: white;
  border: none;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 27px;
}
.schedule-btn > a:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

/* @media screen and (max-width: 1200px) {
  .banner3-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .col-6 {
    width: 70%;
  }
  .banner3-chose-image {
    display: flex;
    justify-content: center;
  }
  .schedule-btn {
    padding-left: 0px;
    display: flex;
    justify-content: center;
  }
  .banner3-text {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .banner3-content-img {
    min-height: 478px;
  }
}

@media screen and (max-width: 576px) {
  .banner-3 {
    margin-top: 20px;
  }
  .banner3-content-img {
    min-height: 275px;
  }

  .banner3-left-text-1 > p {
    font-size: 13px;
  }
  .banner3-text > p {
    font-size: 11px;
  }
  .banner3-text > h3 {
    font-size: 30px;
  }
  .banner3-text > p {
    font-size: 13px;
  }
  .col-6 {
    width: 100%;
    
  }
  .banner3-left-text-1 > h5 {
    font-size: 16px;
  }
  .schedule-btn {
    display: flex;
    justify-content: center;
    padding-left: 0px;
  }
  .banner3-right-img-1 {
    max-width: 50px;
    min-height: 50px;
    width: 100%;
  }
  .banner3-text-1 {
  
    min-height: 70px;
    margin-top: 20px;
  }
} */

/* products store  */
.col-3 {
  width: 25%;
  padding: 0 15px;
}
.banner-4 {
  margin-top: 75px;
}

.banner4-card {
  display: flex;
  margin-top: 40px;
}

.banner-4 .row {
  margin-top: 40px;
}

.banner4-content > p {
  font-family: Clarity City;
  font-weight: 600;
  font-size: 20px;
  color: #ff3434;
  text-align: center;
}

.banner4-content > h3 {
  font-family: Clarity City;
  font-weight: 600;
  font-size: 40px;
  color: #343434;
  text-align: center;
  margin-top: 10px;
}
.banner4-card-section {
  max-width: 322px;

  border-width: 1px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px #0000001a;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.banner4-card-section:hover {
  transform: translateY(-10px) !important;
}

.banner4-card-img {
  max-width: 290px;

  border-radius: 5px;
  width: 100%;
  margin: auto;
}

.banner4-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-alloy {
  font-family: Clarity City;
  font-weight: 500;
  font-size: 18px;
  color: #343434;
  margin-top: 10px;
}

.banner4-card-star {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.banner4-icon {
  max-width: 92px;
  min-height: 16px;
  width: 100%;
}

.banner4-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner4-card-star > p {
  font-family: Clarity City;
  font-weight: 600;
  font-size: 25px;
  color: #343434;
  margin-top: 10px;
}

.banner4-btn {
  margin-top: 10px;
  padding: 10px 96px;
  background-color: #ff3434;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}

.banner4-btn:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

.banner4-btn > a {
  color: #ffffff;
  text-wrap: nowrap;
}

.banner4-btn1 {
  margin-top: 10px;
  padding: 10px 93px;
  border: 1px solid #ff3434;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}
.banner4-btn1:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

.banner4-btn1 > a {
  text-wrap: nowrap;
  color: #ff3434;
}
.banner4-btn1 > a:hover {
  color: white;
}

.banner4-btn2 {
  text-align: center;
  margin-top: 40px;
}
.checkout-btn {
  padding: 18px 61px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  background-color: #ff3434;
}
.checkout-btn:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

/* @media screen and (max-width: 1200px) {
  .banner4-card {
    display: flex;
    flex-wrap: wrap;
  }
  .col-3 {
    width: 50%;
  
  }
  
  .banner4-card-section {
    max-width: 100%;
  }
  .banner4-card-img {
    max-width: 100%;
  }
  .banner4-btn {
    text-align: center;
  }
  .banner4-btn1 {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .col-3 {
    width: 100%;
    
  }

  .banner-4 {
    margin-top: 40px;
  }
  .banner4-content > h3 {
    font-size: 27px;
  }
  .banner4-card {
    margin-top: 20px;
  }
  .checkout-btn {
    font-size: 13px;
  }
  .banner-4 .row {
    margin-top: 15px;
  }
} */

/* packages  */

.packages {
  margin-top: 75px;
}

.packages-top-part {
  margin: auto;
  text-align: center;
  padding: 0 15px;
}
.packages-top-part > span {
  color: #ff3434;
  font-size: 20px;
  font-weight: 600;
}
.packages-top-part > h3 {
  font-size: 40px;
  color: #343434;
  margin-top: 10px;
}

.col-12 {
  width: 100%;
}

.col-4 {
  width: 33.33%;
  padding: 0 15px;
}
.packages-card {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.packages-card1 {
  background-color: #ffffff;
  min-height: 515px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px #0000001a;
  margin-bottom: 15px;
}

.packages-card1:hover {
  transform: translateY(-10px) !important;
}

.packages-card1a {
  background-color: #ffffff;
  min-height: 515px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px #0000001a;
  margin-bottom: 15px;
}

.packages-card1a:hover {
  transform: translateY(-10px) !important;
}

.packages-card1 > h5 {
  max-width: 181px;
  min-height: 84px;
  margin: auto;
  font-size: 36px;
  text-align: center;
  line-height: 40px;
  width: 100%;
}
.packages-card1 > h5 > span {
  font-size: 25px;
  color: #535353;
  font-weight: 500;
}
.packages-line {
  max-width: 385px;
  height: 1px;
  background: #4b4b4b;
  margin-top: 25px;
  width: 100%;
}

.packages-price > h5 {
  font-size: 35px;
  max-width: 173px;
  min-height: 40px;
  margin: 25px auto 0 auto;
  color: #252525;

  width: 100%;
  text-wrap: nowrap;
}
.packages-price > h5 > span {
  font-size: 20px;
  color: #252525;
}

.packages-option1 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 40px;
}
.packages-option1 > p {
  color: #252525;
  font-size: 18px;
}
.packages-option2 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.packages-option2 > p {
  color: #252525;
  font-size: 18px;
}
.packages-option3 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.packages-option3 > p {
  color: #252525;
  font-size: 18px;
}
.packages-option4 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.packages-option4 > p {
  color: #252525;
  font-size: 18px;
}
.packages-card1a > h5 {
  max-width: 250px;
  min-height: 84px;
  margin: auto;
  font-size: 36px;
  text-align: center;
  line-height: 40px;
}
.packages-card1a > h5 > span {
  font-size: 25px;
  color: #535353;
  font-weight: 500;
  text-wrap: nowrap;
}
.packages-btn {
  background-color: red;
  margin-top: 40px;
  border-radius: 5px;
  max-width: 385px;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.packages-btn:hover {
  background-color: #4b2004;
  transform: scale(1.1);
}

.packages-btn > a {
  color: #ffffff;
  text-wrap: nowrap;
}
.packages .row {
  margin-top: 40px;
}

/* @media screen and (max-width: 1200px) {
  .packages-card {
    justify-content: center;
  }
}

@media screen and (max-width: 992px) {
  .col-4 {
    width: 50%;
    
  }
  .packages .row {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .packages-card1a > h5 {
    font-size: 29px;
  }
  .packages-card1 > h5 {
    font-size: 29px;
  }
}

@media screen and (max-width: 576px) {
  .packages-card1 {
    min-height: 450px;
  }
  .col-4 {
    width: 100%;
   
  }
  .packages-price > h5 {
    margin: 15px auto 0 auto;
    font-size: 28px;
  }
  .packages-option1 {
    margin-top: 20px;
  }
  .packages-btn {
    margin-top: 20px;
  }
  .packages-line {
    margin-top: 0px;
    max-width: 100%;
  }
  .packages-card1a {
    min-height: 450px;
  }
  .packages {
    margin-top: 40px;
  }
  .packages-card1a > h5 {
    font-size: 32px;
    line-height: 33px;
  }
  .packages-top-part > h3 {
    font-size: 34px;
    margin-top: 15px;
  }
  .packages-card1 > h5 {
    font-size: 30px;
    line-height: 30px;
  }
  .packages-card1 > h5 > span {
    font-size: 20px;
  }
  .packages-card1a > h5 > span {
    font-size: 21px;
  }
  .packages .row {
    margin-top: 15px;
  }
} */

/* steps of service   */

.service-steps {
  margin-top: 75px;
}
.service-steps-top {
  margin: auto;
  text-align: center;
  padding: 0 15px;
}
.service-steps-top > span {
  color: #ff3434;
  font-size: 20px;
  font-weight: 600;
}
.service-steps-top > h3 {
  font-size: 40px;
  color: #343434;
  margin-top: 10px;
}
.col-12 {
  width: 100%;
}
.col-30 {
  width: 33.33%;
  padding: 0 15px;
}

.service-steps .row {
  margin-top: 40px;
}

.service-steps-main-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-steps-content {
  display: flex;
  flex-wrap: wrap;
}
.service-steps-top-content {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-steps-img {
  max-width: 50px;
  height: 50px;
}
.service-steps-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-steps-line {
  max-width: 369px;
}
.service-steps-line > img {
  width: 100%;
  object-fit: contain;
}
.service-bottom-img {
  max-width: 437px;
  /* height:241px ; */
  margin-top: 20px;
}
.service-bottom-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-steps-middle-content > h6 {
  margin-top: 15px;
  font-size: 22px;
  color: #343434;
  font-weight: 600;
}
.service-steps-middle-content > p {
  margin-top: 15px;
  max-width: 345px;
  width: 100%;
  color: #343434;
  font-size: 18px;
}
.service-steps-middle-content {
  display: flex;
  flex-direction: column;
}

/* @media screen and (max-width: 1200px) {
  .service-steps-content {
    justify-content: center;
  }
  .service-bottom-img {
    max-width: 100%;
  }
  .service-steps-top-content {
    justify-content: center;
  }
  .service-steps-main-content > p {
    max-width: 100%;
    text-align: center;
  }
  .service-steps-main-content > h6 {
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .col-30 {
    width: 100%;
  }

  .service-bottom-img {
    height: 186px;
  }

  .service-steps-middle-content {
    display: flex;
    flex-direction: column;
  }
  .service-steps-line {
    max-width: 225px;
    position: absolute;
    transform: rotate(90deg);
    top: 163px;
    left: -87px;
  }
  .service-steps-top-content {
    flex-direction: column;
    align-items: start;
  }
  .service-steps-main-content {
    flex-direction: row;

    align-items: start;
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .service-steps .row {
    margin-top: 15px;
  }
  .service-bottom-img {
    height: 179px;
    margin-top: 10px;
  }
  .service-steps-main-content > h6 {
    margin-top: 5px;
  }
  .service-steps-main-content > p {
    margin-top: 10px;
  }
  .service-steps-content {
    margin-top: 15px;
  }
  .service-steps {
    margin-top: 40px;
  }
  .service-steps-top > h3 {
    font-size: 30px;
  }
  .service-steps-middle-content > h6 {
    font-size: 19px;
  }
  .service-steps-middle-content > p {
    font-size: 14px;
  }
  .service-steps-main-content {
    margin-top: 15px;
  }
} */

/* Achievements section  */

.Achievements-top-part {
  margin: auto;
  text-align: center;
}
.Achievements-top-part > span {
  color: #ff3434;
  font-size: 20px;
  font-weight: 600;
}
.Achievements-top-part > h3 {
  font-size: 40px;
  color: #343434;
  margin-top: 10px;
}

.Achievements > div > div > div {
  margin-top: 40px;
}

.col-57 {
  width: 33.33%;
  padding: 0 15px;
}

.countdown-part {
  display: flex;
  margin-top: 40px;
}

.Achievements {
  margin-top: 75px;
}

.stat-card {
  max-width: 437px;
  min-height: 217px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 17px 36px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.stat-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
}

.icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: white;
  position: relative;
  overflow: hidden;
}

.icon.happy::before {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.icon.star::before {
  background: linear-gradient(45deg, #f093fb, #f5576c);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.main-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.counter {
  font-size: 35px;
  font-weight: bold;
  color: #252525;

  line-height: 1;
}

.label {
  font-size: 21px;
  font-weight: 600;
  color: #252525;
  line-height: 1;
  text-wrap: nowrap;
}

.description {
  font-size: 15px;
  color: #4b4b4b;
}

.sparkle {
  position: absolute;
  font-size: 12px;
  color: #ffd700;
  animation: sparkle 2s infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

/* @media screen and (max-width: 1200px) {
  .countdown-part {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    max-width: 100%;
  }
  .main-stat {
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .label {
    font-size: 16px;
  }
  .counter {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .col-57 {
    width: 100%;
    padding: 0px 15px;
  }
}

@media screen and (max-width: 576px) {
  .Achievements {
    margin-top: 40px;
  }
  .stat-card {
    padding: 15px 28px;
  }
  .main-stat {
    gap: 5px;

    flex-wrap: wrap;
    flex-direction: column;
  }
  .Achievements-top-part > h3 {
    font-size: 33px;
    margin-top: 10px;
  }
} */

/* testmonial section  */

.testimonial-header {
  margin-top: 75px;
}

.testimonial-section{
  margin-top: 40px;
}


.testimonial-top-part {
  margin: auto;
  text-align: center;
}
.testimonial-top-part > span {
  color: #ff3434;
  font-size: 20px;
  font-weight: 600;
}
.testimonial-top-part > h3 {
  font-size: 40px;
  color: #343434;
  margin-top: 10px;
}

.testimonial-card {
  max-width: 322px;
  min-height: 304px;
  width: 100%;
  background-color: #f1f1f1;

  border: 1.5px solid #0000001a;
  padding: 20px 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 75px;
  filter: drop-shadow(0px 4px 10px #0000001a);
}

.testimonial-man {
  max-width: 130px;
  min-height: 130px;
  width: 100%;
  position: absolute;
  top: -70px;
}

.testimonial-man > img {
  width: 100%;

  object-fit: contain;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  margin-top: 45px;
  color: #343434;
}

.testimonial-profession {
  color: #616066;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.testimonial-content {
  font-size: 14px;
  font-weight: 400;
  margin-top: 18px;
  color: #4b4b4b;
  max-width: 262px;
  width: 100%;
  text-align: center;
}

.icon-star {
  margin-top: 17px;
  color: red;
  font-size: 25px;
}

@media screen and ( max-width : 576px ) {
  
  .swiper-slide {
    display: flex !important;
    justify-content: center;
  }
   .swiper {
    margin-top: 20px;
  }
}

/* @media screen and (max-width: 576px) {
  .swiper-slide {
    display: flex !important;
    justify-content: center;
  }

  .testimonial-man {
    max-width: 80px;
    min-height: 80px;
    top: -40px;
  }
  .testimonial-man > img {
    width: 100%;
  }
  .testimonial-card {
    margin-top: 46px;
  }
  .testimonial-header {
    margin-top: 35px;
  }
  .testimonial-top-part > h3 {
    font-size: 33px;
  }
  .swiper {
    margin-top: 20px;
  }
} */

/* Newsletter update section    */

.col-6 {
  width: 50%;
  padding: 0 15px;
}
.Newsletter {
  margin-top: 75px;
}
.Newsletter-img {
  max-width: 553px;
  min-height: 464px;
  /* width: 100%; */
}
.Newsletter-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Newsletter-content > h4 {
  max-width: 504px;
  font-size: 45px;
  color: #343434;
  font-weight: 600px;
  margin-top: 21px;
  min-height: 100px;
}
.Newsletter-content > p {
  max-width: 681px;
  font-size: 18px;
  color: #616066;
  font-weight: 400px;
  margin-top: 35px;
  min-height: 119px;
}
.emailtext {
  padding: 10px 20px;
  height: 56px;
  max-width: 450px;
  width: 100%;
  border: 1px solid #343434;
  margin-top: 35px;
  border-radius: 5px;
}

.emailtext::placeholder {
  color: #343434;
}

.Newsletter-btn {
  max-width: 450px;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff3434;
  margin-top: 20px;
  border-radius: 5px;
}

.Newsletter-btn:hover {
  background-color: #4b2004;

  transform: translateY(-10px);
}

.Newsletter-btn > a {
  color: #ffffff;
}

/* @media screen and (max-width: 1200px) {
  .col-6 {
    width: 100%;
  }
  .Newsletter > div > div {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .Newsletter-img {
    margin: auto;
  }
  .Newsletter-btn {
    margin: 20px auto;
  }
  .Newsletter-content > h4 {
    max-width: 100%;
  }
  .Newsletter-content > p {
    max-width: 100%;
  }
  .Newsletter-content {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .col-6 {
    width: 100%;
  }
  .Newsletter-img {
    min-height: 250px;
  }
  .Newsletter-content > h4 {
    font-size: 32px;
    margin-top: 15px;
    min-height: 70px;
  }
  .Newsletter-content > p {
    margin-top: 8px;
    font-size: 16px;
  }
  .emailtext {
    margin-top: 20px;
  }
  .Newsletter {
    margin-top: 25px;
  }
} */

/* footer section  */

.footer {
  background: no-repeat center/cover
    url(../assest/img/Footer\ an\ Copy\ right\ \(1\).png);
  min-height: 426px;
  margin-top: 75px;
}
.col-12 {
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
}
.col-41 {
  width: 40%;
  padding: 0 15px;
}
.col-15 {
  width: 15%;
  padding: 0 15px;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.footer-logo {
  max-width: 201px;
  width: 100%;
  margin-top: 34px;
}
.footer-logo > img {
  width: 100%;
  object-fit: contain;
}
.footer-content-p1 {
  max-width: 365px;
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  line-height: 100%;
  margin-top: 20px;
}
.footer-content-p2 {
  font-size: 18px;
  color: #ffffff;
  margin-top: 40px;
}
#footer-email {
  padding: 15px 10px;
  width: 100%;
  max-width: 450px;
  /* margin: 10px 0; */
  border: 1px solid #ccc;
  border-radius: 5px;
  /* height: 56px; */
  margin-top: 21px;
  background-color: transparent;
}

.footer-side1-btn {
  background-color: #ff3434;

  border: none;
  padding: 15px 10px;
  width: 100%;
  max-width: 450px;
  border-radius: 4px;

  text-align: center;
  margin-top: 21px;
}

.footer-side1-btn:hover {
  background-color: #4b2004;

  transform: translateY(-10px);
}

.footer-side1-btn > a {
  color: #ffffff;
}

.footer2div {
  margin-top: 55px;
}
.footer2div > h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  text-wrap: nowrap;
}
.footer2divlink1 {
  margin-top: 25px;
}
.footer2divlink1 > a {
  color: #ffffff;
}

.footer2divlink1 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}

.footer2divlink2 {
  margin-top: 20px;
}

.footer2divlink2 > a {
  color: #ffffff;
}

.footer2divlink2 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}
.footer2divlink3 {
  margin-top: 20px;
}
.footer2divlink3 > a {
  color: #ffffff;
}
.footer2divlink3 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}
.footer2divlink4 {
  margin-top: 20px;
}
.footer2divlink4 > a {
  color: #ffffff;
}
.footer2divlink4 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}
.footer3div {
  margin-top: 55px;
}
.footer3div > h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
}
.footer3div > p {
  color: #ffffff;
}
.footer3div > p {
  margin-top: 25px;
}
.footer4div-logo-content1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer4div-logo-content1:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}


.footer4div-logo-content1 > a {
  color: #ffffff;
}
.footer4div-logo-content1 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}
.footer4div {
  margin-top: 55px;
}
.footer4div > h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  text-wrap: nowrap;
}
.footer4div-logo-content2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer4div-logo-content2:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.footer4div-logo-content2 > a {
  color: #ffffff;
}
.footer4div-logo-content2 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}
.footer4div-logo-content3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer4div-logo-content3:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.footer4div-logo-content3 > a {
  color: #ffffff;
}
.footer4div-logo-content3 > a:hover {
  color: #f13636;
  transform: scale(1.1);
}

.footer-line {
  max-width: 1360px;
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  margin-top: 23px;
}
.footer-bottom {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-bottom > p {
  color: #ffffff;
  font-size: 14px;
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom-links > a {
  color: #ffffff;
  font-size: 14px;
}

/* @media screen and (max-width: 992px) {
  .footer4div > h3 {
    font-size: 16px;
  }
  .footer4div-logo-content1 > a {
    font-size: 14px;
  }
  .footer4div-logo-content2 > a {
    font-size: 14px;
  }
  .footer4div-logo-content3 > a {
    font-size: 14px;
  }
  .footer3div > h3 {
    font-size: 16px;
  }
  .footer3div > p {
    font-size: 14px;
  }
  .footer2div > h3 {
    font-size: 16px;
  }
  .footer2divlink1 > a {
    font-size: 14px;
  }
  .footer2divlink2 > a {
    font-size: 14px;
  }
  .footer2divlink3 > a {
    font-size: 14px;
  }

  .footer2divlink4 > a {
    font-size: 14px;
  }
} 

@media screen and (max-width: 768px) {
  .footer-side1-btn {
    padding: 12px 10px;
  }
  #footer-email {
    padding: 12px 10px;
  }
  .col-41 {
    width: 100%;
  }
  .col-15 {
    width: 33%;
  }
  .col-25 {
    width: 33%;
  }
  .col-20 {
    width: 33%;
  }
}

@media screen and (max-width: 576px) {
  .col-41 {
    width: 100%;
  }
  .col-15 {
    width: 50%;
  }
  .col-25 {
    width: 50%;
  }
  .col-20 {
    width: 50%;
  }
  .footer-bottom {
    justify-content: center;
  }
  .footer-bottom-links {
    gap: 11px;
    justify-content: center;
  }
  .footer {
    margin-top: 40px;
  }

  br {
    display: none;
  }
}*/
