@font-face {
  font-family: "Futura Md BT";
  src: url(/assets/fonts/Futura_Md_BT_Light.ttf) format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Futura Md BT";
  src: url(/assets/fonts/Futura_Md_BT.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Futura Md BT";
  src: url(/assets/fonts/Futura_Md_BT_Bold.ttf) format("truetype");
  font-weight: bold;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #9e1f85;
  height: 70px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Text Selection Color */
::-moz-selection {
  color: #202020;
  background: #ffc757;
}

::selection {
  color: #202020;
  background: #ffc757;
}

*,
*:after,
*::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}
a {
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
}
a:focus,
a:active {
  color: var(--text-color) !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
.row > * {
  margin: 0;
  padding: 0;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding: 0;
}
/* variable define */

:root {
  --primary-color: #7d1e6a;
  --secondary-color: #f7b121;
  --text-color: #202020;
  --white-color: #fff;
  --black-color: #000;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
body {
  overflow-x: hidden !important;
  /* background-color: #fcffc3; */
}
.header {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.top_nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}
.top_bar {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_bar_scroll{
  margin-top: -55px;
}
.custom_container_tab_bar {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* background: palegoldenrod; */
}
.custom_container_tab_bar i {
  color: var(--text-color);
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  /* border: 2px dotted var(--white-color); */
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.custom_container_tab_bar i:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.custom_container_tab_bar .contact-info i {
  margin-right: 15px;
}
.contact-info a {
  font-family: "Futura Md BT", sans-serif;
  font-weight: normal;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-info > span {
  width: 2px;
  height: 20px;
  display: inline-block;
  margin: 0 20px;
  background-color: #fff;
  opacity: 0.5;
}
.contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top_line h2 {
  font-family: "Futura Md BT", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.contact-info_call > div,
.contact-info_call{
  display: flex;
  align-items: flex-end;
}
.contact-info_call a {
  font-size: 18px;
}
.contact-info > a{
  font-size: 18px;
}
.contact-info a:hover,
.contact-info a:active {
  color: var(--secondary-color);
}
.custom_navbar {
  padding: 0;
}
.custom_nav_container {
  background-color: var(--white-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.scroll_nav_container {
  background-image: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.scroll_nav_container .menu_tabs {
  padding: 15px 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.scroll_navbar {
  background-color: var(--white-color);
  -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.logo {
  margin-left: 30px;
  color: var(--secondary-color);
  height: 90px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.scroll_nav_container .logo {
  height: 70px;
  margin-left: 40px;
}
.navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar-toggler {
  border-color: transparent;
}
.navbar-toggler-icon {
  background-image: none;
  width: 27px;
  height: 3px;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.navbar-toggler-icon::after,
.navbar-toggler-icon::before {
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  background-color: var(--primary-color);
  position: absolute;
}
.navbar-toggler-icon::after {
  top: -8px;
}
.navbar-toggler-icon::before {
  bottom: -8px;
}
.navbar-toggler-icon:active,
.navbar-toggler-icon:active::after,
.navbar-toggler-icon:active::before {
  background-color: rgba(136, 0, 0, 0.5);
}
.menu_tabs {
  padding: 20px 0;
}
.menu_tabs ul li {
  margin-right: 30px;
}
.menu_tabs ul li i {
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  bottom: 0;
  margin: 0 auto;
  font-size: 21px;
  opacity: 0;
  color: var(--secondary-color);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.menu_tabs ul li a {
  color: var(--text-color);
  font-family: "Futura Md BT", sans-serif;
  font-weight: normal;
  font-size: 19px;
  color: var(--text-color);
  position: relative;
}
.menu_tabs ul li a:hover i,
.menu_tabs ul li a.my_active i {
  opacity: 1;
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
}

a.nav-link:focus {
  color: var(--text-color);
}
a.nav-link:hover {
  color: var(--text-color);
}
.nav-item:last-child {
  padding: 2px 20px;
  background-color: var(--secondary-color);
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  position: relative;
  z-index: 1;
}
.nav-item:last-child a {
  color: var(--white-color);
}
.nav-item:last-child::after {
  content: "";
  width: 97%;
  height: 90%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px dotted var(--white-color);
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  z-index: -1;
}
.menu_tabs ul li a.my_active {
  color: var(--text-color);
}
.navbar-nav li:hover > ul.dropdown-menu {
  /* display: block; */
}
.dropdown-item:focus, .dropdown-item:hover {
  background-color: transparent;
}

.breadcrumb_section {
  height: 300px;
  background: url(/assets/images/other_pages_imgs/about_us_bg.jpg) no-repeat
    bottom;
  background-size: cover;
}
.breadcrumb_main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  font-family: "Futura Md BT", sans-serif;
  font-weight: normal;
  font-size: 20px;
}
.breadcrumb_main h2 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb_main a {
  font-size: 18px;
  font-weight: 200;
}
.breadcrumb_active {
  color: #ffd800;
}
.bottom_bg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* 2nd Section Start */
.scnd_section {
  margin-top: 50px;
}
.scnd_section .container .row {
	align-items: flex-start  !important;
}
.scnd_section .container .row > div {
  padding: 0 15px;
}
.scnd_section_img {
  position: relative;
}
.scnd_section_img img {
  width: 100%;
}
.scnd_section_img img:first-child{
	padding-bottom: 30px;
}
.scnd_section_content h1 {
  font-size: 26px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 400;
  color: var(--secondary-color);
}
.scnd_section_content h2 {
  font-size: 26px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: bold;
  color: var(--primary-color);
  padding: 10px 0;
}
.scnd_section_content p {
  line-height: 28px;
  font-size: 20px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 200;
  color: #202020;
  text-align: justify;
}
.appointment {
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  gap: 30px;
}
.read_more {
  font-size: 19px;
  color: #880000;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 200;
}
.read_more:hover {
  color: #880000;
  text-decoration: underline;
}
/* 2nd Section End */

.texas_map > div iframe{
	width: 100%;
	height: 200px;
}

/* Offer Section Start */

.offer_section {
  width: 100%;
  height: auto;
  margin: 70px 0 0;
  position: relative;
}
.offer_left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  text-align: center;
}
.offer_left img {
  padding-top: 20px;
  width: 100%;
}
.form_main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--primary-color);
  background: url(/assets/images/form_bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.form_main textarea {
  resize: none;
}
.input_main {
  width: 100%;
  /* background-color: lavender; */
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.input_main input,
.input_main textarea {
  margin-bottom: 15px;
  padding: 12px 18px;
  font-size: 17px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: normal;
  color: #707070;
  border: 0;
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
}
.input_main textarea {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.form-control:focus {
  -webkit-box-shadow: 0 0px 0px 3px rgba(136, 0, 0, 0.2) !important;
  box-shadow: 0 0px 0px 3px rgba(136, 0, 0, 0.2) !important;
}
.input_main button {
  font-size: 18px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: normal;
  display: block;
  margin: 0 auto;
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
}
.input_main button:hover {
  color: var(--primary-color) !important;
  -webkit-box-shadow: 0 0px 0px 3px rgba(136, 0, 0, 0.2) !important;
  box-shadow: 0 0px 0px 3px rgba(136, 0, 0, 0.2) !important;
}
.input_main button i {
  font-size: 24px;
  margin-right: 10px;
}
.form_head {
  padding: 20px 0 0;
  border-radius: 7px 7px 0 0;
  -webkit-border-radius: 7px 7px 0 0;
  -moz-border-radius: 7px 7px 0 0;
  -ms-border-radius: 7px 7px 0 0;
  -o-border-radius: 7px 7px 0 0;
  /* background-color: var(--primary-color); */
}
.form_head h4 {
  color: var(--white-color);
  font-size: 30px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: bold;
}
.form_head h2 {
  font-family: "Futura Md BT", sans-serif;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
  padding: 5px 0;
  margin-top: 5px;
  background-color: var(--secondary-color);
}
.offer_right {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.offer_right_sub {
  margin-right: 35px;
  border-radius: 7px;
  background-color: var(--white-color);
}
.offer_head_main {
  /* padding: 20px 20px 0; */
}
.offer_right .offer_heading h2 {
  font-size: 42px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: bold;
  color: var(--primary-color);
}
.offer_right .offer_heading h5 {
  font-size: 22px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 5px 0 10px;
}
.offer_heading p {
  padding: 0 10px;
  line-height: 29px;
  font-size: 20px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 300;
  color: #202020;
}
.mySwiper2 {
  padding: 10px;
  padding-bottom: 30px;
}
.offer_para {
  margin: 20px 0 0;
}
.offer_para .read_more {
  display: block;
  width: 50%;
  margin: 10px auto 0;
  padding: 2px 0;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
}
.offer_content {
  padding: 20px 0;
  /* background-color: rgb(255, 206, 245); */
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  /* border: 2px dashed var(--secondary-color); */
}
.offer_right .offer_head_main span.offer_heading_line {
  display: block;
  width: 75%;
  height: 2px;
  opacity: 0.5;
  margin: 15px auto;
  background-color: var(--secondary-color);
}
.offer_content {
  margin: 20px 0;
}
.offer_content h2 {
  font-family: "Futura Md BT", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 15px 0 5px;
}
.offer_content p {
  width: 95%;
  margin: 0 auto;
  padding: 0 10px;
  line-height: 27px;
  font-size: 20px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 200;
  color: #202020;
}
.mySwiper_n_Btn,
.mySwiper_p_Btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  /* background-color: var(--primary-color); */
  border: 1px solid var(--primary-color);
}
.mySwiper_n_Btn::after,
.mySwiper_p_Btn::after {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
}
@-webkit-keyframes rotate_reverse {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}
/* Offer Section End */

/* Client Section Start */

.client_section {
	width: 100%;
	height: auto;
	margin: 50px 0 0;
  }
  .client_section_inner {
	background-color: var(--white-color);
	/* padding: 40px 40px 0; */
  }
  .client_heading h2 {
	font-size: 42px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: bold;
	color: var(--primary-color);
  }
  .client_heading h5 {
	font-size: 22px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: normal;
	color: var(--secondary-color);
	margin: 5px 0 10px;
  }
  .client_heading p {
	padding: 0 40px;
	line-height: 29px;
	font-size: 20px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: 200;
	color: var(--text-color);
  }
  .client_heading_line {
	display: block;
	width: 50%;
	height: 2px;
	opacity: 0.5;
	margin: 15px auto;
	background-color: var(--secondary-color);
  }
  .mySwiper3 {
	padding: 100px 0 50px;
	/* background-color: #df711b; */
  }
  .client_cards {
	margin: 0 5px;
	background: url(/assets/images/Icons/client_quote_icn.svg) no-repeat 85% 60%;
  }
  .client_cards {
	padding: 20px 0 15px;
	/* border: 3px dashed var(--primary-color); */
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  }
  .client_cards figure {
	margin-top: -75px;
  }
  .client_cards h2 {
	font-size: 22px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: bold;
	color: var(--primary-color);
	margin: 20px 0 0;
  }
  .client_cards h6 {
	margin: 5px 0;
	font-size: 18px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: normal;
	color: var(--secondary-color);
  }
  .client_cards p {
	width: 90%;
	margin: 12px auto 0;
	padding: 20px;
	line-height: 27px;
	font-size: 20px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: 200;
	color: #202020;
	text-align: center;
	background: url(/assets/images/client_card_bg.jpg) no-repeat center;
	background-size: cover;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
  }
  .client_cards a {
	width: 100%;
  }
  .client_cards a h5 {
	font-size: 22px;
	font-family: "Futura Md BT", sans-serif;
	font-weight: normal;
	padding: 12px 0;
	color: #fff;
	background-color: rgb(136, 0, 0);
	border-radius: 0px 0px 4px 4px;
  }
  .client_cards a:hover h5 {
	color: var(--secondary-color);
  }
  .my_swiper_pagination3 .swiper-pagination-bullet {
	background-color: rgba(0, 0, 0, 0.3);
  }
  .my_swiper_pagination3 .swiper-pagination-bullet-active {
	background-color: var(--secondary-color);
  }
  /* Client Section End */

/* Bannert Section Start */

.banner_section {
	margin: 70px 0;
  }
  .banner_section .container {
	width: 100%;
	height: 100%;
  }
  .banner_section img {
	width: 100%;
  }
  /* Bannert Section End */

/* Footer Section Start */

.footer_section {
  width: 100%;
  height: auto;
  margin: 50px 0 0;
  padding: 50px 0 10px;
  background-color: var(--primary-color);
  background: url(/assets/images/footer_bg.jpg) no-repeat center;
  background-size: cover;
}
.footer_heading h2 {
  display: inline;
  font-size: 34px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: bold;
  color: var(--white-color);
  /* background-color: var(--white-color); */
  padding: 8px 30px;
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
}
.three_col {
  background-color: var(--white-color);
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
}
.twelve_col {
  margin-top: 15px;
  margin-left: 15px;
}
.twelve_col > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}
.twelve_col > div > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.twelve_col > div:hover > h4 a {
  color: var(--secondary-color);
}
.twelve_col > div h4 {
  text-align: start;
  font-size: 20px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 400;
  color: var(--white-color);
}
.twelve_col > div i {
  color: var(--secondary-color);
  padding-right: 12px;
  font-size: 24px;
}
.footer_phone {
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 15px;
}
.footer_phone > div:nth-child(1) {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  -ms-border-radius: 200px;
  -o-border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_phone > div:nth-child(1) i {
  font-size: 32px;
  color: var(--text-color);
}
.footer_phone > span {
  width: 2px;
  height: 45px;
  background-color: var(--text-color);
  margin: 0 10px;
}
.footer_phone > div:nth-child(3) {
  text-align: center;
}
.footer_phone > div:nth-child(3) h2 {
  font-size: 19px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: bold;
  color: var(--text-color);
}
.footer_call_2{
  padding-top: 5px;
  display:  block;
}
.disclaimer {
  width: 95%;
  margin: 0 auto;
}
.disclaimer p {
  color: #fff;
  font-size: 19px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: 300;
  line-height: 24px;
  color: #e5e5e5;
  margin: 40px 0 30px;
}
.disclaimer b {
  color: var(--secondary-color);
}
footer hr {
  width: 85%;
  margin: 10px auto;
  height: 1px;
  background-color: #e5e5e5;
  opacity: 0.5;
}
.copyright h6 {
  color: #fff;
  font-size: 17px;
  font-family: "Futura Md BT", sans-serif;
  font-weight: normal;
}
.copyright h6 a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
}
.copyright h6 a:hover {
  color: var(--secondary-color);
}
/* Footer Section End */

/* start whatsapp buttons */
.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 2;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #ffd800;
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse:hover {
  animation: unset;
}
/* end whatsapp buttons */
