body{
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #212112;
	overflow-x: hidden;
}

.container{
  max-width: 1440px;
}
@media screen and (max-width: 1600px){
  .container {
  max-width: 1250px;
}
}
@media screen and (max-width: 1500px){
  .container{
  max-width: 1140px;
}
}
@media screen and (max-width: 1200px){
  .container{
  max-width: 960px;
}
}
h1,h2,h3,h4,h5,h6{
	font-family: "Abhaya Libre", serif;
}
.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 5px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 5px 0;position: fixed;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 50px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand img{
	height: 100px;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
  position: relative;
  z-index: 99999 !important;
  margin-bottom: -40px;
}.carousel-control-next {
  right: 0;
  width: 60px;
  background: #000;
  height: 60px;
  top: 40%;
  right: 20px;
  border-radius: 31px;
}
.carousel-control-prev{
	width: 60px;
  background: #000;
  height: 60px;
  top: 40%;
  left: 20px;
  border-radius: 31px;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #212121 !important;
	font-weight: 500;
    transition: all 200ms linear;font-family: "Abhaya Libre", serif;font-size: 21px;
}
.nav-item:hover .nav-link{
	color: #f7a025 !important;
}
.nav-item.active .nav-link{
	color: #f7a025 !important;
}
.active::after{
  opacity: 1 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #f7a025;
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}


.bg-light {
	background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
	width: 100%;
	display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  margin-top: 40px;
	transform: translateY(-50%);
	z-index: 20;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(129,103,169,.6);
}


@media (max-width: 767px) { 
	
	.nav-item:after{
		display: none;
	}
	
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	
}

/* #Link to page
================================================== */

.logo {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
  filter: brightness(10%);
	transition: all 250ms linear;
}

.topbar {
	background: #f7a025;
	padding: 5px 0
}

.topbar ul li {
	display: inline-block;
	color: #fff;
	margin-right: 20px
}

.topbar ul li a {
	font-size: 14px;
	padding-left: 5px;
	color: #fff !important
}

ul {
	padding: 0;
	margin: 0
}
.carousel-indicators li{
	background-color: rgb(238, 42, 129);
}
.social {
	float: right
}


.topbar ul {
	float: left
}

.pbl-0 {
	padding: 0
}


.social {
	padding-right: 0px;
	float:right !important;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
}
a {
	text-decoration: none !important
}
.webmenu_bottom_shape_left {
  top: 72px;
  left: -80px;
  z-index: 9999 !important;
}

@media screen and (max-width:1199px){

}


@media screen and (max-width:767px){
	.topbar{
		display: none;
	}
	.carousel-control-next, .carousel-control-prev{
		display: none;
	}
}


.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background:#fff;
  transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
/*     display: none; */
  }
}
.swiper-pagination {
  text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}
}
@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:30px;
 
}
}
/*--------------------------------------------------------------
  #hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 780px;
  transition:all .4s ease;
}
.hero-slider .slide-inner::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0000004a, #000000cf);
}
@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

.slidercaptiontag{

}

@media (max-width: 767px) {
  .hero-style{
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 0px;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg)
  }
}
@keyframes spin {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg)
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
  50% {
    -webkit-transform:rotate(40deg);
    transform:rotate(40deg)
  }
  100% {
    -webkit-transform:rotate(0);
    transform:rotate(0)
  }
}
.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
  z-index: 9;
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
  50% {
    -webkit-transform:translateY(30px);
    transform:translateY(30px)
  }
  100% {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}.ripple-shape {
  position:absolute;
  bottom:0;
  right:0;
  z-index:2
}
.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5,
.ripple-6 {
  height:40px;
  width:40px;
  position:absolute;
  left:30px;
  bottom:-10px;
  background-color:transparent;
  border:3px solid rgba(255,255,255,1);
  border-radius:50%;
  -webkit-transform:translate3d(-50%, 50%, 0);
  transform:translate3d(-50%, 50%, 0);
  -webkit-animation:heroripple 8s ease-out infinite;
  animation:heroripple 8s ease-out infinite
}
.ripple-1 {
  -webkit-animation-delay:0;
  animation-delay:0
}
.ripple-2 {
  -webkit-animation-delay:1s;
  animation-delay:1s
}
.ripple-3 {
  -webkit-animation-delay:2s;
  animation-delay:2s
}
.ripple-4 {
  -webkit-animation-delay:3s;
  animation-delay:3s
}
.ripple-4 {
  -webkit-animation-delay:4s;
  animation-delay:4s
}
.ripple-5 {
  -webkit-animation-delay:5s;
  animation-delay:5s
}
.ripple-6 {
  -webkit-animation-delay:1s;
  animation-delay:1s
}
@-webkit-keyframes heroripple {
  0% {
    -webkit-transform:translate3d(-50%, 50%, 0);
    transform:translate3d(-50%, 50%, 0);
    opacity:0.5
  }
  100% {
    -webkit-transform:translate3d(-50%, 50%, 0);
    transform:translate3d(-50%, 50%, 0);
    opacity:0;
    width:310px;
    height:310px
  }
}
@keyframes heroripple {
  0% {
    -webkit-transform:translate3d(-50%, 50%, 0);
    transform:translate3d(-50%, 50%, 0);
    opacity:0.5
  }
  100% {
    -webkit-transform:translate3d(-50%, 50%, 0);
    transform:translate3d(-50%, 50%, 0);
    opacity:0;
    width:310px;
    height:310px
  }
}
.hero-1 .shape5, .hero-1 .shape4 {
  z-index: 9;
}
.shape3 {
  top: -420px;
  left: -330px;
  width: 619.52px;
  height: 619.52px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  -webkit-transform: rotate(25.36deg);
  -ms-transform: rotate(25.36deg);
  transform: rotate(25.36deg);
  z-index: 2;
  -webkit-animation: spin 40s linear infinite;
  animation: spin 40s linear infinite;
}
.shape4 {
  top:0;
  right: -330px;
  width: 619.52px;
  height: 619.52px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  -webkit-transform: rotate(25.36deg);
  -ms-transform: rotate(25.36deg);
  transform: rotate(25.36deg);
  z-index: 2;
  -webkit-animation: spin 40s linear infinite;
  animation: spin 40s linear infinite;
}
.hero-shape {
  position: absolute;
}
.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px;
  text-transform: capitalize;
  transition:all .4s ease;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 30px;
    margin: 0 0 30px;
  }
  .navbar-brand img {
  height: 75px;
}
}

.hero-style .slide-text p {
  opacity: 1;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 20px;
  transition:all .4s ease;
  font-weight: normal;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}



.butonstyk, .butonstyk-s2{
    background-color: #ffffff;
    font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color:#2b3b95;
    padding: 9px 32px;
    border: 0; 
  border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
  transition:all .4s ease;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
.butonstyk-s2{
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}
.butonstyk:hover, .butonstyk-s2:hover, .butonstyk:focus, .butonstyk-s2:focus, .butonstyk:active, .butonstyk-s2:active {
    background-color:#2b3b95 ;
    color: #fff;
}
.butonstyk-s3{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}


.sectiontitle {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  font-family: Cormorant, serif;
  color: #f4a22b;
}

.aboutus{
  padding: 60px 0;
}

.sideleft{
  padding-left: 40px;
}

p{
  text-align: justify;
}

.products{
  padding: 50px 0 ;
  background: #fce5c4;
}

.card{
  border-radius: 20px;
  margin-top: 10px;
}
.card img{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.card h4{
  background: #f4a22b;
  color: #fff !important;
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-weight: 800;
}


.whyus{
  padding: 60px 0;
}

.whyus ul li{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  list-style: disclosure-closed;
}
.whyus ul{
  padding-left: 20px;
}
.whyus ul b{
  color: #f5a22c;
}
footer{
  background: #171717;
  padding: 60px 0 40px;
}

footer h4{
  font-size: 30px;
  margin-top: -0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

footer ul{
  padding: 0;
  margin: 0;
}
footer ul li{
  list-style: none;margin-bottom:15px;
}
footer ul li a{
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
    color: #fff;
  
}
a:hover{
  color: #f7a025 !important;
}
footer ul li i{
  padding-right: 10px;
  color: #f7a025 !important;
}
.media-text{
  margin-bottom: 0;
}
.copyright-text {
  margin-bottom: 0;
  color: #fff;
} .copyright-text a{
  color: #fff !important;
}
.copyright-text a:hover{
  color: #fff !important;
}
.copyright{
background: #f7a025 !important;
padding: 10px 0;
text-align: center;
}
.active{
  color: #f7a025;
}
@media screen and (max-width:767px){
  .navbar-brand img {
  height:75px;
}
.webmenu_bottom_shape_left img{
  height: 35px;
}
.webmenu_bottom_shape_left {
  top: 48px;
  left: -76px;
  z-index: 9999 !important;
}
.navbar-nav{
  margin-top: 20px;
}
.nav-link{
  font-size: 17px;
}
.aboutus{
  padding: 30px 0 20px;
}
.sideleft {
  padding-left: 0;
}
.sectiontitle {
  font-size: 30px;
}
p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}
.products {
  padding: 25px 0 40px;
  background: #fce5c4;
}
.whyus {
  padding: 25px 0;
}
  .sectiontitle {
    font-size: 26px;
  }
  .mth2{
    margin-top: 20px;
  }
}



.banner-section {
  padding-top: 120px;
  padding-bottom: 50px;
}
.banner-section {
  padding: 50px 0px !important;
  padding-top: 120px;
  padding-bottom: 30px;
  background: #f7a025;
  text-align: center;
}
.banner-section h1 {
  font-size: 36px;
  color: #fff;
  text-rendering: cap;
  text-transform: uppercase;
  font-family: Cinzel,serif;
  text-align: center;
}
.tm-breadcrumb ul {
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0;
}
.tm-breadcrumb ul li {
  display: inline-block;
  list-style: none;
  font-size: 18px;
  color: #fff;
}
.tm-breadcrumb ul li a {
  color: #fff;
}
.tm-breadcrumb ul li a::after {
  content: "▪";
  padding: 0 10px;
}
.contact-us-details-section {
  padding: 50px 0px ;
}
.tm-contact-block {
  -webkit-box-shadow: 0 10px 25px rgba(136,108,70,.1);
  box-shadow: 0 10px 0 10px 25px rgba(136,108,70,.1);
  border: 1px solid #8569462e;
}
.tm-contact-block {
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1);
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  padding: 30px 30px;
  overflow: hidden;
  min-height: 320px;
  border-radius: 3px;
  -webkit-transition: all .4s ease-in-out 0s;
  -o-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
}
.tm-contact-icon {
  display: inline-block;
  height: 93px;
  width: 93px;
  line-height: 89px;
  font-size: 40px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid #f7a025;
  margin-bottom: 25px;
  color: #f7a025;
  -webkit-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tm-contact-icon {
  line-height: 89px;
  font-size: 40px;
  text-align: center;
  color: #856946;
}
.fa-phone::before {
  content: "\f095";
}
.tm-contact-icon {
  line-height: 89px;
  font-size: 40px;
  text-align: center;
  color: #f7a025;
}
.tm-contact-block h5, .tm-contact-block p a{
  color: #212529;
}

.tm-contact-block h5, .tm-contact-block p {
  color: #212529;
}
.tm-contact-block p{
 text-align: center !important;
}
.text-center {
  text-align: center !important;
}
.mt-402 {
  margin-top: 80px;
}
.tm-contact-formwrapper {
  padding: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1);
  box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.tm-contact-formwrapper h5 {
  margin-bottom: 20px;
  margin-top: -4px;
}
.tm-form-field {
  margin-top: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.tm-form-field {
  margin-top: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
textarea {
  overflow: auto;
  resize: vertical;
}
.form-group {
  margin-bottom: 1rem;
}
.tm-button {
  background-color: #f49f28;
  color: #fff;
  border: 1px solid #f49f28;
  padding: 10px 20px;
  border-radius: 3px;
  transition: .5s ease;
  cursor: pointer;
}




hr{
  margin-top: 40px;
}

@media screen and (max-width:767px){
  .banner-section {
  padding: 33px 0px 10px !important;
}
.banner-section h1 {
  font-size: 26px;
  margin-bottom: 0;
}
.tm-breadcrumb ul li{
  font-size: 14px;
}
.mt-402 {
  margin-top: 0;
}
.contact-us-details-section {
  padding: 30px 0px 25px;
}
footer {
  padding: 35px 0 25px;
}
footer ul li a{
  font-size: 16px;
}
 footer h4{
    margin-bottom: 10px;
    font-size: 23px;
  }
.tm-contact-block{
  min-height: auto;
  padding: 18px 20px 4px;
  margin-bottom: 20px;
}
}