/********** Template CSS **********/




	html,
body {
  overflow-x: hidden;
}

		
		.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #294eff;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
		
#suggestions 
{
   
    top: 0px;
    left: 0;
    width: 100%;
    border: 1px solid green;
    border-top: none;
    border-radius: 0 0 00px 00px;  
    max-height: 250px;
    overflow-y: auto;
	display: none;
	padding-top:10px;
	text-align:left;
	background-color:white;
}



#suggestions div 
{
    padding: 5px 10px;
    cursor: pointer;
    border-bottom: 1px solid gray;
	
}
#suggestions .active 
{
    background-color: #e4623aad;
    color: #fff;
}
#suggestions div:hover {
    background-color: #f7efdd;
    color: black;
	border-radius: 10px 10px 10px 10px;
	padding: 5px 10px;
	
}
#suggestions div:last-child 
{
    border-bottom: none;
}
	
        .filter-section {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

@keyframes popIn {
    0% { transform: scale(0.5) rotate(-45deg); opacity: 0; }
    100% { transform: scale(1) rotate(-45deg); opacity: 1; }
}
        .card-tour 
		{
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
			 position: relative;
    overflow: hidden;
    border-radius: 12px;
			height: 100%; /* Important for Flexbox inside */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
   
  
			position: relative;
 
  border-radius: 12px;
        }
		
		
.card-tour img {
   width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
		

.card-tour .card-body {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-tour .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
		
		

.card-tour .card-text {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
    overflow: hidden;
}
		
        .card-tour:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .card-tour img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .badge {
            font-size: 0.8rem;
            padding: 6px 10px;
            border-radius: 20px;
        }
        .filter-section label {
            font-weight: 600;
            margin-top: 10px;
        }
        .btn-apply {
            background: linear-gradient(to right, #ff9b00, #ff6e00);
            color: white;
            border: none;
        }
        .btn-apply:hover {
            background: linear-gradient(to right, #0056b3, #009ec3);
        }
        .section-title1 {
            font-weight: bold;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
		
		.dot-loader {
  display: inline-block;
}
.dot-loader span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-color: #0d6efd;
  border-radius: 50%;
  animation: dot-blink 1.4s infinite both;
}
.dot-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.dot-loader span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dot-blink {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
		
		
		@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-card {
    opacity: 0;
    animation: slideFadeIn 0.6s ease-out forwards;
}
		

.heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.tour-card {

  background:#dedede75;           /* white background */
  border: 1px solid #ddd;           /* light border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
	
}

.tour-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
	.img-wrap {
  position: relative;
}
	.package-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e91e63;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tour-info {
  padding: 15px;
}

.tour-info h2 {
  margin: 0 0 10px;
  font-size: 1.2em;
  color: #333;
}

.location {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.desc {
  font-size: 0.95em;
  color: #555;
  height: 60px;
  overflow: hidden;
}

.btnn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
}

.btnn:hover {
  background: #0056b3;
}

	
    .hero {
      background: linear-gradient(to right, #0d6efd, #0dcaf0);
      color: white;
      padding: 60px 0;
      text-align: center;
    }
   

	
	
    .icon-box {
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      text-align: center;
      transition: 0.3s;
    }
    .icon-box:hover {
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      transform: scale(1.05);
    }
    .icon-box i {
      font-size: 30px;
      margin-bottom: 10px;
      color: #0d6efd;
    }
    .achievement {
      background-color: #f8f9fa;
      padding: 40px;
      border-radius: 10px;
    }
	
	.nav-tabs {
      border: none;
      justify-content: center;
    }
    .nav-tabs .nav-link {
      border: 1px solid gray;
      color: #6c757d;
      font-weight: 500;
      border-radius: 1.5rem;
      padding: 1rem 1.5rem;
		margin-right:05px;
      transition: all 0.3s ease;
    }
    .nav-tabs .nav-link.active {
      background-color: #93b63e;
      color: #fff;
      box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
    }
    .nav-tabs .nav-link:hover {
      color: #0d6efd;
    }
    .tab-content {
      padding: 2rem;
      border: 0px solid #93b63e;
     
	  margin-top:10px;
      background: #fff;
      border-radius: 0 0 1rem 1rem;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

  
	
	
	.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the text */
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  padding: 10px;
  background: rgba(0, 0, 0, 0.4); /* Optional background for readability */
  border-radius: 10px;
}
	
	.nav-tabs {
      border: none;
      justify-content: center;
    }
    .nav-tabs .nav-link {
      border: 1px solid gray;
      color: #6c757d;
      font-weight: 500;
      border-radius: 1.5rem;
      padding: 1rem 1rem;
		margin-right:05px;
      transition: all 0.3s ease;
    }
    .nav-tabs .nav-link.active {
      background-color: #93b63e;
      color: #fff;
      box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
    }
    .nav-tabs .nav-link:hover {
      color: #0d6efd;
    }
    .tab-content {
      padding: 2rem;
      border: 0px solid #93b63e;
     
	  margin-top:10px;
      background: #fff;
      border-radius: 0 0 1rem 1rem;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }
	
	
.multiline-ellipsis 
	{
  display: -webkit-box;
  -webkit-line-clamp: 3;        /* show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
	
.input-container {
    position: relative;
    width: 200px;
}

#search-box 
{
    width: 100%;
    padding: 10px;
    border-radius: 4px 4px 2px 2px;
    border: 0px solid red;
    border-bottom: none;
	z-index:1;
	
}

#suggestions 
{
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    border: 0px solid red;
    border-top: none;
    border-radius: 0 0 2px 2px;  
    max-height: 250px;
    overflow-y: auto;
	display: none;
	padding-top:10px;
	text-align:left;
	background-color:white;
}



#suggestions div 
{
    padding: 5px 10px;
    cursor: pointer;
    border-bottom: 1px solid #dfd0d0;
	
}
#suggestions .active 
{
    background-color: #e4623aad;
    color: #fff;
}
#suggestions div:hover {
    background-color: #f7efdd;
    color: black;
	border-radius: 10px 10px 10px 10px;
	padding: 5px 10px;
	
}
#suggestions div:last-child 
{
    border-bottom: none;
}
	

.categoryclass {

   
    padding-left: 10px 10px;
  
    margin-top: -130px;
  	
 
}
	.carousel-item{
		transition: transform 1.2s ease-in-out;
	}

	
	.carousel-item > .row {
      display: flex;
	
    }
   .carousel-item .col {
  flex: 1 0 15%;
  max-width: 20%;
	   background: #ffffff;
	   margin-right:15px;
	    border-radius: 10px;
	   padding-top:10px;
	 
   
}
	.carousel-item .col:hover {
  transform: translateY(5px) scale(1.05);
    box-shadow: 6px 6px 6px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
		
		
   
}
    .carousel-inner {
      padding-left: 60px;
		      padding-right: 60px;
		
    }
    .carousel-item img {
      width: 100%;
      border-radius: 10px;
		      transition: transform 0.2s ease;
     

    }
	
 @media (max-width: 991px) 
	 {
		 
		 
	.somespace 
	{
    width: 100%;
    padding-right: 15px;
    padding-left:15px;
    margin-right: auto;
    margin-left: auto;
}
		.carousel-inner {
      padding-left: 100px;
		      padding-right: 60px;
		
    }
		 .carousel-item .col {
    flex: 1 0 40%;
    max-width: 40%;
			   margin-right:20px;
	    border-radius: 10px;
	   padding-top:10px;
  }
		 
	}





 .section-title1 {
		position: relative;
      border-left: 0px solid #0d6efd;
      padding-left: 8px;
      margin-bottom: 0px;
	  margin-top: 10px;
     
     
		
    }
	
	.section-title1 p{
		display: inline-block;
		font-weight: 600;
	   font-size:22px;
		margin-bottom:0px;
		margin-top:0px;
	}
	
	.section-title1 p::after {
		 display: inline-block;   
  content: '';
  position: relative;
  bottom: 8px;
  left: 0px;
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, #0d6efd 10%, #ff5521 50%, #ffffff 90%, transparent 100%);
  border-radius: 5px;
  filter: blur(1px);
  opacity: 0.8;
  transform: rotate(-1deg);
  z-index: 001;
}
	
	.section-title1 i {
      color :#eb6520;
	bottom: 0px;
		 position: relative;
		
    }

.masked1 {
      width: 100%;
      height: 100%;
    
      -webkit-mask-image: url('https://swagatam.travel/backend/uploads/mask1.svg');
      -webkit-mask-repeat: no-repeat;    
      -webkit-mask-position: center center;    
      -webkit-mask-size: contain;

    }

.masked2 {
      width: 100%;
      height: 100%;
    
      -webkit-mask-image: url('https://swagatam.travel/backend/uploads/mask2.webp');
      -webkit-mask-repeat: no-repeat;    
      -webkit-mask-position: center center;    
      -webkit-mask-size: contain;

    }
.masked3 {
      width: 100%;
      height: 100%;
    
      -webkit-mask-image: url('https://swagatam.travel/backend/uploads/mask11.png');
      -webkit-mask-repeat: no-repeat;    
     
      -webkit-mask-size: contain;

    }

:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

	.content-section {
      background: #ffffff;
	  background-image:url('/img/home2-about-bg-vector.svg');background-size: cover;background-position: center;
      padding: 30px 20px;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
      margin-top: -80px;
      margin-bottom: 60px;
    }

.content-section1 {
      background: #ffffff;
	  background-image:url('/img/home2-about-bg-vector.svg');background-size: cover;background-position: center;
      padding: 20px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
      margin-top: -10px;
      margin-bottom: 10px;
    }

	.mainheading 
	{
			background:linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0,0.7) ),url('/backend/uploads/52d870bbd962a_thumb900.jpg');
			background-position: center;
			background-repeat:no-repeat;
			background-size:cover;
			background-blend-mode: overlay; /* Try multiply, screen, etc. */
			background-color:#f7f7f7;
	}
	
 @media (max-width: 991px) 
	 {
		 
		 
	.somespace 
	{
    width: 100%;
    padding-right: 15px;
    padding-left:15px;
    margin-right: auto;
    margin-left: auto;
}
		 
		 
.masked1 {
      width: 0%;
      height: 0%;
    
      -webkit-mask-image: url('https://swagatam.travel/backend/uploads/mask1.svg');
      -webkit-mask-repeat: no-repeat;    
      -webkit-mask-position: center center;    
      -webkit-mask-size: contain;
mask: none;
    }

.masked2 {
      width: 100%;
      height: 100%;
    
      -webkit-mask-image: url('https://swagatam.travel/backend/uploads/mask2.webp');
      -webkit-mask-repeat: no-repeat;    
      -webkit-mask-position: center center;    
      -webkit-mask-size: contain;
	mask: none;

    }
.masked3 {
      width: 100%;
      height: 100%;
    
      -webkit-mask-image: url('https://swagatam.travel/backend/uploads/mask11.png');
      -webkit-mask-repeat: no-repeat;    
      -webkit-mask-position: center center;    
      -webkit-mask-size: contain;
mask: none;
    }


		 
	}



.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 5px;
    bottom: 15px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
	
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

 /***   .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    } */

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .4), rgba(20, 20, 31, .4));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
	height:300px;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
	text-align:center;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, box-shadow;
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
  /***  transform: scale(1.1); ***/
}

.package-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
