@import url("./fonts/Effra/effra.css");
@import url("./fonts/Gotham/gotham.css");
@import url('./icon.css');
:root {
  --primaryColor: #b90014;
  --secondaryColor: #4a4a4d;
  --white-color: rgb(255, 255, 255);
  --headFontColor: #1a1818;
  --headFont: "Effra", sans-serif;
  --bodyFont: "Gotham", sans-serif;
  --thm-white: #ffffff;
  --thm-primary: #b90014;
  --thm-black: #b90014;
  --thm-secondary: #b90014;
  --theme-color1: #171717;
  --theme-color2: #b90014;
  --thm-secondary-rgb: 255, 224, 227;
  --border-theme-color1: var(--theme-color1);
  --border-theme-color2: var(--theme-color2);
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
}

* {
  font-family: var(--bodyFont);
}
 

body {
  overflow-x: hidden;
  font-family: var(--bodyFont);
  font-size: 16px;
}

img {
  max-width: 100%;
}

.container-fluid {
  width: 100%;
  padding: 0px 60px;
}

.header .container-fluid {
  padding-right: 0px;
}

@media screen and (max-width: 1199px) {
  .container-fluid {
    padding: 0px 20px;
  }

  .header .container-fluid {
    padding: 0 15px;
    padding-right: 0px;
  }
}

@media screen and (max-width: 1199px) {
  .header .container-fluid {
    padding: 0 15px;
    padding-right: 0px;
  }
}

.v-center {
  align-items: center;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1,
h1 a,
h2,
h2 a,
h2 span,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  transition: all 0.35s ease-in-out 0s;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--headFont) !important;
}

a {
  font-family: var(--bodyFontFamliy);
  transition: all 0.35s ease-in-out 0s;
  text-decoration: none;
  color: var(--primaryColor);
}

a:hover {
  color: var(--secondaryColor);
}

.btn-primary {
  clip-path: polygon(83% 0px,
      100% 45%,
      100% 60%,
      100% 100%,
      0px 100%,
      0px 100%,
      0px 0px);
  transition: all 0.35s ease-in 0s;
  background: var(--primaryColor);
}

.btn {
  padding: 12px 50px;
  border-radius: 0px;
  transition: all 0.35s cubic-bezier(0.47, 1.21, 0.47, 1.21) 0s;
  border: 0px;
}

.btn-primary:hover {
  background: var(--secondaryColor);
  clip-path: polygon(100% 0px,
      100% 0%,
      100% 60%,
      100% 100%,
      0px 100%,
      0px 100%,
      0px 0px);
}

.logo {
  position: relative;
}

/* navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  padding-right: 0;
  background: #fff;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  color: #122f48;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
  background: var(--primaryColor);
  position: relative;
  justify-content: flex-end;
  padding-right: 80px;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul>li>a {
  text-decoration: none;
  color: #ffffff;
  width: 100%;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}

.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 100%;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  display: block;
  border: 0;
}

.navbar .dropdown-menu,
.menu-right,
.menu-left {
  pointer-events: none;
}

.expand-btn.open,
.navbar .dropdown:hover .dropdown-menu {
  pointer-events: all;
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
  right: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  /* width: 100%; */
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  font-size: 16px;
  font-family: var(--headFont);
  font-weight: 600;
  align-items: center;
}

.navbar .menu-item:hover {
  color: #ff5722;
}

.menu-item.first-item {
  padding: 2.25rem 1rem;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background: #fff;
}

.navbar .dropdown-menu a {
  color: #000;
}

.dropdown i {
  margin-left: 2px;
  margin-top: 4px;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;
  left: 0;
  width: 100%;
  top: 65px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  pointer-events: none;
}

.mega-menu .content {
  background: #e9ecef;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.content .col .menu-title {
  color: #ff5722;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .mega-links {
  border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff5722;
}

/* container */
.container {
  margin: auto auto;
  padding: 0 15px;
  max-width: 1200px;
  text-align: center;
}

.container p {
  color: #ffffff;
}

h1 {
  font-weight: 700;
  line-height: 10vw;
  color: #ffffff;
  text-transform: uppercase;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}

/* Responsive style */

@media screen and (max-width: 1280px) {
  .navbar {
    padding: 10px 20px;
  }

  .overflow {
    overflow: hidden;
  }

  .navbar .menu-items::before {
    display: none;
  }

  .navbar .menu-items::after {
    display: none;
  }

  .navbar ul>li>a {
    color: #000;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 65px;
    right: -200%;
    background: #fcfcfc;
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
    padding-right: 0;
  }

  .menu-items.open {
    transform: translateY(0);
    right: 0;
  }

  .menu-items li:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
  }

  .menu-items li:first-child {
    margin-top: 0;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 0.5rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
    display: none;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open+.sample {
    max-height: 100%;
    transform: scaleZ(1);
    display: block;
  }

  .expand-btn.open+.blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
  }
}
   
span.btn-style {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  border: 1px solid;
  top: 0;
  left: 40px;
  margin-left: 40px;
  transition: all 0.35s cubic-bezier(0.34, 1.18, 0.34, 1.17);
}

span.btn-style:after {
  content: "";
  width: 100px;
  height: 50px;
  background-color: currentColor;
  -webkit-mask-image: url(../img/btn-icon.png);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -40px;
  transition: all 0.35s cubic-bezier(0.34, 1.18, 0.34, 1.17);
}

a.link.btn-link:hover span.btn-style:after {
  left: 40px;
}

a.link.btn-link {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  width: max-content;
  margin-left: auto;
  padding-right: 70px;
}

a.link.btn-link:hover {
  color: #fff;
}

a.link.btn-link:hover span.btn-style {
  left: 0;
} 

.swiper-nav {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
}

.swiper-nav .swiper-button-next,
.swiper-nav .swiper-rtl .swiper-button-prev {
  right: 0;
}

.swiper-nav .swiper-button-prev.testimonial-button-prev,
.swiper-nav .swiper-rtl .swiper-button-next {
  left: 0;
}

/* navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* box-shadow: 0 36px 40px -33px #474747; */
  z-index: 999;
}

.navbar .logo {
  width: 170px;
  text-decoration: none;
  color: var(--primaryColor);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .navigation {
    position: fixed;
    width: 100%;
    background: var(--overlayColor);
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0;
    transition: all 0.35s ease-in;
    pointer-events: none;
  }

  .navigation.open {
    opacity: 1;
    pointer-events: all;
    z-index: 9999;
  }
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.125rem;
  /* background: var(--primaryColor); */
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

ul.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #e2d2bb;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

/* 
.navbar ul li a {
  text-decoration: none;
  color: var(--bodyTextColor);
} */
aside#mob-menu {
  display: none;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}

.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

.navbar .sub-menu,
.menu-right {
  position: absolute;
  background: #fff;
  width: max-content;
  line-height: 30px;
  /* border-radius: 5px; */
  top: 100%;
  border-top: 1px solid var(--bodyBGColor);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  pointer-events: none;
  display: block;
  border: 0;
  padding: 0;
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .sub-menu,
.menu-left {
  left: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  /* display: flex; */
  /* justify-content: space-between; */
  /* width: 100%; */
  font-weight: 600;
  padding: 0;
  font-size: 14px;
}

.navbar .menu-item:hover {
  color: var(--primaryColor);
}

.menu-item a {
  /* color: var(--primaryColor); */
  color: #fff;
  font-family: var(--headingFont);
  font-size: 18px;
  padding: 46px 20px;
}

.menu-item a:hover,
.current-menu-item a {
  color: #ff9d9d !important;
}

.navbar .dropdown:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

button.sub-menu-toggle {
  display: none;
}

.navbar .dropdown-right:hover .sub-menu {
  left: 100%;
  opacity: 1;
  top: 0;
  visibility: visible;
  pointer-events: all;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

.navbar .dropdown-left .sub-menu {
  border-left: 0 !important;
  border-right: 1px solid;
}

.navbar .dropdown-left:hover .sub-menu {
  left: -322px;
  top: 0;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: var(--secondaryColor);
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: var(--secondaryColor);
}

.navbar.desktop-menu {
  padding: 0;
}

/* Responsive style */
@media (max-width: 1380px) {
  .menu-item a {
    font-size: 16px;
    padding: 30px 15px;
  }

  .navbar .logo {
    width: 140px;
  }
}

@media (min-width: 1281px) {
  .desktop-menu {
    display: block;
  }

  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .navbar {
    padding: 10px 20px;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 75px;
    right: 0;
    /* background: var(--lightBGColor); */
    background: #fff;
    display: block;
    transform: translateX(200%);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
    font-size: 14px;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    /* margin-top: 20px; */
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items ul>li ul>a {
    color: var(--primaryColor);
  }

  .menu-items ul>li ul>a:hover {
    color: var(--linkHoverColor);
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .sub-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .sub-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 100%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open+.sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open+.blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
  }
}

.menu-item ul li a {
  color: var(--primaryColor);
}

@media (max-width: 1280px) {
  .navigation .menu-btn {
    opacity: 0;
  }

  .navbar .menu-item {
    display: block;
  }

  .navigation.open .menu-btn {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 40px;
    top: 10px;
    opacity: 1;
  }

  .menu-items li a {
    font-size: 16px;
    width: -webkit-fill-available !important;
    width: max-content;
  }

  .navbar .dropdown:hover>.sub-menu {
    transform: scale(1);
    max-height: 100%;
  }

  /* animation menu hamburger */
  .navigation.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
  }

  .navigation.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    /* background: var(--primaryColor); */
    background: #fff;
  }

  .navigation.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    /* background: var(--primaryColor);0 */
    background: #fff;
  }

  .main-search {
    display: none;
  }

  .info-block {
    display: none;
  }

  .menu-item.first-item {
    padding: 1.3585em 1.1em;
    border-bottom: 1px solid var(--borderColor);
  }
}

.header-item.item-center {
  width: 78%;
}

.navbar .dropdown:hover>.sub-menu a {
  padding: 10px 20px;
}

.navbar .sub-menu ul.sub-menu {
  background: #f7f7f7;
  border-left: 1px solid;
  margin-left: 0;
}

@media (max-width: 1280px) {
  .header-item.item-center {
    width: auto;
  }
}

.navbar .menu-items::after {
  content: "";
  width: 30px;
  height: 30px;
  background: rgb(255, 255, 255);
  position: absolute;
  top: 33px;
  pointer-events: none;
  left: -106px;
  display: none;
  z-index: 1;
  /* transform: rotate(45deg); */
}

.navbar .menu-items::before {
  /* content: ""; */
  pointer-events: none;
  width: 200px;
  height: 100%;
  position: absolute;
  left: -125px;
  top: 0px;
  z-index: 0;
  background: #b90014;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-x: 1.5rem;
  clip-path: polygon(1.8% 0%, 100% 0%, 100% 100%, 38% 101%);
  z-index: -1;
}

@media (max-width: 1540px) {
  .header .menu>ul>li>a {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {

  .logo::before,
  .logo::after {
    display: none;
  }
}


.form-group label{
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 7px;
}

.form-group .form-control:focus{
  box-shadow: none;
  border: 1px solid #dee2e6;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Adjust distance from the bottom */
  right: 20px; /* Adjust distance from the right */
  z-index: 1000;
}

.whatsapp-float img {
  width: 50px; /* Adjust size as needed */
  height: 50px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
