@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
html, body
{
    padding: 0%;
    margin:0;
     font-family: "Poppins", sans-serif;
    overflow-x: clip;
}
.logo
{
  width: 180px;
}
.h-f-f
{
  /*font-family: "Pacifico", cursive;*/
  font-family: "Satisfy", cursive;
}
.tab-content a
{
  text-decoration: none;
  color: #000;
}
#ex1 p
{
  color: #071e23;
}
#ex1 .nav-link
{
  width: 200px;
}
.bg
{
  background-color: #f4f4f4;
  padding: 100px 0;
}
.img_margin
{   
  margin: 0% -25% 0% 0%;
  width: 75%;
}
/* hamburger */
.hambermenu a
{
  text-decoration: none;
  color: #fff;
}
.checkbox {
  display: none;
}
.button {
  position: relative;
  background-color: white;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  position: fixed;
  top: 3vh; 
  right: 5vw; 
  z-index: 2000;
  box-shadow: 0 1rem 3rem black;
  text-align: center; 
  cursor: pointer;
}
.background {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  position: fixed;
  top: 1.5vh; 
  right: 5.5vw; 
  background-image: radial-gradient(#071e23, #071e23);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.hambermenu {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -60vw;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s;
}

.hambermenu .list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.hambermenu .item {
  margin: 1rem;
  font-size: 36px;
}

.hambermenu .link:link,
.hambermenu .link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    white 50%
  );
  background-size: 220%;
  transition: all 0.4s;
}

.hambermenu .link:hover,
.hambermenu .link:active {
  color: lightgreen;
  cursor: pointer;
}

/* functionality */
.checkbox:checked ~ .background {
  transform: scale(80);
}
.checkbox:checked ~ .nav {
  opacity: 1;
  width: 100%;
  right: 0;
}

/* styling hamb ICON */
.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon,
.icon::before,
.icon::after {
  width: 2rem;
  height: 2px;
  background-color: gray;
  display: inline-block;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.icon::before {
  top: -0.5rem;
}
.icon::after {
  top: 0.5rem;
}

.button:hover icon:before {
  top: -1rem;
}
.button:hover icon::after {
  top: 1rem;
}

.checkbox:checked + .button .icon {
  background-color: transparent;
}

.checkbox:checked + .button .icon::before {
  top: 0;
  transform: rotate(135deg);
}
.checkbox:checked + .button .icon::after {
  top: 0;
  transform: rotate(-135deg);
}
/*nav menu start*/
.margin-top
{
  margin-top: 7%;
}

.wrapper{
    background:#071e23;
    position: fixed;
    width: 100%;
    padding: 20px;
    z-index: 9;
    top: 0;
  }
  .wrapper nav{
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
  }
  nav .content{
    display: flex;
    align-items: center;
  }
  nav .content .links{
    margin-left: 80px;
    display: flex;
    margin-bottom: 0;
  }
  .content .logo a{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
  }
  .content .links li{
    list-style: none;
    margin: 0 10px;
  }
  .content .links li a,
  .content .links li label{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .content .links li label{
    display: none;
  }
  .content .links li.nav-item.active
  {
    background-color: #fff;
    color: #000 !important;
    border-radius: 20px;
    /*padding:0px 20px !important;*/
  }
  .nav-item.active a
  {
color: #000 !important;
  }
  .content .links li a:hover,
  .content .links li label:hover{
    background: #fff;
    border-radius: 20px;
    color: #000;
  }
  .wrapper .search-icon,
  .wrapper .menu-icon{
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
  }
  .wrapper .menu-icon{
    display: none;
  }
  .wrapper #show-search:checked ~ .search-icon i::before{
    content: "\f00d";
  }
  
  .wrapper .search-box{
    position: absolute;
    height: 100%;
    max-width: calc(76% - 92px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    right: 70px;
  }
  .wrapper #show-search:checked ~ .search-box{
    opacity: 1;
    pointer-events: auto;
  }
  .search-box input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #000;
    background: #fff;
    padding: 0 100px 0 15px;
    border-radius: 30px;
  }
  .search-box input::placeholder{
    color: #f2f2f2;
  }
  .search-box .go-icon{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 60px;
    background: #071e23;
    border: none;
    outline: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    border-radius: 104px;
  }
  .wrapper input[type="checkbox"]{
    display: none;
  }
  /* Responsive code start */
  
  @media screen and (max-width: 1550px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .content .links{
      margin-left: 30px;
    }
    .content .links li a{
      padding: 8px 13px;
    }
    .wrapper .search-box{
      max-width: calc(70% - 100px);
    }
    .wrapper .search-box input{
      padding: 0 100px 0 15px;
    }
    .margin-top {
      margin-top: 10%;
    }
  }
  @media screen and (max-width:1200px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .content .links{
      margin-left: 30px;
    }
    .content .links li a{
      padding: 8px 10px;
    }
    .wrapper .search-box{
      max-width: calc(50% - 100px);
    }
    .wrapper .search-box input{
      padding: 0 100px 0 15px;
    }
    .margin-top {
      margin-top: 13%;
    }
  }
  @media screen and (max-width: 1154px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 10px;
    }
    nav .content .links{
      margin-left: 0px;
    }
    .content .links li a{
      padding: 8px 5px;
      font-size: 15px;
    }
    .wrapper .search-box{
      max-width: calc(70% - 100px);
    }
    .wrapper .search-box input{
      padding: 0 100px 0 15px;
    }
    .margin-top {
      margin-top: 15%;
    }
  }
  @media screen and (max-width: 900px){
    .wrapper .menu-icon{
      display: block;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .content .links{
      display: block;
      position: fixed;
      background: #071e23;
      height: 100%;
      width: 100%;
      top: 100px;
      left: -100%;
      margin-left: 0;
      max-width: 350px;
      overflow-y: auto;
      padding-bottom: 100px;
      transition: all 0.3s ease;
    }
    nav #show-menu:checked ~ .content .links{
      left: 0%;
    }
    .content .links li{
      margin: 15px 20px;
    }
    .content .links li a,
    .content .links li label{
      line-height: 40px;
      font-size: 20px;
      display: block;
      padding: 8px 18px;
      cursor: pointer;
    }
    .content .links li a.desktop-link{
      display: none;
    }
    .margin-top {
      margin-top: 15%;
    }
    .popupbox .modal-body
    {
      padding: 0px !important;
    }
  }  
  @media screen and (max-width: 400px){
    .wrapper nav{
      padding: 0 10px;
    }
    .content .logo a{
      font-size: 27px;
    }
    .wrapper .search-box{
      max-width: calc(100% - 70px);
    }
    .wrapper .search-box .go-icon{
      width: 30px;
      right: 0;
    }
    .wrapper .search-box input{
      padding-right: 30px;
    }
    .bg-color
    {
      margin-top: 0 !important;
    }
    .popupbox .modal-body
    {
      padding: 0;
    }
    .margin-top {
      margin-top: 25%;
    }
    .bg-color
    {
      margin-bottom: 0px;
    }
  }/*end Nav menu*/

.limit_1:nth-child(n+2)
{
  display: none;
}
.limit_2:nth-child(-n+4)
{
  display: none;
}
.limit_5:nth-child(3n+2)
{
  display: none;
}
.object_fit_550
{
  object-fit:cover;
  height: 550px;
}
a
{
  text-decoration: none;
  color: #000;
}
.line
{
    border-bottom: 2px solid #071e23;
}
.innerpageblog
{
  text-align: left !important;
  line-height: 30px !important;
}
.innerpageblog p, span
{
  line-height: 30px;
  text-align: left;
}
.pagination .page-link
{
    font-size: 20px;
    padding: 5px 20px;
    font-weight: 600;
    color: #071e23;
    border: 1px solid #071e23;
}
.pagination .active a
{
  background-color: #071e23;
  color: #fff;
}
.main_bg
{
  background-size: cover;
  background: linear-gradient(353deg, rgba(255,255,255,1) -16%, rgb(7 31 35 / 94%) 58%);
}
.cat_title
{
    font-size: 150px;
    text-align: center;
    padding: 300px;
    color: #fff;
    font-family: "Satisfy", cursive;

}
form .form-control {
    font-size: 16px;
    margin: 10px 0;
}
.btn_submit
{
  background-color: #071e23;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}
/*footer style*/
footer{
   background-color: #061d22;
    color: #ffffff;
}
footer a
{
    color: #fff;
}