/* Global CSS Start*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a:focus {
    outline: 0 !important;
    outline-offset: 0 !important;
  }

  a {
    text-decoration: none;
  }
a:focus {
    outline: 0 !important;
    outline-offset: 0 !important;
}
button:focus, input:focus, select:focus, textarea:focus {
    outline: 0 !important;
    outline-offset: 0 !important;
}
button, input, select, textarea {
    font-family: 'Raleway';
  }

body{
  margin: 0;
  font-family: 'Raleway';
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  color: #000;
  line-height: 28px;
  position: relative;
}
.container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.mob-menu{
  display: none;
}
nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding:0px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
}
.nav-bar{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0;
  list-style: none;
  gap: 15px;
}
.nav-bar li a{
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.nav-bar li a::before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background-color: #85EE00;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 3px;
}
.nav-bar li a:hover::before{
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.nav-bar li:last-child a{
  background: #85EE00;
  border-radius: 3px;
}
header{
  /*position: fixed;*/
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;

}
.logo svg{
  width: 150px;
}
.dropdown {
      position: relative;
      width: 100%;
      cursor: pointer;
    }

    .dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #fff;
      font-size: 16px;
      width: 100%;
    }

    .dropdown-toggle img {
      width: 20px;
      margin-right: 10px;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 110%;
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 5px;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .dropdown.open .dropdown-menu {
      display: block;
    }

    .search-input {
      width: 100%;
      padding: 10px;
      box-sizing: border-box;
      border: none;
      border-bottom: 1px solid #ddd;
      font-size: 16px;
    }

    .dropdown-option {
      padding: 10px 15px;
      cursor: pointer;
    }

    .dropdown-option:hover {
      background-color: #85EE00;
    }
    .gg-chevron-down {
      box-sizing: border-box;
      position: relative;
      display: block;
      transform: scale(var(--ggs, 1));
      width: 22px;
      height: 22px;
      border: 2px solid transparent;
      border-radius: 100px;
    }
    .gg-chevron-down::after {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      width: 10px;
      height: 10px;
      border-bottom: 2px solid;
      border-right: 2px solid;
      transform: rotate(45deg);
      left: 4px;
      top: 2px;
    }
    .dropdown-menu-inner{
      max-height: 200px;
      overflow-y: scroll;
      overflow-x: hidden;
    }
  .banner-form form select {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #fff;
      font-size: 16px;
      width: 100%;
    }
    .banner-form form button {
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      background-color: #85EE00;
      color: #000;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
    }
    .breadscrumbs {
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 0 0 20px 0; 
      background: #85EE00;
    }
    .breadscrumbs ul{
      padding: 0;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 15px;
      justify-content: flex-start;
    }
    .breadscrumbs a {
      color: #000;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
    }
  .breadscrumbs ul li{
      position: relative;
  }
.breadscrumbs ul li::after {
      content: '/';
      position: absolute;
      right: -10px;
      color: #000;
      font-size: 16px;
      font-weight: 500;
      top: 2px;
    }
    .breadscrumbs a:hover {
      text-decoration: underline;
    }


.sec-padding {
  padding: 0px 0 40px 0;
}
.sec-padding-40 {
  padding: 40px 0;
}
.sec-padding-10 {
  padding: 10px 0;
}
.text-area-box {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.text-area-box h2, .text-area-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
.text-area-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.text-area-box p a {
  color: #85EE00;
  text-decoration: underline;
}
footer {
  background-color: #f8f8f8;
  padding: 40px 0 0 0;
  font-size: 14px;
  color: #666;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
footer ul li a{
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.inform p{
  margin: 0;
  font-size: 12px;
  color: #666;
}
.cp-ryt {
  background: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 15px;
}
.cp-ryt p{
  font-size: 14px;
  margin: 0;
}
.h1_heading {
    margin-top: 20px !important;
}
.b-pagination-outer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}
#border-pagination {
  margin: 0 auto;
  padding: 0;
  text-align: center
}
#border-pagination li {
  display: inline;

}
#border-pagination li a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  border: 1px solid #ddd;
  float: left;

}
#border-pagination li a {
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s
}
#border-pagination li a.active {
  background-color: #4caf50;
  color: #fff;
}
#border-pagination li a:hover:not(.active) {
  background: #ddd;
}


/*Kishor Start*/
    .m-d.expand-list{
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .m-d.expand-list > li{
        list-style-type: none;
        padding:  0;
        /*border-bottom: 1px solid #212121;*/
        position: relative;
/*         max-width: 80%; */
    }
    .m-d label[class^="tab"]:hover{
        cursor: pointer;
    }
    .m-d input{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .m-d input[class^="tab"]{
        width: 100%;
        height: 40px;
        position: absolute;
        left: 0;
        top: 0; 
    }
    .m-d input[class^="tab"]:hover{
      cursor: pointer;
    }
    .m-d label[class^="tab"]{
        font-weight: bold;
            font-size: 22px;
    }
    .m-d .content{
        height: auto;
        max-height: 0;
        overflow: hidden;
        transform: translateY(20px);
        transition: all 180ms ease-in-out 0ms; 
    }
    
    .m-d li[data-md-content="2000"] input[class^="tab"]:checked ~ .content{
        max-height: 2000px;
        transition: all 350ms ease-in-out 0ms;
        padding: 10px;
    }
    .m-d li[data-md-content=""] input[class^="tab"]:checked ~ .content{
        max-height: 2000px;
        transition: all 250ms ease-in-out 0ms;
        padding: 10px;
    }
    .m-d input[class^="tab"]:checked ~ .content{
        margin-bottom: 20px;
    }
    
    .m-d .open-close-icon{
        display: inline-block;
        position: absolute;
        right: 20px;
        transform: translatey(2px);
    }
    .m-d .open-close-icon i{
        position: absolute;
        left: 0;
    }
    .m-d .open-close-icon .fa-minus{
        transform:rotate(-90deg);
        transition: transform 150ms ease-in-out 0ms;
    }
    .m-d input[class^="tab"]:checked ~ .open-close-icon .fa-minus{
        transform: rotate(0deg);
        transition: transform 150ms ease-in-out 0ms;
    }
    .m-d .open-close-icon .fa-plus{
        opacity: 1;
        transform:rotate(-90deg);
        transition: opacity 50ms linear 0ms, transform 150ms ease-in-out 0ms;
    }
    .m-d input[class^="tab"]:checked ~ .open-close-icon .fa-plus{
        opacity: 0;
        transform: rotate(0deg);
        transition: opacity 50ms linear 0ms, transform 150ms ease-in-out 0ms; 
    }


.age-modal {
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / .5);
}
.m-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgb(0 0 0 / .2);
    border-radius: 8px;
}
.m-content h2 {
    margin-top: 0;
    color: #c4392d;
    font-size: 22px;
}   

.m-content h2 {
    margin-top: 0;
    color: #c4392d;
    font-size: 22px;
}
.m-content p {
    margin: 20px 0;
}
#not-agree {
    color: #000;
    font-size: 17px;
}
.m-content button {
    background-color: green;
    color: #fff;
    border: none;
    padding: 7px 55px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 4000px) {
    .mobile-show{
        display: none;
    }
}
@media only screen and (min-width: 1px) and (max-width: 767px) {
    .pc-show{
        display: none;
    }
}
@media(max-width:1199px){
      .container {
        width: 970px;
    }
}
@media(max-width:991px){
      .container {
        width: 100%;
    }
}
@media(max-width:767px){
    .escorts-lists h3 {
    text-align: center;
}
      .container {
        width: 100%;
    }
    .mob-menu{
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      display: block;
      z-index: 1000;
      background: #87e410;
    }
    .mob-menu-cont{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 2px;
      
    }
    .mob-menu-ico a, .mob-menu-ico span {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #000;
      text-decoration: none;
      font-size: 14px;
      padding: 5px 15px;
      background: #85EE00;
      height: 100%;
    }
    .mob-menu-ico{
      height: 100%;
    }
    .nav-bar{
      position: fixed;
      right: 0;
      bottom: -100%;
      background: #fff;
      visibility: hidden;
      opacity: 0;
      padding:0;
      transition: all0.3s ease-in-out;
      display: block;
    }
    .nav-bar.active{
      padding: 15px;
      bottom: 5%;
      visibility: visible;
      opacity: 1;
      transition: all0.3s ease-in-out;
      border-top: 5px solid #85EE00;
    }
    nav{
      padding: 5px;
      justify-content: center;
    }
    
    .mob-menu-ico a svg{
      width: 30px;
    }
    .phone-ico a svg{
      width: 25px !important;
    } 
    /*footer{
      padding-bottom: 50px;
    }*/
    .contact-btn {
        display: none;
    }
    .thumbs img {
        width: 50% !important;
        margin: 0 auto;
    }

  }
    @media(max-width:499px){
      .sec-padding {
        padding: 30px 0;
      }
  }
  /* Base alert styles */
.alert {
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 8px;
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Success alert */
.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

/* Danger alert */
.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Close button */
.alert .close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

.alert strong {
  font-weight: bold;
}

