@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;
}

/* Contact with map Start */

.contactwithMap{
    width: 100%;
    margin-top: 50px;
}
.contactwithMap_left{
    padding-right: 30px;
}
.contactwithMap_left > div{
    height: 100%;
}
iframe{
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 6px 0 #ccc;
            box-shadow: 0 0 6px 0 #ccc;
    padding: 12px;
}
.contactwithMap_right {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto;
	grid-template-columns: auto;
	text-align: center;
}
.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);
}
/* Contact with map End */

/* Three category Section Start */
.three_cat_section{
    margin: 50px 0 0;
}
.three_cat_sub_div {
	position: relative;
	display: block;
    padding: 10px;
}
.three_cat_icn {
	margin-bottom: 20px;
	text-align: center;
	background: var(--white-color);
	height: 110px;
	width: 110px;
	border-radius: 110px;
	position: relative;
	top: 0;
	display: inline-block;
	-webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.three_cat_sub_div:hover .three_cat_icn {
    -webkit-box-shadow: 0 4px 15px 0 rgba(255, 243, 79, 1);
            box-shadow: 0 4px 15px 0 rgba(255, 243, 79, 1);
	top: -8px;
}
.three_cat_icn i {
	font-size: 42px;
	line-height: 110px;
	color: var(--secondary-color);
}
.three_cat_content h4 {
	margin-bottom: 10px;
    font-size: 22px;
    font-family: "Futura Md BT";
    font-weight: bold;
    color: var(--primary-color);
}
.three_cat_content p {
	display: block;
    font-size: 19px;
    font-family: "Futura Md BT";
    font-weight: normal;
    color: var(--text-color);
}
.three_cat_content p:hover{
  color: #707070;
}
/* Three category 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 */