@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --baseFont: "Merriweather Sans", sans-serif;
  --primary: #DB8E09;
  --white: #FFFFFF;
  --dark: #202020;
  --bodyBg: #0E0D0C;
  --darkBg: #0E0D0C;
  --darkBg2: #202020;
  --error: #ff5151;
  --transition: 400ms ease-in-out 0s;
}
body {
  font-size: 16px;
  line-height: 1.6;
  /* color: var(--white); */
  font-family: var(--baseFont);
  /* background-color: var(--bodyBg); */
  font-weight: 300;
}
a,a:hover {
  color: inherit;
  text-decoration: none;
}
 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
 img {
  max-width: 100%;
}
 h1, h2, h3, h4, h5, h6 {
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
}
 p {
  opacity: 0.8;
}

/* Btn Style One */
 .btn {
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  overflow: hidden;
  padding: 14px 35px;
  position: relative;
  text-align: center;
  transition: all .8s ease 0s;
  vertical-align: top;
  display: inline-block;
  text-transform: capitalize;
  border: 2px solid var(--primary);
}

.menuPageContent .btn {
  border: 1px solid var(--primary) !important;
}
 .btn:hover {
  background-color: var(--dark);
}
 .btn:before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: -200%;
  left: 50%;
  background: var(--dark);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition-duration: .8s;
  transition: var(--transition);
  z-index: 1;
}
 .btn:hover:before{
  top: -50%;
}
 .btn .btn-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn .btn-wrap .text-one {
  position: relative;
  transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn:hover .btn-wrap  .text-one:first-child{
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.btn .btn-wrap .text-two {
  color: var(--white);
  display: block;
  position: absolute;
  top: 100%;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn:hover .btn-wrap .text-two {
  color: var(--white);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


 .btnPrimary {
  background: var(--primary);
  color: var(--white);
}
.btnPrimary:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btnPrimary:hover .btn-wrap .text-two{
  color: var(--white);
}
.btnPrimary .btn-wrap .text-one {
  color: var(--white);
}
.btnPrimary:before {
  background: var(--dark);
}

.btnOutline {
  background: var(--dark);
  color: var(--primary);
}
.btnOutline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btnOutline:before {
  background: var(--primary);
}
.btnOutline .btn-wrap .text-one {
  color: var(--primary);
}
.btnOutline .btn-wrap .text-two {
  color: var(--primary);
}
.btnOutline:hover .btn-wrap .text-two {
  color: var(--white);
}
.iconBtn svg {
  display: block;
}

/* Btn Style One */

/* custom */


.darkBg2 {
  background-color: var(--darkBg2);
}
.textPrimary {
  color: var(--primary);
}
.mdTitle {
	font-size: 30px;
	line-height: 1.2;
}
.smTitle {
	font-size: 24px;
	line-height: 1.2;
}
.zoom-in-zoom-out {
  width: 55px;
  height: 3px;
  background: var(--primary);
  animation: zoom-in-zoom-out 2s ease-out infinite;
  margin: 15px auto;
}
@keyframes zoom-in-zoom-out {
  0% {
      transform: scale(0.3);
  }
  100% {
      transform: scale(1.1);
  }
}
/* custom */

/***** hamburger css start ********/

 .nav-toggler{
  position: relative;
  float: left;
  left: 0;
  top: 0;
  padding: 0;
  display: none;
}
 .nav-toggler a {
  position: relative;
  width: 30px;
  height: 20px;
  line-height: 20px;
  background: none;
  color: #e1e1e1;
  font-size: var(--font-16);
  margin: 0px;
  border-radius: 0px;
  outline: none !important;
  display: block;
}
 .nav-toggler{
  display:block;
}
 .hamburger {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
}
 .hamburger span {
  /* align-self: flex-end; */
  height: 2px;
  width: 83.33333333%;
  background: var(--white);
  transition: all 400ms ease-in-out;
}
 .hamburger .meat {
  width: 100%;
  transition: all 200ms ease-in-out;
}
 .hamburger .bottom-bun {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
}
.hamburger:hover span {
  width: 100%;
}
html:not(.body-menu-opened) .hamburger .top-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
html:not(.body-menu-opened) .hamburger .meat {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
html:not(.body-menu-opened) .hamburger .bottom-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

/***** hamburger css end ********/


/* Header */
header.headerSection {
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: var(--darkBg);
  color: var(--white);
  padding: 15px 0;
}
.menuColMain {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 370px;
  color: var(--white);
  background-color: var(--darkBg);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
  transform: translateX(-200%);
  padding: 85px 20px 50px;
  overflow-y: auto;
  z-index: 99;
}
.actNav .menuColMain {
  transform: translateX(0);
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9;
  background-color: var(--darkBg2);
}
.actNav .menuBackDrop {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  opacity: 0.9;
}
.closeIcon {
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  height: 30px;
  line-height: 24px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 30px;
  width: 30px;
  padding: 8px;
  transition: var(--transition);
}
.closeIcon:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.closeIcon > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
  margin-bottom: 40px;
  text-align: center;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.headerLeftOption {
  width: 302px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
 .logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
 .navItems {
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
 .navItems li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: block;
  position: relative;
}
 .navItems a {
  color: var(--white) !important;
  display: block !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  padding-bottom: 12px !important;
  padding-top: 12px !important;
  position: relative !important;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
 .navItems a.active, .navItems a:hover {
  color: var(--primary);
  padding-left: 20px;
}
 .navItems a:before {
  border: 1px solid var(--primary);
  content: "";
  height: 8px;
  left: 0;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .3s ease;
  visibility: hidden;
  width: 8px;
}
 .navItems a.active::before, .navItems a:hover::before {
  opacity: 1;
  visibility: visible;
}
.sidebarContent {
  padding: 20px;
  margin-top: 50px;
}
.vsContent {
  padding: 15px 0;
}
.addressLink li {
  opacity: 0.8;
  padding-top: 10px;
}
.userLogin {
  position: relative;
}
.userLogin .dropMenu {
	position: absolute;
	top: 100%;
	background: var(--darkBg);
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
	width: 210px;
	text-align: left;
	right: 0;
	display: none;
	z-index: 9;
	padding: 6px 0;
	border-radius: 8px;
}
.userLogin > a {
	padding: 8px 16px 8px 0;
	display: flex;
	align-items: center;
	column-gap: 6px;
	position: relative;
}
.userLogin > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
.userLogin .userName {
  font-size: 16px;
  font-weight: 500;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--white);
	font-size: 14px;
  line-height: 1.2;
	font-weight: normal;
  transition: padding-left var(--transition), background-color var(--transition);
}
.userLogin .dropMenu a:hover {
	background-color: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
}

.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.hrLinksCol {
  width: 54px;
  height: 54px;
  position: relative;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
}
.hrLinksCol::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
}
.hrLinksCol:hover::before {
  transform: scale(1);
}
.hrLinksCol svg {
  display: block;
  position: relative;
  color: var(--primary);
  transition: var(--transition);
}
.hrLinksCol:hover svg {
  color: var(--white);
}
.cartCount {
  color: var(--dark);
  background-color: var(--primary);
  font-size: 10px;
  padding: 2px;
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  border-radius: 10px;
  min-width: 14px;
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--dark);
}
/* Header */


/* Footer */
.footerSection {
  padding: 100px 0;
}
.footerLeftCol {
  padding-right: 50px;
}
.footerLogo {
  padding-bottom: 35px;
}
.footerLeftCol > p {
  padding-bottom: 20px;
}
.footerSection .socialMenu ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footerSection .socialMenu ul > li > a {
  transition: color var(--transition);
}
.footerSection .socialMenu ul > li > a:hover {
  color: var(--primary)
}
.footerTitle .zoom-in-zoom-out {
  animation: zoom-in-zoom-out2 2s ease-out infinite;
  margin: 0;
}
@keyframes zoom-in-zoom-out2 {
  0% {
    width: 10%;
  }
  100% {
    width: 20%;
  }
}
.footerCol .navItems, .footerCol .navItems li {
  border: 0;
}
.footerTitle {
  padding-bottom: 30px;
}
.footerCol .navItems li a.navItem {
  padding-bottom: 4px;
  padding-top: 4px;
}
.addressCol + .addressCol {
  margin-top: 20px;
}
.addressCol > h4 {
  font-size: 18px;
  font-weight: 400;
}
.addressLink > a {
  display: flex;
  gap: 12px;
  align-items: center;
}
.addressIcon {
  width: 26px;
  height: 26px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex: 0 0 auto;
}
.addressLink > a > span:last-child {
  font-size: 14px;
  opacity: 0.8;
}
.footerBottom {
  padding: 15px 0;
  opacity: 0.8;
  background-color: var(--darkBg2);
  font-size: 14px;
  color: white;
}
.powerdText {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.powerdText > span > svg {
  max-width: 120px;
}
.footerLinks {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerLinks li + li {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  margin-left: 10px;
}
/* Footer */

.rightIconFld {
	position: relative;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
	z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
  display: block;
  opacity: 0.5;
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}
.formStyle .form-control, .formStyle .form-select {
	padding: 15px 25px;
	border-radius: 40px;
}
.formStyle select.form-select {
  padding-right: 50px;
  background-position: right 1rem center;
}
.formStyle textarea.form-control {
  height: 120px;
  resize: none;
  border-radius: 16px;
}
html[data-bs-theme="dark"] .form-control {
  background-color: #212529;
  color: #dee2e6;
  border-color: #495057;
}

/* Modal */
/* login modal */
.modalNewstyle {
  --xSpace: 30px;
  --ySpace: 30px;
}
.modalNewstyle .modal-body,
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 10px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--darkBg) !important;
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .btn-close {
  padding: 4px;
  width: var(--closeIconSize);
  height: var(--closeIconSize);
  position: absolute;
  right: 10px;
  top: 10px;
  margin: 0;
  float: none;
  opacity: 0.7;
  text-shadow: none;
  color: var(--white);
  font-weight: 300;
  display: block;
  font-size: 32px;
}
.modalForm {
	margin: 0 auto;
	max-width: 520px;
}
.sideLinesDivider {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.sideLinesDivider > .dividerText {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c1c5d0;
  font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 2px solid currentColor;
  opacity: 0.2;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.modalNewstyle .form-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.errorMsg {
	font-size: 14px;
	color: var(--error);
	letter-spacing: 0.5px;
	font-weight: 400;
	margin: 4px 0;
	line-height: 1.2;
  display: none;
}
#resend_otp {
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#timer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
/* Modal */

/******* Media Quary *******/

@media (min-width:768px) {
  .modal-md {
    max-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    max-width: 650px;
  }
}
@media (max-width: 1399px) {
  .mdTitle {
    font-size: 24px;
  }
  .smTitle {
    font-size: 20px;
  }
  .logo {
    max-width: 160px;
  }
  .btn {
    padding: 12px 30px;
  }
}
@media (max-width: 1199px) {
  .hrLinksCol {
    width: 45px;
    height: 45px;
  }
  .cartCount {
    font-size: 8px;
    top: 6px;
    right: 6px;
    min-width: 12px;
  }
  .btn {
    padding: 10px 25px;
  }
  .headerLeftOption {
    width: 254px;
  }
  .footerSection {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
  .headerLeftOption {
    width: 45px;
  }
  .sidebarContent {
    padding: 15px;
    margin-top: 20px;
  }
  .menuColMain {
    width: 320px;
    padding: 60px 10px 30px;
  }
  .closeIcon {
    width: 25px;
    height: 25px;
    right: 15px;
    top: 15px;
    padding: 5px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .mdTitle {
    font-size: 20px;
  }
  .smTitle {
    font-size: 18px;
  }
  .footerSection {
    padding: 60px 0 20px;
  }
  .footerLeftCol {
    padding-right: 0;
  }
  .footerLeftCol > p {
    padding-bottom: 10px;
  }
  .footerCol {
    margin-bottom: 40px;
  }
  .footerLinks {
    justify-content: end;
  }
  .powerdText {
    justify-content: center;
    margin-top: 15px;
  }
}
@media (max-width:767px) {
   .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .formStyle .form-control, .formStyle .form-select {
    font-size: 14px;
  }
  .footerLeftCol {
    text-align: center;
    margin-bottom: 30px;
  }
  .footerSection .socialMenu ul {
    justify-content: center;
  }
  .footerCol {
    text-align: center !important;
  }
  .footerTitle .zoom-in-zoom-out {
    margin: 0 auto;
  }
  .footerCol .navItems li a.navItem {
    display: inline-block;
  }
  .addressLink > a {
    justify-content: center;
  }
  .footerBottom {
    text-align: center;
  }
  .footerLinks {
    justify-content: center;
  }
  .powerdText {
    margin-top: 10px;
  }
}
@media (max-width:575px) {
  .btn {
    padding: 10px 15px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .footerBottom .container .align-items-center {
    gap: 100px !important;
  }
  .col-md-6.col-lg-4.order-md-first {
    margin-top: -180px !important;
  }
}
@media (max-width:360px) {
  .menuColMain {
    width: 100%;
  }
  .modalNewstyle .rightIconFld > .inputFieldIcon {
    right: 14px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .modalNewstyle#reservationModal {
    --xSpace: 10px;
  }
}


/* custom css rukes for theme 16 */
#loginModal label,
#registerModal label {
  color: var(--white) !important;
}

#loginModal .formStyle .rightIconFld,
#registerModal .formStyle .rightIconFld {
  margin-bottom: 0px;
}
#loginModal  h4,
#registerModal  h4 {
  color:var(--white) !important;
}
.headerSection  h1, .headerSection  h2, 
.headerSection  h3, .headerSection  h4{
  color:var(--white) !important;
}

 .navMain > ul > li + li {
    margin-left: 0px;
}
 .navMain > ul {
    display: block;
}
.footerSection {
    background-color: var(--bodyBg);
}
 .footerCol {
    text-align: left;
}
 .footerCol ul > li {
    margin-top: 0px;
    padding-top: 0px;
}
 .footerCol h4 {
    margin-bottom:0px;
}
 ul.simpleList > p {
    margin-bottom: 10px;
}
.footerBottom .container .align-items-center {
  gap: 350px;
}
#loginModal .modal-header button, #registerModal .modal-header button{
  margin-top: -70px;
}
#loginModal .modal-content .btnPrimary {
  color: var(--white);
}
#registerModal .modal-body .col-12 {
  margin-top: 0px !important;
}
.mBtn {
  position: static !important;
}
#forgotPasswordModal .formStyle .labelStyle {
  text-align: center !important;
}
#otpVerifyModal .modal-content {
  border-radius: 10px;
}
#loginModal .sideLinesDivider {
  padding: 0px !important;
}
#loginModal .col-12 {
  margin-top: 20px !important;
}
#loginModal .modal-dialog, #registerModal .modal-dialog {
  max-width: 600px;
}
.floating-alert-top {
  margin-top: -105px;
}
.topSpace {
  padding-top: 0px !important;
  margin-top: 0px !important;
}
#registerModal .modal-body .col-12 {
  margin-bottom: 20px;
}
.backToMenu {
  z-index: 3;
}
.socialMenu {
    justify-content: flex-start;
    display: flex;
}
.socialList > li {
  color: white;
}
.headerSection .logo {
  margin-left: 160px;
}
@media (max-width:565px) {
.backToMenu {
  margin-top: 30px !important;
}
#loginModal .modal-content .col-sm-6 {
  margin-top: 20px !important;
}
.topSpace {
margin-top: 50px !important;
}
.menuPageContent .fixedCenterScroll .menuSection {
  top: 120px !important;
}
.headerStyle2 {
  height: 0px !important;
}
.footerSection {
  padding-top: 60px !important;
}
#otpVerifyModal .formStyle .form-control {
  margin-left: 70px !important;
  width: 70% !important;
}
#otpVerifyModal .btn {
  max-width:300px !important;
}
.floating-alert-top {
  margin-top: -55px;
}
.topLinksSwiper {
  margin-bottom: 0px !important;
}
.navMain > ul > li > a {
  border-bottom: 0px solid #ddd !important;
}
footer .navItems,
footer .navItems a {
  display: inline-block;
  text-align: center !important;
}
footer ul {
  text-align: center !important;
}
ul.addressLink {
  padding-bottom: 50px;
}
.pageTitle {
  margin-top: 40px;
}
.socialMenu {
    justify-content: center;
    display: flex;
}
.headerSection .logo {
  margin-left: 60px;
}
}
@media (min-width: 992px) {  
  .modalStyle .modal-lg {
      max-width: 800px !important;
  }
}
#custom-links {
  text-decoration: underline;
  text-decoration-color: var(--primary) !important;
  text-underline-offset: 10px;
  color: inherit;
  transition: color 0.3s ease;
}
#custom-links:hover {
  color: var(--primary) !important;
}
@media (max-width: 576px) {
#custom-links{
  color: var(--primary) !important;
}
}
.menuPageContent .container .row {
    margin-left: -45px;
}
@media (max-width: 576px) {
	.menuPageContent .container .row {
		margin-left: -15px;
	}
}