/*  default css  */

body,
ul,
li{
	margin: 0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
	color: #fff;
	transition: 0.3s all;
}
a,h1,h2,h3,h4,h5,h6,div,body,input,lable,p{
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
}

img {
    max-width: 100%;
}
.container{
	max-width: 1320px;
	padding: 0 15px;
	display: block;
	margin: 0 auto;
}
/*    Header Css   */
.min-header{
	background: #000;
}
.logo img{
	max-width: 130px;
}
.header-div {
	padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.min-menu ul {
    display: flex;
    align-items: center;
    gap: 38px;
}
.min-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.72px;
}
.min-menu ul li a:hover {
    color: #96bf48;
}
.header-icon.mobile-header-ion {
    display: none;
}
.mobile-menu-iccon {
    display: none;
    cursor: pointer;
}
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
/*  tabbing section css   */
section.help-page-info .title h2 {
    font-size: 40px;
    text-align: center;
    padding: 40px 0;
}
.tabs {
    display: flex;
    justify-content: space-between;
}
ul.tabs-nav {
    width: 25%;
}
.tabs-stage {
    width: 70%;
}
ul.tabs-nav li a {
    color: #2f2f2f;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 0;
}
ul.tabs-nav li {
    padding: 15px 0;
    border-bottom: 1px solid #2f2f2f;
}
ul.tabs-nav li a span {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 20px;
}
.help-details {
    margin: 30px 0;
}

.help-details .tow-box {
    display: flex;
    gap: 20px;
    margin: 0 0 30px 0;
}

.help-details .left-details {
    width: 50%;
}

.help-details .right-side-image {
    width: 50%;
}

.help-details p {
    margin: 0 0 15px 0;
    font-size: 16px;
}
.other-details ul li {
    margin: 5px 0;
}
.other-details{
	margin: 0 0 30px;
}
.note-text{
	color: red;
}
.tab-detial img {
    margin: 10px 0;
}
@media screen and (max-width:1025px){
	.help-details .tow-box {
	    flex-direction: column;
	}
	.help-details .left-details {
	    width: 100%;
	}
	.help-details .right-side-image {
	    width: 100%;
	}
	ul.tabs-nav {
	    width: 30%;
	}
	.tabs-stage {
	    width: 65%;
	}
} 

@media screen and (max-width: 768px){
	.header-icon.desktop-header-ion {
	    display: none;
	}
	.header-menu {
	    display: none;
	    position: absolute;
        top: 80px;
        background: #000;
        width: 100%;
        left: 0;
        padding: 20px 0;
        height: 100vh;
        transition: 0.5s all;
	}
	.mobile-menu-iccon {
	    display: block;
	}
	.min-menu ul {
	    flex-direction: column;
	 }
	 .tabs {
	    flex-direction: column;
	}

	ul.tabs-nav {
	    width: 100%;
	}

	.tabs-stage {
	    width: 100%;
	}
}