* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --light: #e8e8e8;
    --white: #fff;
    --blue: #005258;
    --red: #ff0000;
    --text-colr: #808080;
    --black: #000;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

.main_body {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.main_container {
    width: 97%;
    margin: 0 auto;
    background-color: var(--white);
}

.main_nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--light);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.logo {
    width: 15%;
}

.logo img {
    width: 100%;
}
.search-form-desktop{
    display: flex;
    width:50%;
}
.search-box-mobile
{
    display: none !important;
}
.location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    border: 1px solid var(--light);
    height: 40px;
    padding: 0 10px;
    border-radius: 3px;
    margin-right:10px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.search-form-desktop input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 15px;
    color: var(--text-colr);
}

.location .fa-location-dot {
    width: 7%;
    color: var(--red);
}

.search {
    width: 60%;
    border: 1px solid var(--light);
    height: 40px;
    padding: 0 10px;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.search input {
    width: 90%;
}

.search .fa-magnifying-glass {
    background-color: var(--red);
    color: var(--white);
    padding: 6px;
    border-radius: 3px;
}

.menu_ul {
    width: 30%;
    text-align: right;
}

.menu_ul li {
    display: inline-block;
    list-style: none;
    margin-left: 10px;
}

.menu_ul li a {
    text-decoration: none;
    color: var(--text-colr);
    text-transform: capitalize;
    font-size: 15px;
}

.menu_ul .fa-solid {
    padding-right: 5px;
}

.menu_ul li a:hover {
    color: var(--red);
}

.login {
    border-right: 1px solid var(--text-colr);
    padding-right: 6px;
}

/* hero section styling start  */

.hero {
    padding: 70px 20px 20px;
}

.row {
    display: flex;
    justify-content: space-around;
}

.col_1 {
    width: 40%;
    position: relative;
}

/* .col_1 img {
  width: 100%;
  height: 100%;
} */
.bg_1 {
    background-color: #0f7dd8;
}

.bg_2 {
    background-color: #a100cf;
}

.bg_3 {
    background-color: #6769d0;
}

.bg_4 {
    background-color: #00ac7d;
}

.col_2 {
    width: 55%;
}

.card_box>div {
    width: 23%;
}

.card_box {
    display: flex;
    justify-content: space-between;
}

.card_img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.card_img img {
    width: 100%;
    height: 100%;
    transition: 0.1s;
}

.card_content {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
}

.card_para {
    margin-top: 10px;
}

.card_img .explore {
    width: auto;
    color: #fff;
    border-radius: 0 5px 5px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 4px 6px 3px 4px;
    position: absolute;
    left: 0;
    bottom: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.5s;
    display: inline-flex;
    z-index: 9;
}

.ex_span {
    width: 0;
    overflow: hidden;
    transition: 0.5s;
}

.card_img:hover .explore .ex_span {
    width: 45px;
}

.card_img:hover img {
    transform: scale(1.05);
}

.card_tit {
    transition: 0.5s;
}

.card_img:hover .card_tit {
    transform: scale(1.1);
}

/* samll card section start  */
.icons_sec {
    padding: 30px;
}

.icons_row {
    display: flex;
    justify-content: space-around;
}

.icons_row2 {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
}

.small_para {
    font-size: 14px;
    margin-top: 10px;
}

.small_card {
    width: 74px;
    height: 74px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small_card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    cursor: pointer;
}

.small_card_box {
    cursor: pointer;
}

/* wedings sectin styling  */
.wed_sec {
    padding: 30px;
}

.wed_row {
    display: flex;
    justify-content: space-around;
}

.wed_row2 {
    display: flex;
    justify-content: space-around;
    margin-top: 27px;
}

.wed_col {
    width: 48%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 25px;
    border-radius: 10px;
}

.wed_inner_row {
    display: flex;
    justify-content: space-between;
}

.wed_box {
    width: 31%;
    text-align: center;
}

.wed_box img {
    width: 100%;
}

.wed_tit {
    padding: 0 8px 15px;
}

.wed_box p {
    font-size: 14px;
    margin-top: 10px;
}

/* footer icons  */
.footer_icons {
    padding: 30px;
    border-top: 1px solid#f6f6f6;
    border-bottom: 1px solid#f6f6f6;
}

.footer_icons_row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer_icons_row>div {
    width: 49%;
}

.footer_left {
    display: flex;
    align-items: center;
}

.icons {
    padding: 10px;
}

.icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 42px;
    transition: 0.5s;
}

.icons a:hover {
    transform: translateY(-10px);
}

.icons a:nth-child(1) {
    background-color: #3b5998;
}

.icons a:nth-child(2) {
    background-color: #ff0000;
}

.icons a:nth-child(3) {
    background-color: #e1306c;
}

.icons a:nth-child(4) {
    background-color: #0a66c2;
}

.icons a:nth-child(5) {
    background-color: #1da1f2;
}

.footer_right {
    display: flex;
    justify-content: flex-end;
}

.footer_right img {
    width: 130px;
    height: 40px;
}

/* main footer section  */
footer {
    padding: 30px;
}

.footer_row {
    display: flex;
    justify-content: space-around;
}

.footer_col {
    width: 24%;
}

.link_box {
    display: flex;
    justify-content: space-around;
}

.link_box ul {
    margin: 0;
    padding: 0;
}

.link_box ul li {
    list-style: none;
}

.link_box ul li a {
    display: inline-block;
    text-decoration: none;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--text-colr);
}

.link_box ul li a:hover {
    text-decoration: underline;
    color: var(--blue);
}

.without_tit {
    padding-top: 32px;
}

.foot_tit {
    margin: 0 0 15px 25px;
    color: var(--black);
}

/* slider  */

.mySlides {
    display: none;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    height: 100%;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}



/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px;
    }
}

.dot_box {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* slider */

.mob_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid var(--light);
}

.mob_header img {
    width: 120px;
}

.fa-bars {
    /* position: fixed;
  top: 10px;
  left: 10px; */
    font-size: 25px;
}

@media (max-width: 1266px) {
    .menu_ul li:first-child {
        display: none;
    }
}

@media (min-width: 992px) {
    .main_nav .fa-xmark {
        display: none;
    }
}
.quicknotes
	{
		display:none;
		
	}
@media (max-width: 767px) {
	
    .main_container {
        width: 100%;
    }
	
	.quicknotes
	{
		 padding: 10px 10px 10px;
		display:block !important;
		width:100%;
	}
	.card_content {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #fff;
	z-index:99999;
}
	.card_tit {
		transition: 0.5s;
		font-size: 14px;
	}
	.card_para {
    margin-top: 12px;
    font-size: 12px;
}
	.card_img .explore {
		width: auto;
		color: #fff;
		border-radius: 0 5px 5px 0;
		box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
		padding: 4px 6px 3px 4px;
		position: absolute;
		left: 0;
		bottom: 5px;
		font-size: 10px;
		text-decoration: none;
		transition: 0.5s;
		display: inline-flex;
		z-index: 9;
	}

    .main_nav {
        width: 0;
        height: 100vh;
        right: 0;
        background: #f2fcff;
        flex-direction: column;
        justify-content: start;
        overflow: hidden;
        transition: 0.1s;
        padding: 0;
    }

  

    .main_nav .fa-xmark {
        position: absolute;
        top: 30p;
        right: 20px;
        font-size: 25px;
    }

    .menu_ul li:first-child {
        display: block;
    }
    .search-form-desktop{
      
        display: none !important;
    }
    .search-box-mobile
    {
        margin: 20px 10px;
        padding: 20px;
        display: block !important;
    }
    .location-mob {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border: 1px solid var(--light);
        height: 40px;
        padding: 0 10px;
        border-radius: 3px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        margin:10px 0px;
    }
    .search-box-mobile input {
        width: 100% ;
        height: 100%;
        border: 0;
        outline: 0;
        font-size: 15px;
        color: var(--text-colr);
    }
    
    .search-mob {
        width: 100%;
        display: flex;
        border: 1px solid var(--light);
        height: 40px;
        padding: 0 10px;
        border-radius: 3px;
        justify-content: space-between;
        align-items: center;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    }
 
    .location-mob .fa-location-dot {
       
        color: var(--red);
    }
    

    
    .search-mob input {
        width: 100%;
    }
    
    .search-mob .fa-magnifying-glass {
        background-color: var(--red);
        color: var(--white);
        padding: 6px;
       
        border-radius: 3px;
    }

    .logo,
    .menu_ul {
        width: 100%;
        text-align: left;
    }

    .menu_ul li {
        display: block;
        margin: 10px 0;
    }

    .logo img {
        width: 200px;
    }

    .col_2 {
        display: none;
    }
	.col_1 {
		width: 100%;
		position: relative;
	}
.hero {
    padding: 10px 10px 10px;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 66%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
}
    .icons_row {
        justify-content: start;
        flex-wrap: wrap;
        padding-left: 12px;
    }

    .icons_row2 {
        display: none;
    }

    .small_card_box {
        margin: 10px;
    }

    .wed_row {
        flex-direction: column;
    }

    .wed_col {
        width: 100%;
    }

    .wed_col:first-child {
        margin-bottom: 20px;
    }

    .wed_row2 {
        display: none;
    }

    .footer_row {
        flex-direction: column;
    }

    .footer_col {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer_col:nth-child(3),
    .footer_col:nth-child(4) {
        display: none;
    }

    .foot_tit {
        margin: 0 0 0 20px;
    }
}

@media (max-width: 600px) {
    .small_para {
        font-size: 10px;
        margin-top: 10px;
        word-wrap: break-word;
    }
    .small_card_box {
        margin: 5px;
    }
    .small_card {
        width: 50px;
        height: 50px;
    }
    .small_card img{
        width: 40px;
        height: 40px;
    }
    .wed_inner_row {
    display: flex;
    justify-content: space-between;
		}

		.wed_box {
			width: 31%;
			text-align: center;
		}

		.wed_box img {
			width: 100%;
		}

		.wed_tit {
			padding: 0 8px 15px;
		}
    .wed_box p {
        margin-top: 5px;	
    font-size: 10px;
	word-wrap: break-word;
    }

    .footer_icons_row {
        flex-direction: column;
    }

    .footer_icons_row>div {
        width: 100%;
    }

    .footer_left {
		margin-top:30px;
        flex-direction: column;
    }

    .footer_right {
		margin-top:20px;
    justify-content: center;
    }
}
.ttm-page-title-about {
    position: relative;
    background-image: url(../images/login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	width:100%;
}
.sizes-tt{
    display: block;
    padding-top: 50px;
    padding-bottom: 25px;
    z-index: 11;
}
.title-box{
    padding-left:1.5%;
}

.title-box .page-title-heading h1 {
    text-transform: capitalize;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
}
.breadcrumb-wrapper span {
    color: white;
    font-size: 8px;
}
.breadcrumb-wrapper span a{
    color: white;
    font-size: 8px;
}

.p-container {
 	padding:0 10px 10px 10px; 
}
.p-container:after {
 	clear:both;
  display:table;
  content:"";
}
.submitbox{
 	padding:5px 20px;
  border:1px solid rgba(0, 122, 132,0.5);
  text-shadow:0 -1px 0 rgba(0, 122, 132,0.4);
  box-shadow:
inset 0 1px 0 rgba(0, 122, 132,0.3),
inset 0 10px 10px rgba(0, 122, 132,0.1);
  border-radius:0.3em;
  background:#007a84;
  color:white;
  float:right;
  font-weight:bold;
  cursor:pointer;
  font-size:13px;
}
.submitbox:hover {
  box-shadow:
    inset 0 1px 0 rgba(0, 122, 132,0.6),
    inset 0 -10px 10px rgba(0, 122, 132,0.4);
}

/*free listing*/
.listing{
    background: -webkit-linear-gradient(left, #00717C, #00c6ff);
  
    padding: 3%;
}
.listing-left{
    text-align: center;
    color: #fff;
    margin-top: 4%;
}

.listing-right{
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
}

.listing-left p{
    font-weight: lighter;
    padding: 12%;
    margin-top: -9%;
}
 .listing-form{
    padding: 5%;
    margin-top: 2%;
}
.listing-left .loginbtn{
    border-radius: 1.5rem;
    padding: 2%;
    width: 60%;
    background: #fff;
	border:solid 1px #fff;
    font-weight: bold;
    color: #383d41;
    margin-top: 30%;
    margin-bottom: 3%;
    cursor: pointer;
}
.listing-right .btnlisting{
    float: right;
    margin-top: 2%;
    background: #00717C;
    color: #fff;
    font-weight: 600;
    width: 100%;
    border:none;
    padding:10px 20px;
    border-radius: 1.5rem;
}
.listing-right .form-control{
   height:40px;
   border-radius: 10px;
   margin-bottom: 20px;
}
.listing-right .form-group{
margin-bottom:10px;
}

.listing-heading{
    text-align: center;
    margin-top: 30px;
    /* margin-bottom: -15%; */
    color: #495057;
}
@media(max-width:480px)
{
.listing-left .loginbtn {
    border-radius: 1.5rem;
    padding: 2%;
    width: 60%;
    background: #fff;
    border: solid 1px #fff;
    font-weight: bold;
    color: #383d41;
    margin-top: -7%;
    margin-bottom: 3%;
    cursor: pointer;
}
}

/*category lists*/
.listing-sidebar-from{
    background-color:#f8f9f9;
    padding:15px;
    }
    .listing-sidebar-from .subbtn
    { 
       color:#fff;
       display: block;
       width: 100%;
       border: none;
       background-color: #00646c;
       padding: 5px 10px;
       font-size: 16px;
       cursor: pointer;
       text-align: center;
        }
     .listing-sidebar-hotels{
    background-color:#fff;
    padding:15px;
    }
    
     .sidebar
     {
     margin-top:10px;
     
     }
 .sidebar ul.hotel-links li{
     padding: 3px 0;
     -webkit-transition: .5s all ease;
     -moz-transition: .5s all ease;
     transition: .5s all ease;
     
 }
 .sidebar ul.hotel-links li:hover{
     padding: 3px 0;
     margin-left:5px;
     font-weight:700;
 }
 .sidebar ul.hotel-links li a {
     margin-right: 5px;
     color:#5b5757;
 text-decoration:none;	
 }
 .sidebar ul.hotel-links li a i{
     margin-right: 5px;
     color:#5b5757;	
 }
 .sidebar ul.hotel-links li:hover a i {
     font-weight: 700;
 }
 .sidebar-title h4
 {
 font-size:20px;
 font-weight:550;
 color:#111;
 }
 .sidebar-title p
 {
 font-size:16px;
 font-weight:500;
 color:#111;
 }
     .display {
       display: flex;
       width: 100%;
     }
  .category-box{
  width:100%;
 } 
 .img-box
 {
 width:100%;
 overflow:hidden;
 }
 .category-img img
 {
 width:100%;
 height:265px;
 object-fit: cover;
 
 
 }
 .category-img img:hover {
     transform: scale(1.4);
     transition: 0.9s;
 }
  .category-img-title
 {
   
   bottom: 0px;
   color: white;
   background-color:#00646C;
   padding:5px 10px;  
  width:100%;
 } 
 .category-content
 {
 width:100%;
 }
 .category-content h4
 {
 font-size:22px;
 font-weight:500;
 }
 .category-content p
 {
 margin-top:10px;
 font-size:16px;
 font-weight: 400;
 color:#111;
 }
 .category-btn
 {
     border-radius: 2px;
     border: 1px solid#eaeaea;
     padding:1px 8px;
     margin: 0 10px 5px 0;
     -moz-transition: all.8s;
     -o-transition: all.8s;
     transition: all.8s;
     color: #111;
     background: #f7f7f7;
 }


 section {
    padding: 20px 50px;
  }
.blogs{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 25px;
    border-radius: 10px;
}
.white {
    color: #fff !important;
  }
  .mt {
    float: left;
    margin-top: -20px;
    padding-top: 20px;
    

  }
  .bg-blue-ui {
    background-color: #00717C !important;
  }
  figure img {
    width: 100%;
  }
  
 .item-box-blog {
    border: 1px solid #dadada;
    text-align: center;
    z-index: 4;
    padding: 20px;
    background-color: #fff;
  }
  
  .item-box-blog-image {
    position: relative;
    overflow: hidden;
  }
  
  .item-box-blog-image figure img {
    width: 100%;
    height: auto;
  }
  
  .item-box-blog-date {
    position: absolute;
    z-index: 5;
    padding: 4px 20px;
    top: 1px;
    right: 1px;
    background-color:#00717C !important;
  }
  
  .item-box-blog-date span {
    color: #fff;
    display: block;
    text-align: center;
    line-height: 1.2;
  }
  
  .item-box-blog-date span.mon {
    font-size: 18px;
  }
  
  .item-box-blog-date span.day {
    font-size: 16px;
  }
  
  .item-box-blog-body {
    padding: 10px;
    
  }
  
  .item-heading-blog a h5 {
    margin: 0;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .item-box-blog-heading a {
    text-decoration: none;
  }
  
  .item-box-blog-data p {
    font-size: 13px;
  }
  
  .item-box-blog-data p i {
    font-size: 12px;
  }
  
  .item-box-blog-text {
    max-height: 100px;
    overflow: hidden;
  }
  
  .mt-10 {
    float: left;
    margin-top: -10px;
    padding-top: 10px;
  }
  
  .btn.bg-blue-ui.white.read {
    cursor: pointer;
    padding: 4px 20px;
    float: left;
    margin-top: 10px;
  }
  
  .btn.bg-blue-ui.white.read:hover {
    box-shadow: 0px 5px 15px inset #00717C;
  }
  section .section-title {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .zoom {
    transition: all 0.9s ease-in-out 0s;
    
  }
  .zoom:hover {
    transform: scale(1.2);
  }

  #btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
	z-index:1;
}
  
.testimonial{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 30px;
    border-radius: 10px;
}
  /* start testimonails */


  .testim-box {
    z-index: 2;
    background-color: #F5F5F5;
    padding: 20px 30px;
    border: 1px solid #dadada;
  }
  
  .owl-carousel .owl-item .testim-box .testim-box-content img {
    top: 10px;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    float: left;
    margin-right: 30px;
    position: relative;
  }
  

  .testim-box > p {
    color: #000;
    font-style: italic;
    padding-bottom: 20px;
  }
  .testim-box-content p {
    color: #008793;
    font-size: 14px;
  }
  .testim-box-content h3 {
    color: #000 !important;
    font-size: 22px;
  }
  
  @media(max-width:767px)
  {
     .icons_sec {
         padding: 10px 0px;
     }
     section {
        padding: 20px 10px;
      }
      .blogs{
        padding: 10px;
    }
    .testimonial{
        padding: 10px;
    }
    .wed_sec {
        padding: 0px;
    }
	#btn-back-to-top {
    position: fixed;
	z-index:1;
    bottom: 60px;
    right: 20px;
    padding: 1px 10px;
    display: none;
	
}
  }
  
   .footer_nav {
        background-color: #ffffff;
        padding: 5px 0px 0px 0px;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999999999;
    }

    .footer_nav ul {
        display: flex;
        list-style: none;
        justify-content: space-around;
        padding-left: 0;
        padding-top: 5px;
        margin-bottom: 0px;
        border-top: 1px solid;
    }
    .footer_nav ul li a{
        font-size: 14px;
        font-weight: 600;
        color: #000;
		text-decoration:none;
    }
  

    @media only screen and (min-width: 768px) {
        .footer-nav-display {
            display: none;
        }
    }
	.bannerimg{
		width:100%;
		padding:20px 15px;
	}
	.bannerimg img{
		width:100%;
	}
	